Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CURA-12236 expose preferred travel area in combing #20041

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cura-workflows
Submodule Cura-workflows added at cabc2d
42 changes: 42 additions & 0 deletions package_details.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
author: UltiMaker
build_policy: missing
default_options:
enterprise: False
staging: False
cloud_api_version: 1
display_name: UltiMaker Cura
cura_debug_mode: False
internal: False
i18n_extract: False
description: 3D printer / slicing GUI built on top of the Uranium framework
generators: ['VirtualPythonEnv']
label:
languages: []
license: LGPL-3.0
name: cura
options:
cloud_api_version: 1
cura_debug_mode: False
display_name: UltiMaker Cura
enterprise: False
i18n_extract: False
internal: False
staging: False
options_definitions:
enterprise: ['True', 'False']
staging: ['True', 'False']
cloud_api_version: ['ANY']
display_name: ['ANY']
cura_debug_mode: ['True', 'False']
internal: ['True', 'False']
i18n_extract: ['True', 'False']
package_type: None
python_requires:
translationextractor/2.3.0@ultimaker/stable#d504876a4742c1b92bcd6e1d5ba7509a: {'remote': 'cura-conan2', 'recipe': 'Downloaded', 'path': '/home/runner/.conan2/p/transe0e29f719efb7/e'}
requires: [{'ref': 'gettext/0.22.5', 'run': True, 'libs': False, 'skip': False, 'test': False, 'force': False, 'direct': True, 'build': True, 'transitive_headers': None, 'transitive_libs': None, 'headers': False, 'package_id_mode': None, 'visible': False}]
revision_mode: hash
settings: ['os', 'compiler', 'build_type', 'arch']
topics: ['conan', 'python', 'pyqt6', 'qt', 'qml', '3d-printing', 'slicer']
url: https://github.com/Ultimaker/cura
vendor: False
version: 5.10.0-alpha.0
15 changes: 15 additions & 0 deletions resources/definitions/fdmprinter.def.json
Original file line number Diff line number Diff line change
Expand Up @@ -4412,6 +4412,21 @@
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_combing_avoid_distance":
{
"label": "Distance to Walls",
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
"description": "Preferred distance to outer walls when doing an inside combing travel move.",
"unit": "mm",
"type": "float",
"default_value": 0,
"value": "machine_nozzle_size * 1.5",
"minimum_value": "0",
"minimum_value_warning": "machine_nozzle_size * 0.5",
"maximum_value_warning": "machine_nozzle_size * 10",
"enabled": "resolveOrValue('retraction_combing') != 'off'",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"travel_retract_before_outer_wall":
{
"label": "Retract Before Outer Wall",
Expand Down
Loading