From 795ebc0ac1a233d30fa8a02f659071462a007f6d Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 14 Aug 2024 17:16:19 +0500 Subject: [PATCH] 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. --- src/bonsai/bonsai/bim/ui.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/bonsai/bonsai/bim/ui.py b/src/bonsai/bonsai/bim/ui.py index f702849adb..d5f92773a1 100644 --- a/src/bonsai/bonsai/bim/ui.py +++ b/src/bonsai/bonsai/bim/ui.py @@ -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"