diff --git a/hbph_installer.gh b/hbph_installer.gh index d08507e..11a3ebc 100644 Binary files a/hbph_installer.gh and b/hbph_installer.gh differ diff --git a/honeybee_grasshopper_ph/src/HBPH Installer.py b/honeybee_grasshopper_ph/src/HBPH Installer.py index 1074913..5ad4e93 100644 --- a/honeybee_grasshopper_ph/src/HBPH Installer.py +++ b/honeybee_grasshopper_ph/src/HBPH Installer.py @@ -29,7 +29,7 @@ python interpreter, and will download and install new Grasshopper components which will be added to your Rhino / Grasshopper installation. - -EM January 10, 2024 +EM January 12, 2024 Args: _install: (bool) Set to True to install Honeybee-PH on your computer. @@ -67,11 +67,14 @@ COMPONENT = ghenv.Component # type: ignore COMPONENT.Name = 'HBPH Installer' COMPONENT.NickName = 'HBPHInstall' -COMPONENT.Message = 'JAN_10_2024' +COMPONENT.Message = 'JAN_12_2024' COMPONENT.Category = 'Honeybee-PH' COMPONENT.SubCategory = '00 | Utils' COMPONENT.AdditionalHelpFromDocStrings = '0' -COMPONENT.ToggleObsolete(False) +try: + COMPONENT.ToggleObsolete(False) +except AttributeError: + pass # Rhino 7 # -- Required Versions MIN_VER_RHINO = (7, 18) diff --git a/honeybee_grasshopper_ph/user_objects/HBPH Installer.ghuser b/honeybee_grasshopper_ph/user_objects/HBPH Installer.ghuser index 8a7aa87..225eafe 100644 Binary files a/honeybee_grasshopper_ph/user_objects/HBPH Installer.ghuser and b/honeybee_grasshopper_ph/user_objects/HBPH Installer.ghuser differ