mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Move the getCfgVersion to base version upgrade
They can still be overridden, but in the current situation they were all the same...
This commit is contained in:
parent
ad6f837f44
commit
de7e3f824d
15 changed files with 7 additions and 209 deletions
|
@ -10,14 +10,8 @@ _removed_settings = {
|
|||
"machine_filament_park_distance",
|
||||
}
|
||||
|
||||
class VersionUpgrade45to46(VersionUpgrade):
|
||||
def getCfgVersion(self, serialised: str) -> int:
|
||||
parser = configparser.ConfigParser(interpolation = None)
|
||||
parser.read_string(serialised)
|
||||
format_version = int(parser.get("general", "version")) # Explicitly give an exception when this fails. That means that the file format is not recognised.
|
||||
setting_version = int(parser.get("metadata", "setting_version", fallback = "0"))
|
||||
return format_version * 1000000 + setting_version
|
||||
|
||||
class VersionUpgrade45to46(VersionUpgrade):
|
||||
def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
||||
"""
|
||||
Upgrades preferences to have the new version number.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue