From 2271b0a621f56015a0e62c7370017ae2bc0c564c Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Wed, 17 Jul 2024 21:20:40 +0800 Subject: [PATCH] fix: remove bl_info. - remove bl_info in __init__.py because blender_manifest.toml has replace it. --- bbp_ng/__init__.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/bbp_ng/__init__.py b/bbp_ng/__init__.py index 6ff7300..cb70286 100644 --- a/bbp_ng/__init__.py +++ b/bbp_ng/__init__.py @@ -1,18 +1,3 @@ -bl_info = { - "name": "Ballance Blender Plugin", - "description": "Ballance mapping tools for Blender", - "author": "yyc12345", - "version": (4, 0), - "blender": (3, 6, 0), - "category": "Object", - "support": "COMMUNITY", - "warning": "Please read document before using this plugin.", - "doc_url": "https://github.com/yyc12345/BallanceBlenderHelper", - "tracker_url": "https://github.com/yyc12345/BallanceBlenderHelper/issues" -} -# TODO: this bl_info may be outdated since Blender 4.2 LTS. -# Delete it when adapting to Blender 4.2 and use blender_manifest.toml instead. - #region Reload and Import # import core lib