mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-17 03:37:48 -06:00
Merge pull request #6338 from Ultimaker/feature_intent_upgrade
Feature intent upgrade
This commit is contained in:
commit
a3263da3f4
1137 changed files with 1321 additions and 1148 deletions
|
@ -148,7 +148,7 @@ class CuraApplication(QtApplication):
|
||||||
# SettingVersion represents the set of settings available in the machine/extruder definitions.
|
# SettingVersion represents the set of settings available in the machine/extruder definitions.
|
||||||
# You need to make sure that this version number needs to be increased if there is any non-backwards-compatible
|
# You need to make sure that this version number needs to be increased if there is any non-backwards-compatible
|
||||||
# changes of the settings.
|
# changes of the settings.
|
||||||
SettingVersion = 9
|
SettingVersion = 10
|
||||||
|
|
||||||
Created = False
|
Created = False
|
||||||
|
|
||||||
|
|
|
@ -1322,9 +1322,10 @@ class MachineManager(QObject):
|
||||||
self._setMaterial(position_item, new_material)
|
self._setMaterial(position_item, new_material)
|
||||||
else:
|
else:
|
||||||
# The current material is not available, find the preferred one.
|
# The current material is not available, find the preferred one.
|
||||||
approximate_material_diameter = int(self._global_container_stack.extruderList[int(position)].getApproximateMaterialDiameter())
|
if position is not None:
|
||||||
material_node = nozzle_node.preferredMaterial(approximate_material_diameter)
|
approximate_material_diameter = int(self._global_container_stack.extruderList[int(position)].getApproximateMaterialDiameter())
|
||||||
self._setMaterial(position_item, material_node)
|
material_node = nozzle_node.preferredMaterial(approximate_material_diameter)
|
||||||
|
self._setMaterial(position_item, material_node)
|
||||||
|
|
||||||
## Given a printer definition name, select the right machine instance. In case it doesn't exist, create a new
|
## Given a printer definition name, select the right machine instance. In case it doesn't exist, create a new
|
||||||
# instance with the same network key.
|
# instance with the same network key.
|
||||||
|
|
|
@ -60,6 +60,8 @@ class MachineSettingsAction(MachineAction):
|
||||||
# flavour setting is changed.
|
# flavour setting is changed.
|
||||||
def _updateHasMaterialsInContainerTree(self) -> None:
|
def _updateHasMaterialsInContainerTree(self) -> None:
|
||||||
global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
|
global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
|
||||||
|
if global_stack is None:
|
||||||
|
return
|
||||||
machine_node = ContainerTree.getInstance().machines[global_stack.definition.getId()]
|
machine_node = ContainerTree.getInstance().machines[global_stack.definition.getId()]
|
||||||
|
|
||||||
if machine_node.has_materials != parseBool(global_stack.getMetaDataEntry("has_materials")): # May have changed due to the g-code flavour.
|
if machine_node.has_materials != parseBool(global_stack.getMetaDataEntry("has_materials")): # May have changed due to the g-code flavour.
|
||||||
|
|
|
@ -308,18 +308,6 @@ class VersionUpgrade41to42(VersionUpgrade):
|
||||||
|
|
||||||
# Update version number.
|
# Update version number.
|
||||||
parser["metadata"]["setting_version"] = "8"
|
parser["metadata"]["setting_version"] = "8"
|
||||||
parser["general"]["version"] = "5"
|
|
||||||
|
|
||||||
# We should only have 6 levels when we start.
|
|
||||||
assert "7" not in parser["containers"]
|
|
||||||
|
|
||||||
# We added the intent container in Cura 4.2. This means that all other containers move one step down.
|
|
||||||
parser["containers"]["7"] = parser["containers"]["6"]
|
|
||||||
parser["containers"]["6"] = parser["containers"]["5"]
|
|
||||||
parser["containers"]["5"] = parser["containers"]["4"]
|
|
||||||
parser["containers"]["4"] = parser["containers"]["3"]
|
|
||||||
parser["containers"]["3"] = parser["containers"]["2"]
|
|
||||||
parser["containers"]["2"] = "empty_intent"
|
|
||||||
|
|
||||||
# Change renamed profiles.
|
# Change renamed profiles.
|
||||||
if "containers" in parser:
|
if "containers" in parser:
|
||||||
|
|
|
@ -15,8 +15,8 @@ def getMetaData() -> Dict[str, Any]:
|
||||||
"version_upgrade": {
|
"version_upgrade": {
|
||||||
# From To Upgrade function
|
# From To Upgrade function
|
||||||
("preferences", 6000007): ("preferences", 6000008, upgrade.upgradePreferences),
|
("preferences", 6000007): ("preferences", 6000008, upgrade.upgradePreferences),
|
||||||
("machine_stack", 4000007): ("machine_stack", 5000008, upgrade.upgradeStack),
|
("machine_stack", 4000007): ("machine_stack", 4000008, upgrade.upgradeStack),
|
||||||
("extruder_train", 4000007): ("extruder_train", 5000008, upgrade.upgradeStack),
|
("extruder_train", 4000007): ("extruder_train", 4000008, upgrade.upgradeStack),
|
||||||
("definition_changes", 4000007): ("definition_changes", 4000008, upgrade.upgradeInstanceContainer),
|
("definition_changes", 4000007): ("definition_changes", 4000008, upgrade.upgradeInstanceContainer),
|
||||||
("quality_changes", 4000007): ("quality_changes", 4000008, upgrade.upgradeInstanceContainer),
|
("quality_changes", 4000007): ("quality_changes", 4000008, upgrade.upgradeInstanceContainer),
|
||||||
("quality", 4000007): ("quality", 4000008, upgrade.upgradeInstanceContainer),
|
("quality", 4000007): ("quality", 4000008, upgrade.upgradeInstanceContainer),
|
||||||
|
|
|
@ -0,0 +1,95 @@
|
||||||
|
import configparser
|
||||||
|
from typing import Tuple, List
|
||||||
|
import io
|
||||||
|
from UM.VersionUpgrade import VersionUpgrade
|
||||||
|
|
||||||
|
_renamed_container_id_map = {
|
||||||
|
"ultimaker2_0.25": "ultimaker2_olsson_0.25",
|
||||||
|
"ultimaker2_0.4": "ultimaker2_olsson_0.4",
|
||||||
|
"ultimaker2_0.6": "ultimaker2_olsson_0.6",
|
||||||
|
"ultimaker2_0.8": "ultimaker2_olsson_0.8",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class VersionUpgrade43to44(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
|
||||||
|
|
||||||
|
## Upgrades Preferences to have the new version number.
|
||||||
|
#
|
||||||
|
# This renames the renamed settings in the list of visible settings.
|
||||||
|
def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
||||||
|
parser = configparser.ConfigParser(interpolation = None)
|
||||||
|
parser.read_string(serialized)
|
||||||
|
|
||||||
|
# Update version number.
|
||||||
|
parser["metadata"]["setting_version"] = "10"
|
||||||
|
|
||||||
|
result = io.StringIO()
|
||||||
|
parser.write(result)
|
||||||
|
return [filename], [result.getvalue()]
|
||||||
|
|
||||||
|
## Upgrades instance containers to have the new version
|
||||||
|
# number.
|
||||||
|
#
|
||||||
|
# This renames the renamed settings in the containers.
|
||||||
|
def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
||||||
|
parser = configparser.ConfigParser(interpolation=None)
|
||||||
|
parser.read_string(serialized)
|
||||||
|
|
||||||
|
# Update version number.
|
||||||
|
parser["metadata"]["setting_version"] = "10"
|
||||||
|
|
||||||
|
# Intent profiles were added, so the quality changes should match with no intent (so "default")
|
||||||
|
if parser["metadata"].get("type", "") == "quality_changes":
|
||||||
|
parser["metadata"]["intent_category"] = "default"
|
||||||
|
|
||||||
|
result = io.StringIO()
|
||||||
|
parser.write(result)
|
||||||
|
return [filename], [result.getvalue()]
|
||||||
|
|
||||||
|
## Upgrades stacks to have the new version number.
|
||||||
|
def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
||||||
|
parser = configparser.ConfigParser(interpolation=None)
|
||||||
|
parser.read_string(serialized)
|
||||||
|
|
||||||
|
# Update version number.
|
||||||
|
if "metadata" in parser:
|
||||||
|
parser["metadata"]["setting_version"] = "10"
|
||||||
|
|
||||||
|
if "containers" in parser:
|
||||||
|
# With the ContainerTree refactor, UM2 with Olsson block got moved to a separate definition.
|
||||||
|
if "6" in parser["containers"]:
|
||||||
|
if parser["containers"]["6"] == "ultimaker2":
|
||||||
|
if "metadata" in parser and "has_variants" in parser["metadata"] and parser["metadata"]["has_variants"] == "True": # This is an Olsson block upgraded UM2!
|
||||||
|
parser["containers"]["6"] = "ultimaker2_olsson"
|
||||||
|
del parser["metadata"]["has_variants"]
|
||||||
|
elif parser["containers"]["6"] == "ultimaker2_extended":
|
||||||
|
if "metadata" in parser and "has_variants" in parser["metadata"] and parser["metadata"]["has_variants"] == "True": # This is an Olsson block upgraded UM2E!
|
||||||
|
parser["containers"]["6"] = "ultimaker2_extended_olsson"
|
||||||
|
del parser["metadata"]["has_variants"]
|
||||||
|
|
||||||
|
# We should only have 6 levels when we start.
|
||||||
|
if "7" in parser["containers"]:
|
||||||
|
return ([], [])
|
||||||
|
|
||||||
|
# We added the intent container in Cura 4.4. This means that all other containers move one step down.
|
||||||
|
parser["containers"]["7"] = parser["containers"]["6"]
|
||||||
|
parser["containers"]["6"] = parser["containers"]["5"]
|
||||||
|
parser["containers"]["5"] = parser["containers"]["4"]
|
||||||
|
parser["containers"]["4"] = parser["containers"]["3"]
|
||||||
|
parser["containers"]["3"] = parser["containers"]["2"]
|
||||||
|
parser["containers"]["2"] = "empty_intent"
|
||||||
|
|
||||||
|
# Update renamed containers
|
||||||
|
for key, value in parser["containers"].items():
|
||||||
|
if value in _renamed_container_id_map:
|
||||||
|
parser["containers"][key] = _renamed_container_id_map[value]
|
||||||
|
|
||||||
|
result = io.StringIO()
|
||||||
|
parser.write(result)
|
||||||
|
return [filename], [result.getvalue()]
|
62
plugins/VersionUpgrade/VersionUpgrade43to44/__init__.py
Normal file
62
plugins/VersionUpgrade/VersionUpgrade43to44/__init__.py
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
# Copyright (c) 2019 Ultimaker B.V.
|
||||||
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
|
||||||
|
from typing import Any, Dict, TYPE_CHECKING
|
||||||
|
|
||||||
|
from . import VersionUpgrade43to44
|
||||||
|
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from UM.Application import Application
|
||||||
|
|
||||||
|
upgrade = VersionUpgrade43to44.VersionUpgrade43to44()
|
||||||
|
|
||||||
|
|
||||||
|
def getMetaData() -> Dict[str, Any]:
|
||||||
|
return {
|
||||||
|
"version_upgrade": {
|
||||||
|
# From To Upgrade function
|
||||||
|
("preferences", 6000009): ("preferences", 6000010, upgrade.upgradePreferences),
|
||||||
|
("machine_stack", 4000009): ("machine_stack", 4000010, upgrade.upgradeStack),
|
||||||
|
("extruder_train", 4000009): ("extruder_train", 4000010, upgrade.upgradeStack),
|
||||||
|
("definition_changes", 4000009): ("definition_changes", 4000010, upgrade.upgradeInstanceContainer),
|
||||||
|
("quality_changes", 4000009): ("quality_changes", 4000010, upgrade.upgradeInstanceContainer),
|
||||||
|
("quality", 4000009): ("quality", 4000010, upgrade.upgradeInstanceContainer),
|
||||||
|
("user", 4000009): ("user", 4000010, upgrade.upgradeInstanceContainer),
|
||||||
|
},
|
||||||
|
"sources": {
|
||||||
|
"preferences": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"."}
|
||||||
|
},
|
||||||
|
"machine_stack": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"./machine_instances"}
|
||||||
|
},
|
||||||
|
"extruder_train": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"./extruders"}
|
||||||
|
},
|
||||||
|
"definition_changes": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"./definition_changes"}
|
||||||
|
},
|
||||||
|
"quality_changes": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"./quality_changes"}
|
||||||
|
},
|
||||||
|
"quality": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"./quality"}
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"get_version": upgrade.getCfgVersion,
|
||||||
|
"location": {"./user"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def register(app: "Application") -> Dict[str, Any]:
|
||||||
|
return {"version_upgrade": upgrade}
|
||||||
|
|
8
plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
Normal file
8
plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"name": "Version Upgrade 4.3 to 4.4",
|
||||||
|
"author": "Ultimaker B.V.",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
|
||||||
|
"api": "6.0",
|
||||||
|
"i18n-catalog": "cura"
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
import configparser
|
import configparser
|
||||||
|
|
||||||
import VersionUpgrade41to42
|
import VersionUpgrade43to44
|
||||||
|
|
||||||
before_update = """[general]
|
before_update = """[general]
|
||||||
version = 4
|
version = 4
|
||||||
|
@ -22,7 +22,7 @@ type = machine
|
||||||
|
|
||||||
|
|
||||||
def test_upgrade():
|
def test_upgrade():
|
||||||
upgrader = VersionUpgrade41to42.VersionUpgrade41to42()
|
upgrader = VersionUpgrade43to44.VersionUpgrade43to44()
|
||||||
file_name, new_data = upgrader.upgradeStack(before_update, "whatever")
|
file_name, new_data = upgrader.upgradeStack(before_update, "whatever")
|
||||||
parser = configparser.ConfigParser(interpolation=None)
|
parser = configparser.ConfigParser(interpolation=None)
|
||||||
parser.read_string(new_data[0])
|
parser.read_string(new_data[0])
|
|
@ -798,6 +798,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"VersionUpgrade43to44": {
|
||||||
|
"package_info": {
|
||||||
|
"package_id": "VersionUpgrade43to44",
|
||||||
|
"package_type": "plugin",
|
||||||
|
"display_name": "Version Upgrade 4.3 to 4.4",
|
||||||
|
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
|
||||||
|
"package_version": "1.0.0",
|
||||||
|
"sdk_version": "6.0.0",
|
||||||
|
"website": "https://ultimaker.com",
|
||||||
|
"author": {
|
||||||
|
"author_id": "UltimakerPackages",
|
||||||
|
"display_name": "Ultimaker B.V.",
|
||||||
|
"email": "plugins@ultimaker.com",
|
||||||
|
"website": "https://ultimaker.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"X3DReader": {
|
"X3DReader": {
|
||||||
"package_info": {
|
"package_info": {
|
||||||
"package_id": "X3DReader",
|
"package_id": "X3DReader",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"type": "extruder",
|
"type": "extruder",
|
||||||
"author": "Ultimaker",
|
"author": "Ultimaker",
|
||||||
"manufacturer": "Unknown",
|
"manufacturer": "Unknown",
|
||||||
"setting_version": 9,
|
"setting_version": 10,
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"position": "0"
|
"position": "0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"author": "Ultimaker",
|
"author": "Ultimaker",
|
||||||
"category": "Other",
|
"category": "Other",
|
||||||
"manufacturer": "Unknown",
|
"manufacturer": "Unknown",
|
||||||
"setting_version": 9,
|
"setting_version": 10,
|
||||||
"file_formats": "text/x-gcode;application/x-stl-ascii;application/x-stl-binary;application/x-wavefront-obj;application/x3g",
|
"file_formats": "text/x-gcode;application/x-stl-ascii;application/x-stl-binary;application/x-wavefront-obj;application/x3g",
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"has_materials": true,
|
"has_materials": true,
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Smooth (TEST INTENT)
|
||||||
definition = ultimaker3
|
definition = ultimaker3
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = intent
|
type = intent
|
||||||
intent_category = smooth
|
intent_category = smooth
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Strong (TEST INTENT)
|
||||||
definition = ultimaker3
|
definition = ultimaker3
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = intent
|
type = intent
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_pri3
|
definition = abax_pri3
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Fine
|
||||||
definition = abax_pri3
|
definition = abax_pri3
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_pri3
|
definition = abax_pri3
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_pri5
|
definition = abax_pri5
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Fine
|
||||||
definition = abax_pri5
|
definition = abax_pri5
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_pri5
|
definition = abax_pri5
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_titan
|
definition = abax_titan
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Fine
|
||||||
definition = abax_titan
|
definition = abax_titan
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_titan
|
definition = abax_titan
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_4max
|
definition = anycubic_4max
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_chiron
|
definition = anycubic_chiron
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_chiron
|
definition = anycubic_chiron
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_chiron
|
definition = anycubic_chiron
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = anycubic_i3_mega
|
definition = anycubic_i3_mega
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = anycubic_i3_mega
|
definition = anycubic_i3_mega
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = anycubic_i3_mega
|
definition = anycubic_i3_mega
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -1
|
weight = -1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High Quality
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -1
|
weight = -1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High Quality
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -1
|
weight = -1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High Quality
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -1
|
weight = -1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High Quality
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -1
|
weight = -1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High Quality
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -1
|
weight = -1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High Quality
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = builder_premium_small
|
definition = builder_premium_small
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = 3
|
weight = 3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = extra coarse
|
quality_type = extra coarse
|
||||||
weight = 4
|
weight = 4
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -3
|
weight = -3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = extra coarse
|
quality_type = extra coarse
|
||||||
weight = -4
|
weight = -4
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = 3
|
weight = 3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = extra coarse
|
quality_type = extra coarse
|
||||||
weight = 4
|
weight = 4
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = 3
|
weight = 3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = extra coarse
|
quality_type = extra coarse
|
||||||
weight = 4
|
weight = 4
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = 3
|
weight = 3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Extra Coarse
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = extra coarse
|
quality_type = extra coarse
|
||||||
weight = 4
|
weight = 4
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = cartesio
|
definition = cartesio
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 9
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue