From ed66572d66950f3985adc45d6d1c29dc67afb764 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Thu, 3 Aug 2023 23:25:04 +1000 Subject: [PATCH] Fix #3538. Update bl_info metadata to reflect that we are a native IFC authoring platform not an import-export add-on. --- src/blenderbim/blenderbim/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/blenderbim/blenderbim/__init__.py b/src/blenderbim/blenderbim/__init__.py index 44ef0f8a24..2f6e5481ba 100644 --- a/src/blenderbim/blenderbim/__init__.py +++ b/src/blenderbim/blenderbim/__init__.py @@ -22,13 +22,14 @@ import site bl_info = { "name": "BlenderBIM", - "description": "Author, import, and export data using the Industry Foundation Classes schema", + "description": "Transforms Blender into a native Building Information Model authoring platform using IFC.", "author": "IfcOpenShell Contributors", - "blender": (2, 80, 0), + "blender": (3, 1, 0), "version": (0, 0, 999999), - "location": "File > Export, File > Import, Scene / Object / Material / Mesh Properties", + "location": "File Menu, Scene Properties Tab. See documentation for more.", + "doc_url": "https://blenderbim.org/docs", "tracker_url": "https://github.com/IfcOpenShell/IfcOpenShell/issues", - "category": "Import-Export", + "category": "System", } if sys.modules.get("bpy", None):