Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions meshroom/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,9 @@ def toComponents(versionName):
return (), ''

status = ''
# If there is a status, it is placed after a "-"
splitComponents = versionName.split("-", maxsplit=1)
# If there is a status, it is placed after a "-" (up to Meshroom 2025.1.0) or a "+"
versionName = versionName.replace("-", "+") # Keep compatibility for scenes created with 2025.1.0 or older
splitComponents = versionName.split("+", maxsplit=1)
# If there is no status, splitComponents is equal to [versionName]
if len(splitComponents) > 1:
status = splitComponents[-1]
Expand Down
Loading