We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ecff89a + 35f209c commit 7f0c5e2Copy full SHA for 7f0c5e2
meshroom/core/__init__.py
@@ -262,8 +262,9 @@ def toComponents(versionName):
262
return (), ''
263
264
status = ''
265
- # If there is a status, it is placed after a "-"
266
- 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
267
+ splitComponents = versionName.split("+", maxsplit=1)
268
# If there is no status, splitComponents is equal to [versionName]
269
if len(splitComponents) > 1:
270
status = splitComponents[-1]
0 commit comments