remove uninstall/update instructions from preferences

Since 06c8a9e there's no longer issue with loaded binaries preventing to reload the addon on Windows, which works for 4.2.0 and in 4.2.1 we'll have https://projects.blender.org/blender/blender/issues/125049 which essentially does the same, moves the binaries out of the way.

Upgrade also works fine and we have a warning from 3d4c85c to indicate that user should restart Blender after upgrade.
This commit is contained in:
Andrej730
2024-08-14 17:16:19 +05:00
parent 7612cf92c0
commit 795ebc0ac1
-12
View File
@@ -263,18 +263,6 @@ class BIM_ADDON_preferences(bpy.types.AddonPreferences):
def draw(self, context):
layout = self.layout
box = layout.box()
row = box.row()
row.label(
text="To uninstall: 1) Disable the add-on 2) Restart Blender 3) Press the 'Remove' button.",
icon="ERROR",
)
row = box.row()
row.label(
text="To upgrade, first uninstall your current Bonsai, then install the new version.",
icon="ERROR",
)
row = layout.row()
row.operator("bim.open_upstream", text="Visit Homepage").page = "home"
row.operator("bim.open_upstream", text="Visit Documentation").page = "docs"