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.
1 parent 06973c1 commit a18b826Copy full SHA for a18b826
scc/gui/app.py
@@ -1516,11 +1516,13 @@ def load_profile_selection(self):
1516
def get_release(n:int = 4) -> str:
1517
"""
1518
Returns current version rounded to max. 'n' numbers.
1519
- ( v0.14.1.3 ; n=3 -> v0.14.1 )
+ ( v0.14.1.3 ; n=3 -> v0.14.1 )
1520
+ ( v0.14.0.0 ; n=3 -> v0.14.0.0 )
1521
1522
split = DAEMON_VERSION.split(".")[0:n]
- while split[-1] == "0":
1523
- split = split[0:len(split) - 1]
+ # Remove final zeroes ( v0.14.0.0 ; n=3 -> v0.14 ) - disabled, let's include them
1524
+ #while split[-1] == "0":
1525
+ # split = split[0:len(split) - 1]
1526
return ".".join(split)
1527
1528
0 commit comments