From c2b16ef434cfb5b74a92628b4d230743d8328311 Mon Sep 17 00:00:00 2001 From: REDxEYE Date: Sat, 16 Nov 2024 21:45:20 +0300 Subject: [PATCH] Version bump --- __init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index 50417be8..9d37aec6 100644 --- a/__init__.py +++ b/__init__.py @@ -4,8 +4,8 @@ bl_info = { "name": "SourceIO", "author": "RED_EYE, ShadelessFox, Syborg64", - "version": (5, 4, 5), - "blender": (3, 6, 0), + "version": (5, 4, 6), + "blender": (4, 0, 0), "location": "File > Import > SourceEngine assets", "description": "GoldSrc/Source1/Source2 Engine assets(.mdl, .bsp, .vmt, .vtf, .vmdl_c, .vwrld_c, .vtex_c)" "Notice that you cannot delete this addon via blender UI, remove it manually from addons folder", @@ -20,8 +20,8 @@ if running_in_blender() and loaded_as_addon(): import bpy - if bpy.app.version >= (4, 0, 0) and bl_info["version"] <= (5, 3, 0): - print("SourceIO only support blender 4.X.X in latest development version") + if bpy.app.version >= (4, 0, 0): + print("SourceIO only support blender 4.X.X") from SourceIO.blender_bindings.bindings import register, unregister