Skip to content

Commit

Permalink
chore: drop alpha/beta support
Browse files Browse the repository at this point in the history
  • Loading branch information
saturday06 committed Jul 14, 2024
1 parent 05dc7ee commit 5be7ece
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/io_scene_vrm/common/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,13 @@ def legacy_addon() -> bool:


def stable_release() -> bool:
# for Blender Extensions Platform
if not legacy_addon() and bpy.app.version == (4, 2, 0):
if ( # for Blender Extensions Platform
not legacy_addon()
and bpy.app.version == (4, 2, 0)
and bpy.app.version_cycle == "rc"
):
return True

if bpy.app.version_cycle == "release":
return True

Expand Down

0 comments on commit 5be7ece

Please sign in to comment.