Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
REDxEYE committed Nov 16, 2024
1 parent 1e7b7fb commit c2b16ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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

Expand Down

0 comments on commit c2b16ef

Please sign in to comment.