mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 04:37:51 -06:00
Merge branch 'rename_minimum_diameter' into CURA-6460_remove_square_tower
Conflicts: plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py -> Both had a version upgrade implementation. plugins/VersionUpgrade/VersionUpgrade41to42/__init__.py -> Both had a version upgrade implementation.
This commit is contained in:
commit
cf9f97e897
794 changed files with 848 additions and 814 deletions
|
@ -144,7 +144,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 = 7
|
SettingVersion = 8
|
||||||
|
|
||||||
Created = False
|
Created = False
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ class Snapshot:
|
||||||
looking_from_offset = Vector(-1, 1, 2)
|
looking_from_offset = Vector(-1, 1, 2)
|
||||||
if size > 0:
|
if size > 0:
|
||||||
# determine the watch distance depending on the size
|
# determine the watch distance depending on the size
|
||||||
looking_from_offset = looking_from_offset * size * 1.3
|
looking_from_offset = looking_from_offset * size * 1.75
|
||||||
camera.setPosition(look_at + looking_from_offset)
|
camera.setPosition(look_at + looking_from_offset)
|
||||||
camera.lookAt(look_at)
|
camera.lookAt(look_at)
|
||||||
|
|
||||||
|
|
|
@ -20,14 +20,14 @@ Item
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
|
|
||||||
property int labelWidth: 120 * screenScaleFactor
|
|
||||||
property int controlWidth: (UM.Theme.getSize("setting_control").width * 3 / 4) | 0
|
|
||||||
property var labelFont: UM.Theme.getFont("default")
|
|
||||||
|
|
||||||
property int columnWidth: ((parent.width - 2 * UM.Theme.getSize("default_margin").width) / 2) | 0
|
property int columnWidth: ((parent.width - 2 * UM.Theme.getSize("default_margin").width) / 2) | 0
|
||||||
property int columnSpacing: 3 * screenScaleFactor
|
property int columnSpacing: 3 * screenScaleFactor
|
||||||
property int propertyStoreIndex: manager ? manager.storeContainerIndex : 1 // definition_changes
|
property int propertyStoreIndex: manager ? manager.storeContainerIndex : 1 // definition_changes
|
||||||
|
|
||||||
|
property int labelWidth: (columnWidth * 2 / 3 - UM.Theme.getSize("default_margin").width * 2) | 0
|
||||||
|
property int controlWidth: (columnWidth / 3) | 0
|
||||||
|
property var labelFont: UM.Theme.getFont("default")
|
||||||
|
|
||||||
property string machineStackId: Cura.MachineManager.activeMachineId
|
property string machineStackId: Cura.MachineManager.activeMachineId
|
||||||
|
|
||||||
property var forceUpdateFunction: manager.forceUpdate
|
property var forceUpdateFunction: manager.forceUpdate
|
||||||
|
@ -59,6 +59,8 @@ Item
|
||||||
font: UM.Theme.getFont("medium_bold")
|
font: UM.Theme.getFont("medium_bold")
|
||||||
color: UM.Theme.getColor("text")
|
color: UM.Theme.getColor("text")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
|
width: parent.width
|
||||||
|
elide: Text.ElideRight
|
||||||
}
|
}
|
||||||
|
|
||||||
Cura.NumericTextFieldWithUnit // "X (Width)"
|
Cura.NumericTextFieldWithUnit // "X (Width)"
|
||||||
|
@ -175,6 +177,8 @@ Item
|
||||||
font: UM.Theme.getFont("medium_bold")
|
font: UM.Theme.getFont("medium_bold")
|
||||||
color: UM.Theme.getColor("text")
|
color: UM.Theme.getColor("text")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
|
width: parent.width
|
||||||
|
elide: Text.ElideRight
|
||||||
}
|
}
|
||||||
|
|
||||||
Cura.PrintHeadMinMaxTextField // "X min"
|
Cura.PrintHeadMinMaxTextField // "X min"
|
||||||
|
|
|
@ -89,6 +89,7 @@ Item
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: catalog.i18nc("@label", "Your rating") + ":"
|
text: catalog.i18nc("@label", "Your rating") + ":"
|
||||||
|
visible: details.type == "plugin"
|
||||||
font: UM.Theme.getFont("default")
|
font: UM.Theme.getFont("default")
|
||||||
color: UM.Theme.getColor("text_medium")
|
color: UM.Theme.getColor("text_medium")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
|
|
|
@ -3,19 +3,21 @@
|
||||||
|
|
||||||
import configparser
|
import configparser
|
||||||
import io
|
import io
|
||||||
from typing import List, Tuple
|
from typing import Dict, List, Tuple
|
||||||
|
|
||||||
from UM.VersionUpgrade import VersionUpgrade
|
from UM.VersionUpgrade import VersionUpgrade
|
||||||
|
|
||||||
_REMOVED_SETTING_KEYS = ["prime_tower_circular"] # type: List[str]
|
_renamed_settings = {
|
||||||
|
"support_minimal_diameter": "support_tower_maximum_supported_diameter"
|
||||||
|
} #type: Dict[str, str]
|
||||||
|
_removed_settings = ["prime_tower_circular"] # type: List[str]
|
||||||
|
|
||||||
|
## Upgrades configurations from the state they were in at version 4.1 to the
|
||||||
## Upgrades configurations from the state they were in at version 4.0 to the
|
|
||||||
# state they should be in at version 4.2.
|
# state they should be in at version 4.2.
|
||||||
class VersionUpgrade41to42(VersionUpgrade):
|
class VersionUpgrade41to42(VersionUpgrade):
|
||||||
## Gets the version number from a CFG file in Uranium's 4.0 format.
|
## Gets the version number from a CFG file in Uranium's 4.1 format.
|
||||||
#
|
#
|
||||||
# Since the format may change, this is implemented for the 4.0 format only
|
# Since the format may change, this is implemented for the 4.1 format only
|
||||||
# and needs to be included in the version upgrade system rather than
|
# and needs to be included in the version upgrade system rather than
|
||||||
# globally in Uranium.
|
# globally in Uranium.
|
||||||
#
|
#
|
||||||
|
@ -33,16 +35,23 @@ class VersionUpgrade41to42(VersionUpgrade):
|
||||||
|
|
||||||
## Upgrades instance containers to have the new version
|
## Upgrades instance containers to have the new version
|
||||||
# number.
|
# number.
|
||||||
|
#
|
||||||
|
# This renames the renamed settings in the containers.
|
||||||
def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
||||||
parser = configparser.ConfigParser(interpolation = None)
|
parser = configparser.ConfigParser(interpolation = None)
|
||||||
parser.read_string(serialized)
|
parser.read_string(serialized)
|
||||||
|
|
||||||
#Update version number.
|
#Update version number.
|
||||||
parser["general"]["version"] = "4"
|
|
||||||
parser["metadata"]["setting_version"] = "8"
|
parser["metadata"]["setting_version"] = "8"
|
||||||
|
|
||||||
|
#Rename settings.
|
||||||
if "values" in parser:
|
if "values" in parser:
|
||||||
for key in _REMOVED_SETTING_KEYS:
|
for old_name, new_name in _renamed_settings.items():
|
||||||
|
if old_name in parser["values"]:
|
||||||
|
parser[new_name] = parser[old_name]
|
||||||
|
del parser[old_name]
|
||||||
|
#Remove settings.
|
||||||
|
for key in _removed_settings:
|
||||||
if key in parser["values"]:
|
if key in parser["values"]:
|
||||||
del parser["values"][key]
|
del parser["values"][key]
|
||||||
|
|
||||||
|
@ -51,16 +60,24 @@ class VersionUpgrade41to42(VersionUpgrade):
|
||||||
return [filename], [result.getvalue()]
|
return [filename], [result.getvalue()]
|
||||||
|
|
||||||
## Upgrades Preferences to have the new version number.
|
## 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]]:
|
def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
|
||||||
parser = configparser.ConfigParser(interpolation = None)
|
parser = configparser.ConfigParser(interpolation = None)
|
||||||
parser.read_string(serialized)
|
parser.read_string(serialized)
|
||||||
|
|
||||||
#Update version number.
|
#Update version number.
|
||||||
parser["general"]["version"] = "6"
|
|
||||||
if "metadata" not in parser:
|
|
||||||
parser["metadata"] = {}
|
|
||||||
parser["metadata"]["setting_version"] = "8"
|
parser["metadata"]["setting_version"] = "8"
|
||||||
|
|
||||||
|
#Renamed settings.
|
||||||
|
if "visible_settings" in parser["general"]:
|
||||||
|
visible_settings = parser["general"]["visible_settings"]
|
||||||
|
visible_settings = set(visible_settings.split(";"))
|
||||||
|
for old_name, new_name in _renamed_settings.items():
|
||||||
|
if old_name in visible_settings:
|
||||||
|
visible_settings.remove(old_name)
|
||||||
|
visible_settings.add(new_name)
|
||||||
|
|
||||||
result = io.StringIO()
|
result = io.StringIO()
|
||||||
parser.write(result)
|
parser.write(result)
|
||||||
return [filename], [result.getvalue()]
|
return [filename], [result.getvalue()]
|
||||||
|
@ -71,7 +88,6 @@ class VersionUpgrade41to42(VersionUpgrade):
|
||||||
parser.read_string(serialized)
|
parser.read_string(serialized)
|
||||||
|
|
||||||
#Update version number.
|
#Update version number.
|
||||||
parser["general"]["version"] = "4"
|
|
||||||
parser["metadata"]["setting_version"] = "8"
|
parser["metadata"]["setting_version"] = "8"
|
||||||
|
|
||||||
result = io.StringIO()
|
result = io.StringIO()
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"type": "extruder",
|
"type": "extruder",
|
||||||
"author": "Ultimaker",
|
"author": "Ultimaker",
|
||||||
"manufacturer": "Unknown",
|
"manufacturer": "Unknown",
|
||||||
"setting_version": 7,
|
"setting_version": 8,
|
||||||
"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": 7,
|
"setting_version": 8,
|
||||||
"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,
|
||||||
|
@ -2784,6 +2784,19 @@
|
||||||
"settable_per_extruder": true,
|
"settable_per_extruder": true,
|
||||||
"limit_to_extruder": "adhesion_extruder_nr"
|
"limit_to_extruder": "adhesion_extruder_nr"
|
||||||
},
|
},
|
||||||
|
"speed_z_hop":
|
||||||
|
{
|
||||||
|
"label": "Z Hop Speed",
|
||||||
|
"description": "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move.",
|
||||||
|
"unit": "mm/s",
|
||||||
|
"type": "float",
|
||||||
|
"default_value": 10,
|
||||||
|
"minimum_value": "0",
|
||||||
|
"maximum_value": "machine_max_feedrate_z",
|
||||||
|
"enabled": "retraction_enable and retraction_hop_enabled",
|
||||||
|
"settable_per_mesh": false,
|
||||||
|
"settable_per_extruder": true
|
||||||
|
},
|
||||||
"max_feedrate_z_override":
|
"max_feedrate_z_override":
|
||||||
{
|
{
|
||||||
"label": "Maximum Z Speed",
|
"label": "Maximum Z Speed",
|
||||||
|
@ -4567,10 +4580,10 @@
|
||||||
"enabled": "support_enable and support_use_towers",
|
"enabled": "support_enable and support_use_towers",
|
||||||
"settable_per_mesh": true
|
"settable_per_mesh": true
|
||||||
},
|
},
|
||||||
"support_minimal_diameter":
|
"support_tower_maximum_supported_diameter":
|
||||||
{
|
{
|
||||||
"label": "Minimum Diameter",
|
"label": "Maximum Tower-Supported Diameter",
|
||||||
"description": "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower.",
|
"description": "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower.",
|
||||||
"unit": "mm",
|
"unit": "mm",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default_value": 3.0,
|
"default_value": 3.0,
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Fine
|
||||||
definition = abax_pri3
|
definition = abax_pri3
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
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 = 7
|
setting_version = 8
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
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