Compare commits

..

26 Commits

Author SHA1 Message Date
Mitchell Mashburn
af9fd10d7a re:3D profile updates. (#15169)
* re:3D profile updates.

- Replace vendor-specific "re3D Greengate rPETG" filament with a generic "re3D rPETG" (base + @0.8/@1.75 nozzle variants), matching the naming convention used for rPLA/rPETG elsewhere in the re:3D vendor
  pack.
- Add fdm_filament_pp as a proper filament-type parent and switch re3D rPP to inherit from it instead of overriding filament_type on top of fdm_filament_pet.
- Added filament_type to the specific printer JSON file and removed from the base printer JSON file [fixes Issue#14693]
- Updates to speeds and accelerations for re:3D profiles, moved from common to machine processes [closed: PR#14259]
- Updates to fdm profile filename format so that it lists the filename and extruder number in the sliced .gcode file

* Fix setting IDs

* Add rename from for changed material names.
2026-08-08 01:07:03 +08:00
Kris Austin
74aed7a2bb test: finish the temp-file cleanup (#14976)
Follow-up to #14785. Routes the tests that still hand-rolled temp paths through
the shared helpers and unifies the temp guards.

- Add ScopedTemporaryDir and a shared ScopedTemporaryPath base under it and
  ScopedTemporaryFile.
- Move test_3mf's round-trip .3mf output out of the TEST_DATA_DIR source tree
  (a fixed-name leak) and test_toolordering's fixed-name temp .gcode (a sharding
  collision) onto ScopedTemporaryFile.
- Move test_config, test_slicing_pipeline_bindings, the test_3mf backup dirs, and
  test_preset_bundle_loading onto the guards.
- Make slic3rutils ScopedDataDir compose ScopedTemporaryDir; dedupe
  test_network_versions' fixture and delete test_plugin_lifecycle's duplicate.
2026-08-07 13:33:37 -03:00
Kris Austin
8bff9aaf32 fix(GUI): honor "Ignore" when layer height exceeds the configured maximum (#14369)
* fix(GUI): honor "Ignore" when layer height exceeds the configured maximum

Entering a layer height above the printer's max_layer_height on the Print
Settings tab fired two guards in sequence. Tab::on_value_change prompts
"...Adjust to the set range automatically?" with an Adjust/Ignore choice, and
ConfigManipulation::update_print_fff_config then showed an OK-only "Too large
layer height. Reset to X" dialog whose result was never checked, so it always
reset the value. The second guard overrode the user's "Ignore", resetting the
layer height regardless.

Changes:
- Extract the shared Adjust/Ignore dialog into
  ConfigManipulation::layer_height_out_of_range_dialog, reused by the tab
  (Tab::on_value_change) and the per-object/part settings panels. The dialog now
  names the value it will clamp to and reads correctly for too-low as well as
  too-high.
- The tab/plate path is already covered by Tab::on_value_change, so the
  duplicate reset is dropped from update_print_fff_config.
- The per-object/part panels have no on_value_change hook, so add
  ConfigManipulation::check_object_layer_height and call it from the object
  settings update paths, gated on the edited option (changed_opt_key ==
  "layer_height"). It prompts once per layer-height edit and does not re-prompt
  when unrelated object settings change after the user chose "Ignore".

Fixes #14214

* refactor(GUI): unify the layer-height range check across tab and object panels

Copilot review of #14369 noted that the per-object check only guarded the
max at extruder 0 and skipped the too-low case, diverging from the tab.

Move the whole range check into ConfigManipulation::check_layer_height,
used by both Tab::on_value_change and the per-object/part panels. It takes
the widest [min, max] window across the printer's extruders, offers
Adjust/Ignore in both directions, and resets a near-zero value. The tab's
inline block collapses to one call, dropping the duplicated limit logic.

* fix(GUI): only enforce layer-height limits that are actually set

max_layer_height defaults to 0 (unset), so the unconditional range check
offered to clamp any layer height to 0 on presets that don't define it.
Guard each branch (near-zero, too-high, too-low) so an unset limit disables
that direction; the slice-time nozzle-diameter check still applies.

Also run check_layer_height before update_print_fff_config in the object
panels so a near-zero per-object value prompts the same way the tab does,
with update_print_fff_config's fallback still covering the no-minimum case.
2026-08-07 13:31:04 -03:00
Kris Austin
83723e2a7b fix: Slice all crash on a multi-plate project with an uninitialized toolbar (#15117)
_update_select_plate_toolbar_stats_item(true) runs from
on_action_slice_all before the select-plate toolbar has necessarily been
initialized. m_all_plates_stats_item is only assigned in
_init_select_plate_toolbar, so slicing a multi-plate project shortly
after startup (before the Preview tab has rendered) leaves the pointer
null while show_stats_item is true, and the branch dereferences it,
crashing with SIGSEGV.

Every other dereference of this pointer already null-checks it. Add the
same check here so the all-plates stats item is left unselected until the
toolbar is initialized instead of crashing.

Fixes #15116
2026-08-07 13:28:54 -03:00
Kris Austin
e2fd46f82c fix: default-initialize WallToolPathsParams fields (#15138)
min_length_factor and is_top_or_bottom_layer had no default initializers, and the FillConcentric/FillConcentricInternal callers never set them, so WallToolPaths::removeSmallLines() thresholded on stack garbage. Which short extrusion lines it dropped then depended on memory layout, so concentric solid-infill output was nondeterministic between runs and across machines. Give every member a default, matching the adjacent FillParams. The perimeter path was already fine because it builds the struct via make_paths_params().
2026-08-07 13:22:26 -03:00
TheLegendTubaGuy
b216813bf0 Add the Qidi Plus 5 (#15163)
* Add the Qidi Plus 5

* Remove ignored profiles

Qidi didn't register these, so they are essentially dead weight.

* Set Qidi profile version to 02.04.00.10
2026-08-07 13:07:27 -03:00
Felix14_v2
b3296fa199 Review AI changes in Russian localization (#15092)
* Review AI changes

* Part 2

* Part 3

* Part 4

God bless Ian Alexis

* Part 5

* Final part!

* Catches by Gemma

This 6-minute check probably saved me a week

* Tweak

* Update OrcaSlicer_ru.po
2026-08-07 12:03:53 -03:00
Surfoo
6d9a9eeb04 i18n(fr): improve French localization quality and consistency. (#15106) 2026-08-07 09:31:57 -03:00
Clifford
8e243faa3a Fix Linux unit test failure in the wipe tower temperature trace comparison (#15161)
## Problem

`Toolchange temperature commands are unchanged when the wipe tower wait
is off`
(added in #15144) fails on both Linux runners and passes on Windows and
macOS.
It is the only failing test in the suite, and it has been failing on
main since
that PR merged.

| Job | Result |
| --- | --- |
| Windows x64 / Unit Tests | pass |
| Windows arm64 / Unit Tests | pass |
| macOS arm64 / Unit Tests | pass |
| Linux x86_64 / Unit Tests | **fail** |
| Linux aarch64 / Unit Tests | **fail** |

From the merge commit
([Linux
x86_64](https://github.com/OrcaSlicer/OrcaSlicer/actions/runs/31072382258/job/92531704095),
[Linux
aarch64](https://github.com/OrcaSlicer/OrcaSlicer/actions/runs/31072382258/job/92531704075)),
still reproducing on current main:

```
first difference at trace entry 29
  main:   M104 S240 T0 ; preheat T0 time: 31s	lead 30.9s
  branch: M104 S240 T0 ; preheat T0 time: 30s	lead 30.3s
```

## Cause

Each preheat entry records the same quantity twice: `lead` at one
decimal, and
`time:` inside the command text as that value rounded to a whole second.

`split_lead` already compares `lead` with a 0.5s tolerance and explains
why the
estimate moves. `time:` sits in the exactly-compared command text, so it
never
got that tolerance — and being rounded, it flips on a drift far below
0.5s
(30.4 and 30.6 render as `30s` and `31s`). Entry 29 is the only entry in
the
163-entry golden whose lead rounds up; every other preheat sits at
30.0–30.4 and
rounds down, which is why it is the only one that fails.

The variation is per-toolchain, not run to run. Both Linux arches
produce
exactly `lead 30.3s`; Windows x64/arm64 and macOS arm64 all produce
exactly
`30.9s`. Repeated local runs are byte-identical. macOS arm64 passing
while Linux
aarch64 fails rules out the ISA — it is floating-point accumulation over
a few
thousand move durations under GCC vs Clang vs MSVC.

The mechanism makes it discrete rather than gradual: the backtrace parks
the
preheat at the first exported line at least `preheat_time` before the
tool
change, so `lead` is `preheat_time` plus the leftover of whichever move
that
landed on. A sub-tenth difference selects the neighbouring move and
`lead` steps
by that move's whole duration.

Entries 1–28 match exactly, including five earlier preheats whose leads
fall
inside the existing tolerance, so the toolpaths themselves are
identical. I also
reverted the two prime-tower commits that landed between the golden's
capture
point and now, rebuilt, and got a byte-identical trace — this is not
behavioural
drift.

That also rules out regenerating the golden: no single capture satisfies
all
three toolchains, and recapturing on Linux would turn the three
currently-green
runners red.

## Fix

Test-only.

- `lead` keeps a tolerance, widened to 1.5s (measured drift 0.6s; a
preheat
actually leaving its backtrace position would move by tens of seconds).
- `time:` is **not** compared across runs at all. Being a rounding of
`lead`, it
carries nothing the tolerance does not already cover, and comparing it
across
runs can only reproduce the flake. It is instead checked against its own
  entry's `lead` — a correct rounding keeps `|time - lead| <= 0.5`.

That second point matters: simply tolerating `time:` numerically would
have made
the test blind to a real change, because drift and a wrong rounding both
move it
by 1. The self-consistency check keeps that coverage. I verified it by
changing
`(int) std::round(time_diffs[0])` to `(int) time_diffs[0]` in
`GCodeProcessor::export_lines` — the test fails with
`"time:" is not its entry's "lead" rounded to a whole second`, where a
plain
tolerance would have passed silently.

Everything else is still compared exactly: all M104/M109 values, tool
ids,
block markers, ordering, entry count, and the annotation text including
its
trailing `s`. The other 138 entries remain byte-exact.

No production code, no golden regeneration. The golden file and these
helpers
are used by this one test and nothing else, and the tolerance only
widens, so
Windows and macOS keep passing unchanged. A note is added to the
golden's header
so the next mismatch in those fields is not "fixed" by recapturing.

## How to verify

Before, on Linux:

```bash
git checkout main && ./build_linux.sh -t
ctest --test-dir build/tests -R "Toolchange temperature commands are unchanged" --output-on-failure
# fails at trace entry 29
```

After:

```bash
cmake --build build --config Release --target fff_print_tests
ctest --test-dir build/tests --output-on-failure     # 463/463
```
2026-08-07 20:26:18 +08:00
Alexandre Folle de Menezes
b5412221b6 Verify and improve AI pt_BR translations (#15080) 2026-08-07 09:22:42 -03:00
Kiss Lorand
f444176df8 Fix Windows crash after using "Replace all with 3D files" (#15102)
Fix Windows crash in Replace all with 3D file

Keep the replacement result message as wxString and substitute the volume
name directly.

On Windows, wxString::ToStdString() cannot encode the Unicode status icon
through the active ANSI code page and returns an empty string. Passing that
empty string to boost::format with a volume-name argument throws
boost::too_many_args and exits OrcaSlicer.
2026-08-07 17:13:25 +08:00
Ian Bassi
a684c6daf6 Bump Creality (#15157)
To apply https://github.com/OrcaSlicer/OrcaSlicer/pull/14654
2026-08-06 18:44:40 -03:00
TheLegendTubaGuy
7f10c73dce Fix redundant QIDI startup tool changes (#15096)
* Fix redundant QIDI startup tool changes

Guard Q2, X-Max 4, and X-Plus 4 filament-change G-code so same-tool startup selections do not run the full cut, unload, and purge sequence.

* Guard Q2C against redundant startup tool changes

Skip the complete filament-change sequence when the requested tool is already selected during startup.

* Bump Qidi profile version
2026-08-06 18:26:42 -03:00
yw4z
945520b827 QOL Add parent preset information next to detach preset checkbox and match checkbox style on Save Preset dialog (#15076)
init
2026-08-06 22:58:39 +08:00
Kiss Lorand
b281c91b99 Fix ignored filament-specific ironing speed override (#15082)
Fix overridden ironing speed

Use filament_ironing_speed for the active filament when configured, falling back to the process setting when unset.
2026-08-06 22:54:11 +08:00
Ian Bassi
b57d7a67e2 Regression version for Bug report (#15139) 2026-08-06 22:43:37 +08:00
SoftFever
18ca06ec6b Size the prime tower from the actual flush volumes (#15149)
# Description

<!--
> Please provide a summary of the changes made in this PR. Include
details such as:
  > * What issue does this PR address or fix?
  > * What new features or enhancements does this PR introduce?
> * Are there any breaking changes or dependencies that need to be
considered?
-->

The prime tower reserved its footprint from the prime volume alone,
ignoring the flush volumes it actually has to hold, so on a multi-colour
print the tower shown in Prepare and the space kept clear for it during
arrange could be far smaller than the tower that gets sliced — leaving
it overlapping objects or running off the plate. This sizes the estimate
from the configured flush volumes instead, for rib walls as well as
rectangle and cone, applies the same height-based minimum depth the
prime-volume estimate already used, and reads the flush matrix correctly
on multi-nozzle printers, where it holds one block per nozzle.

Only the pre-slice estimate changes: the generated tower is untouched,
and prints that do not purge into the prime tower keep their existing
size.

# Screenshots/Recordings/Graphs

<!--
> Please attach relevant screenshots to showcase the UI changes.
> Please attach images that can help explain the changes.
-->

## Tests

<!--
> Please describe the tests that you have conducted to verify the
changes made in this PR.
-->

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-08-06 18:17:05 +08:00
SoftFever
32a4e0fb37 Size the prime tower from the actual flush volumes
Prime towers reserved depth from the prime volume alone, ignoring the flush
matrix: rib-wall towers in both the engine and the preview, and rectangle and
cone towers in the preview, which never carried the flush-aware estimate the
engine already used. The preview also read the print preset, which does not
carry the printer- and filament-scope keys the estimate needs and so silently
fell back to defaults. On multi-nozzle printers the flush matrix, which holds
one block per nozzle, was additionally read as a single block. The tower could
come out too small for the purge it has to hold.

The flush-based estimate also skipped the height-based minimum depth that the
prime-volume one applies, so low-flush prints could estimate a tower shallower
than the one that actually gets built.
2026-08-06 17:58:41 +08:00
SoftFever
f9ed5843c0 Keep the prime tower and its approach travel on non-rectangular beds (#15146)
# Description

<!--
> Please provide a summary of the changes made in this PR. Include
details such as:
  > * What issue does this PR address or fix?
  > * What new features or enhancements does this PR introduce?
> * Are there any breaking changes or dependencies that need to be
considered?
-->

On delta, circular and custom bed shapes — and on multi-nozzle printers
where each carriage only reaches part of the plate — the prime tower was
positioned and clamped against the bed's bounding box, so it could be
parked in a corner the bed does not actually have. Neither the default
placement nor dragging the tower would pull it back onto the bed, and
slicing went ahead without complaint. The tower's default position, its
drag clamp and the slice-time validation now all follow the real
printable outline, and a tower that genuinely does not fit is reported
as "Prime Tower is partially outside the printable area" instead of
being sliced into a print that cannot be produced.

The travel that approaches the tower is planned against that same
outline. Previously the router gave up whenever its clearance box fell
outside the bed and drove the nozzle straight across the tower; a tower
parked near the bed edge now keeps its detour and enters through the
wall opening as intended.

This also corrects the footprint the prime tower validation uses for a
rotated tower, which was being rotated by the wrong amount and about the
wrong point, so proximity warnings and exclusion-area errors for rotated
towers were being computed against the wrong shape.

Prime tower placement on rectangular beds is unchanged. The new
printable-area validation and the tower-approach routing fix apply to
every bed shape.

# Screenshots/Recordings/Graphs

<!--
> Please attach relevant screenshots to showcase the UI changes.
> Please attach images that can help explain the changes.
-->

## Tests

<!--
> Please describe the tests that you have conducted to verify the
changes made in this PR.
-->

Added unit coverage for the placement clamp against a non-rectangular
outline (a regular hexagon standing in for the shipped delta beds),
covering the rectangular-bed path, single-axis clamping while dragging,
a footprint already inside the outline, one sitting in the bounding-box
corner but off the bed, an unresolved auto brim width arriving as a
negative margin, and a footprint too large for the bed. The `fff_print`
suite passes.

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-08-06 16:09:56 +08:00
SoftFever
7c73739e1a Keep the prime tower and its approach travel on non-rectangular beds
The placement clamps and the tower-approach router both stood in the bed's
bounding box for the bed itself, so on a delta or hexagonal bed the prime tower
could be parked in a corner that does not exist and the nozzle could be routed
across it. Both now test the real printable outline, slicing reports a tower
that does not fit instead of printing it off the bed, and a tower parked near an
edge is routed along the clamped side rather than falling back to a straight
line across the tower.

Also fixes the placement validation rotating the tower hull by degrees read as
radians about the plate origin, and never rotating the generated tower footprint
at all.
2026-08-06 15:48:40 +08:00
SoftFever
aa4e28b2b5 Feature: Wait for the toolchange temperature on the wipe tower (#15144)
# Description

<!--
> Please provide a summary of the changes made in this PR. Include
details such as:
  > * What issue does this PR address or fix?
  > * What new features or enhancements does this PR introduce?
> * Are there any breaking changes or dependencies that need to be
considered?
-->

Adds **Wait for temperature on wipe tower**, a printer option for
multi-extruder
machines using a Type 2 wipe tower. With it on, the new tool is picked
up without a
blocking temperature wait; the printer travels to the wipe tower and
waits there
right before purging, parked beside the tower so the ooze from the
heat-up lands
next to it rather than on the model. The incoming filament's target is
raised ahead
of the tool change, so the heat-up overlaps both the change itself and
the travel to
the tower.

The benefit is less oozing and less dead time. The tool no longer sits
at full print
temperature while it waits to be picked up or right after it undocks —
it heats on
the move and only reaches temperature once it is over the tower, so
there is far less
hot-and-idle time, and what does ooze ends up beside the tower. This
matters most on
tool changer printers with long docking and attaching cycles, such as
Tapchanger and
StealthChanger machines, where that wait is otherwise pure stall time
spent dripping.

The firmware or tool change macro must not wait for the temperature
itself. The
option is off by default and only shown for multi-extruder printers on a
Type 2 wipe
tower, and it is enabled by default for the generic toolchanger profile.

# Screenshots/Recordings/Graphs

<!--
> Please attach relevant screenshots to showcase the UI changes.
> Please attach images that can help explain the changes.
-->

## Tests

<!--
> Please describe the tests that you have conducted to verify the
changes made in this PR.
-->

New Catch2 cases in `tests/fff_print/test_multifilament.cpp`: the wait
moves to the
tower when enabled, priming pre-heats to the first layer temperature,
the park side
is regenerated when the tower is moved or rotated, and a regression test
pinning the
unchanged (option-off) toolchange temperature commands against a
recorded trace
(`tests/data/wipe_tower_temperature_trace_main.txt`).

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-08-06 13:32:35 +08:00
SoftFever
408db4b3b0 Wait for the toolchange temperature on the wipe tower
Adds a printer option that picks up the new tool without a blocking temperature
wait, travels to the wipe tower, and waits there right before purging, parked
beside the tower so the ooze from the heat-up lands next to it rather than on the
model. The incoming filament's target is raised ahead of the tool change, so the
heat-up overlaps both the change itself and the travel to the tower.

Off by default, and only offered for multi-extruder printers using a Type 2 wipe
tower; the generic toolchanger profile enables it.
2026-08-06 12:24:00 +08:00
Alexander Haibl
b97ca3c0ac disable arc_fitting for K1 potato mcu (#14654) 2026-08-05 16:25:34 -03:00
Dipl.-Ing. Raoul Rubien, BSc
f73566dd2b Fixes 1 Technical Debt and 3 Compiler Warnings [-Wclass-memaccess] (#10707)
* fixes: memcpy(...) writing to an object of type OrientParams with no trivial copy-assignment; use copy-assignment or copy-initialization instead [-Wclass-memaccess]

* review result: replaces anonymous namespace with static
2026-08-05 21:45:48 +08:00
Dipl.-Ing. Raoul Rubien, BSc
7fbfb7ba87 Fixes 14 Compiler Warnings [-Wmaybe-uninitialized] (#10778)
* fixes: may be used uninitialized [-Wmaybe-uninitialized]

* fixes: may be used uninitialized [-Wmaybe-uninitialized]

* fixes: may be used uninitialized [-Wmaybe-uninitialized]

* fixes: may be used uninitialized [-Wmaybe-uninitialized]

* reverts {} initializer to = to keep code style consistent
2026-08-05 21:42:15 +08:00
Dipl.-Ing. Raoul Rubien, BSc
23bd320076 Fixes 2 Bugs and 13 Compiler Warnings (#10670)
* fixes: %g directive writing between 1 and 13 bytes into a region of size between 6 and 18 [-Wformat-overflow=]

* fixes: %5s directive writing between 5 and 63 bytes into a region of size 58 [-Wformat-overflow=]

* fixes: catching polymorphic type by value [-Wcatch-value=]

* fixes: [-Wcomment]; removes whitespaces

* increases buffer size from 71B to 90B to avoid potential ovfl.
2026-08-05 21:41:04 +08:00
441 changed files with 13678 additions and 2205 deletions

View File

@@ -32,9 +32,17 @@ body:
attributes:
label: OrcaSlicer Version
description: Which version of Orca Slicer are you running? You can see the full version in `Help` -> `About Orca Slicer`.
placeholder: e.g. 1.9.0
placeholder: e.g. 2.5.0
validations:
required: true
- type: input
id: working_version
attributes:
label: Regression compared to a previous version
description: Did it work in a previous version?
placeholder: e.g. 2.3.2
validations:
required: false
- type: dropdown
id: os_type
attributes:

View File

@@ -7781,19 +7781,19 @@ msgid "Replaced with 3D files from directory:\n"
msgstr ""
#, possible-boost-format
msgid "✖ Skipped %1%: same file.\n"
msgid "✖ Skipped %s: same file.\n"
msgstr ""
#, possible-boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgid "✖ Skipped %s: file does not exist.\n"
msgstr ""
#, possible-boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgid "✖ Skipped %s: failed to replace.\n"
msgstr ""
#, possible-boost-format
msgid "✔ Replaced %1%.\n"
msgid "✔ Replaced %s.\n"
msgstr ""
msgid "Replaced volumes"

View File

@@ -8361,21 +8361,21 @@ msgstr "No s'ha seleccionat el directori per a la substitució"
msgid "Replaced with 3D files from directory:\n"
msgstr "Substituït amb fitxers 3D del directori:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Omès %1%: mateix fitxer.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Omès %s: mateix fitxer.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Omès %1%: el fitxer no existeix.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Omès %s: el fitxer no existeix.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Omès %1%: la substitució ha fallat.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Omès %s: la substitució ha fallat.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Substituït %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Substituït %s.\n"
msgid "Replaced volumes"
msgstr "Volums substituïts"

View File

@@ -8320,21 +8320,21 @@ msgstr "Nebyla vybrána složka pro nahrazení"
msgid "Replaced with 3D files from directory:\n"
msgstr "Nahrazeno 3D soubory ze složky:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Přeskočeno %1%: stejný soubor.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Přeskočeno %s: stejný soubor.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Přeskočeno %1%: soubor neexistuje.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Přeskočeno %s: soubor neexistuje.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Přeskočeno %1%: nahrazení se nezdařilo.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Přeskočeno %s: nahrazení se nezdařilo.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Nahrazeno %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Nahrazeno %s.\n"
msgid "Replaced volumes"
msgstr "Nahrazené objemy"

View File

@@ -8191,21 +8191,21 @@ msgstr "Verzeichnis um daraus zu ersetzen wurde nicht ausgewählt"
msgid "Replaced with 3D files from directory:\n"
msgstr "Ersetzt durch 3D-Dateien aus Verzeichnis:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Übersprungen %1%: gleiche Datei.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Übersprungen %s: gleiche Datei.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Übersprungen %1%: Datei existiert nicht.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Übersprungen %s: Datei existiert nicht.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Übersprungen %1%: Ersetzen fehlgeschlagen.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Übersprungen %s: Ersetzen fehlgeschlagen.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Ersetzt %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Ersetzt %s.\n"
msgid "Replaced volumes"
msgstr "Ersetzte Volumen"

View File

@@ -7776,20 +7776,20 @@ msgstr ""
msgid "Replaced with 3D files from directory:\n"
msgstr ""
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr ""
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr ""
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr ""
#, boost-format
msgid "✔ Replaced %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr ""
msgid "Replaced volumes"

View File

@@ -7997,21 +7997,21 @@ msgstr "No se seleccionó el directorio para el reemplazo"
msgid "Replaced with 3D files from directory:\n"
msgstr "Reemplazado con archivos 3D desde el directorio:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Omitido %1%: mismo archivo.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Omitido %s: mismo archivo.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Omitido %1%: el archivo no existe.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Omitido %s: el archivo no existe.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Omitido %1%: fallo al reemplazar.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Omitido %s: fallo al reemplazar.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Reemplazado %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Reemplazado %s.\n"
msgid "Replaced volumes"
msgstr "Volúmenes reemplazados"

View File

@@ -8064,21 +8064,21 @@ msgstr "Ez da ordezkatzeko direktoriorik hautatu"
msgid "Replaced with 3D files from directory:\n"
msgstr "Direktorio honetako 3D fitxategiekin ordeztuta:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ %1% saltatu da: fitxategi bera.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s saltatu da: fitxategi bera.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ %1% saltatu da: fitxategia ez da existitzen.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s saltatu da: fitxategia ez da existitzen.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ %1% saltatu da: ezin izan da ordeztu.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s saltatu da: ezin izan da ordeztu.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ %1% ordezkatu da.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s ordezkatu da.\n"
msgid "Replaced volumes"
msgstr "Ordeztutako bolumenak"

View File

@@ -8120,21 +8120,21 @@ msgstr "Le répertoire pour le remplacement n'a pas été sélectionné"
msgid "Replaced with 3D files from directory:\n"
msgstr "Remplacé par des fichiers 3D depuis le répertoire :\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Ignoré %1% : même fichier.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Ignoré %s : même fichier.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Ignoré %1% : le fichier n'existe pas.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Ignoré %s : le fichier n'existe pas.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Ignoré %1% : échec du remplacement.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Ignoré %s : échec du remplacement.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Remplacé %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Remplacé %s.\n"
msgid "Replaced volumes"
msgstr "Volumes remplacés"
@@ -9283,22 +9283,22 @@ msgid "DEV host: api-dev.bambu-lab.com/v1"
msgstr "Hôte DEV : api-dev.bambu-lab.com/v1"
msgid "QA host: api-qa.bambu-lab.com/v1"
msgstr "Hôte AQ : api-qa.bambu-lab.com/v1"
msgstr "Hôte QA : api-qa.bambu-lab.com/v1"
msgid "PRE host: api-pre.bambu-lab.com/v1"
msgstr "Hébergeur PRE : api-pre.bambu-lab.com/v1"
msgstr "Hôte PRE : api-pre.bambu-lab.com/v1"
msgid "Product host"
msgstr "Hôte du produit"
msgid "Debug save button"
msgstr "bouton d'enregistrement de débogage"
msgstr "Bouton d'enregistrement de debugage"
msgid "Save debug settings"
msgstr "enregistrer les paramètres de débogage"
msgstr "Enregistrer les paramètres de debugage"
msgid "Debug settings have been saved successfully!"
msgstr "Les paramètres DEBUG ont été enregistrés avec succès !"
msgstr "Les paramètres de debug ont été enregistrés avec succès !"
msgid "Cloud environment switched; please login again!"
msgstr "L'environnement Cloud a changé, veuillez vous reconnecter !"

View File

@@ -8244,21 +8244,21 @@ msgstr "A cseréhez nem lett mappa kiválasztva"
msgid "Replaced with 3D files from directory:\n"
msgstr "Cserélve a mappából származó 3D fájlokra:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Kihagyva %1%: azonos fájl.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s kihagyva: azonos fájl.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Kihagyva %1%: a fájl nem létezik.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s kihagyva: a fájl nem létezik.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Kihagyva %1%: a csere sikertelen.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s kihagyva: a csere sikertelen.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Lecserélve: %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔%s lecserélve.\n"
msgid "Replaced volumes"
msgstr "Lecserélt térfogatok"

View File

@@ -8244,21 +8244,21 @@ msgstr "La directory per la sostituzione non è stata selezionata"
msgid "Replaced with 3D files from directory:\n"
msgstr "Sostituito con file 3D dalla directory:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Saltato %1%: stesso file.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Saltato %s: stesso file.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Saltato %1%: il file non esiste.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Saltato %s: il file non esiste.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Saltato %1%: sostituzione fallita.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Saltato %s: sostituzione fallita.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Sostituito %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Sostituito %s.\n"
msgid "Replaced volumes"
msgstr "Volumi sostituiti"

View File

@@ -8262,21 +8262,21 @@ msgstr "置換用のディレクトリが選択されていません"
msgid "Replaced with 3D files from directory:\n"
msgstr "ディレクトリの3Dファイルで置換しました:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ スキップ %1%: 同一ファイル。\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ スキップ %s: 同一ファイル。\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ スキップ %1%: ファイルが存在しません。\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ スキップ %s: ファイルが存在しません。\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ スキップ %1%: 置換に失敗しました。\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ スキップ %s: 置換に失敗しました。\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ 置換しました %1%。\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ 置換しました %s。\n"
msgid "Replaced volumes"
msgstr "置換されたボリューム"

View File

@@ -8288,24 +8288,24 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "다음 디렉터리의 3D 파일로 교체했습니다:\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ 건너뜀 %1%: 동일한 파일입니다.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ 건너뜀 %s: 동일한 파일입니다.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ 건너뜀 %1%: 파일이 존재하지 않습니다.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ 건너뜀 %s: 파일이 존재하지 않습니다.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ 건너뜀 %1%: 교체하지 못했습니다.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ 건너뜀 %s: 교체하지 못했습니다.\n"
# AI Translated
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ %1%을(를) 교체했습니다.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s을(를) 교체했습니다.\n"
# AI Translated
msgid "Replaced volumes"

View File

@@ -8239,21 +8239,21 @@ msgstr ""
"Pakeista 3D failais iš katalogo:\n"
"\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Praleistas %1%: tas pats failas.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Praleistas %s: tas pats failas.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Praleistas %1%: failas neegzistuoja.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Praleistas %s: failas neegzistuoja.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Praleistas %1%: nepavyko pakeisti.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Praleistas %s: nepavyko pakeisti.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Pakeistas %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Pakeistas %s.\n"
msgid "Replaced volumes"
msgstr "Pakeisti tūriai"

View File

@@ -8999,24 +8999,24 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Vervangen door 3D-bestanden uit de map:\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Overgeslagen %1%: hetzelfde bestand.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Overgeslagen %s: hetzelfde bestand.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Overgeslagen %1%: bestand bestaat niet.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Overgeslagen %s: bestand bestaat niet.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Overgeslagen %1%: vervangen is mislukt.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Overgeslagen %s: vervangen is mislukt.\n"
# AI Translated
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Vervangen %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Vervangen %s.\n"
# AI Translated
msgid "Replaced volumes"

View File

@@ -8444,24 +8444,24 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Zastąpiono plikami 3D z katalogu:\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Pominięto %1%: ten sam plik.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Pominięto %s: ten sam plik.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Pominięto %1%: plik nie istnieje.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Pominięto %s: plik nie istnieje.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Pominięto %1%: nie udało się zastąpić.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Pominięto %s: nie udało się zastąpić.\n"
# AI Translated
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Zastąpiono %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Zastąpiono %s.\n"
# AI Translated
msgid "Replaced volumes"

View File

@@ -8026,21 +8026,21 @@ msgstr "Diretório para substituição não foi selecionado"
msgid "Replaced with 3D files from directory:\n"
msgstr "Substituído por arquivos 3D do diretório:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ %1% Ignorados: mesmo arquivo.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s Ignorados: mesmo arquivo.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ %1% Ignorados: arquivo não existe.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s Ignorados: arquivo não existe.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ %1% Ignorados: falha ao substituir.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s Ignorados: falha ao substituir.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ %1% Substituídos.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s Substituídos.\n"
msgid "Replaced volumes"
msgstr "Volumes substiruídos"
@@ -17130,15 +17130,12 @@ msgstr "Quando este valor de retração for modificado, ele será usado como a q
msgid "Support fast purge mode"
msgstr "Suporte ao modo de purga rápida"
# AI Translated
msgid "Whether this printer supports fast purge mode with optimized temperature and multiplier."
msgstr "Se esta impressora suporta o modo de purga rápida com temperatura e multiplicador otimizados."
# AI Translated
msgid "Filament change"
msgstr "Troca de filamento"
# AI Translated
msgid "The volume of material required to prime the extruder on the tower, excluding a hotend change."
msgstr "O volume de material necessário para preparar a extrusora na torre, excluindo uma troca de hotend."
@@ -18323,11 +18320,9 @@ msgstr ""
"Há vários endereços IP resolvendo para o nome do host %1%.\n"
"Por favor, selecione um que deve ser usado."
# AI Translated
msgid "Auto-scale for nozzle"
msgstr "Escala automática para o bico"
# AI Translated
msgid ""
"This model is designed around a 0.4 mm nozzle with a 0.2 mm layer height. \n"
"When the scaling option is enabled (recommended), it dynamically resizes to match your current nozzle diameter and an appropriate layer height, making the test both accurate and easy to read.\n"
@@ -18473,11 +18468,9 @@ msgstr "Velocidade Inicial: "
msgid "End speed: "
msgstr "Velocidade Final: "
# AI Translated
msgid "Auto-adjust to max volumetric speed"
msgstr "Ajuste automático à velocidade volumétrica máxima"
# AI Translated
msgid "If the end speed would exceed the filament's maximum volumetric speed, automatically lower the layer height (keeping standard values and staying within the machine's limits) to reach it. If even the minimum layer height is not enough, lower the end speed instead."
msgstr "Se a velocidade final ultrapassar a velocidade volumétrica máxima do filamento, reduz automaticamente a altura de camada (mantendo valores padrão e respeitando os limites da máquina) para alcançá-la. Se nem mesmo a altura de camada mínima for suficiente, reduz a velocidade final."
@@ -18492,7 +18485,6 @@ msgstr ""
"passo >= 0\n"
"fim > início + passo"
# AI Translated
#, c-format, boost-format
msgid ""
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s), which limits the outer wall to about %.0f mm/s at this line width and layer height.\n"
@@ -18500,12 +18492,11 @@ msgid ""
"\n"
"%s"
msgstr ""
"A velocidade final (%.0f mm/s) ultrapassa a velocidade volumétrica máxima do filamento (%.1f mm³/s), o que limita a parede externa a cerca de %.0f mm/s com esta largura de linha e altura de camada.\n"
"A velocidade final (%.0f mm/s) excede a velocidade volumétrica máxima do filamento (%.1f mm³/s), o que limita a parede externa a cerca de %.0f mm/s com esta largura de linha e altura de camada.\n"
" Velocidades acima disso serão limitadas, portanto os blocos superiores da torre não serão impressos na velocidade solicitada.\n"
"\n"
"%s"
# AI Translated
#, c-format, boost-format
msgid ""
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s) at the default layer height (%.2f mm).\n"
@@ -18516,7 +18507,6 @@ msgstr ""
"\n"
"A altura de camada foi reduzida para %.2f mm (um valor usado pelos perfis desta impressora) para que a torre possa atingir a velocidade solicitada."
# AI Translated
#, c-format, boost-format
msgid ""
"Even at the smallest layer height used by this printer's profiles (%.2f mm) the end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s).\n"
@@ -18531,15 +18521,12 @@ msgstr ""
"\n"
"Continuar?"
# AI Translated
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"
# AI Translated
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
msgstr "Ativar \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
# AI Translated
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
msgstr "Ativar \"Escala automática para o bico\" e \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
@@ -19644,9 +19631,8 @@ msgstr "Não foi possível decifrar a resposta do servidor."
msgid "Error saving session to file"
msgstr "Erro salvando sessão para arquivo"
# AI Translated
msgid "Error session check"
msgstr "Verificação de sessão de erro"
msgstr "Erro na verificação de sessão"
msgid "Error during file upload"
msgstr "Erro durante a subida do arquivo"
@@ -20079,9 +20065,8 @@ msgstr "Impressão Falhou"
msgid "Removed"
msgstr "Removido"
# AI Translated
msgid "Enable smart filament assign: Assign one filament to multiple nozzles to maximize savings"
msgstr "Ativar atribuição inteligente de filamento: atribui um filamento a vários bicos para maximizar a economia"
msgstr "Ativar atribuição inteligente de filamento: Atribui um filamento a vários bicos para maximizar a economia"
msgid "Fila Saving"
msgstr "Econo Filamento"
@@ -20119,7 +20104,6 @@ msgstr "Tutorial em vídeo"
msgid "(Sync with printer)"
msgstr "(Sinc. com impressora)"
# AI Translated
#, c-format, boost-format
msgid "Error: %s extruder has no available %s nozzle, current group result is invalid."
msgstr "Erro: a extrusora %s não tem nenhum bico %s disponível, o resultado do grupo atual é inválido."
@@ -20130,17 +20114,14 @@ msgstr "Vamos fatiar de acordo com este método de agrupamento:"
msgid "Tip: You can drag the filaments to reassign them to different nozzles."
msgstr "Dica: Você pode arrastar os filamentos para reatribuí-los a diferentes bicos."
# AI Translated
msgid "Please adjust your grouping or click "
msgstr "Por favor, ajuste seu agrupamento ou clique em "
# AI Translated
msgid " to set nozzle count"
msgstr " para definir o número de bicos"
# AI Translated
msgid "Set the physical nozzle count..."
msgstr "Definir o número físico de bicos..."
msgstr "Definir o número de bicos físicos"
msgid "The filament grouping method for current plate is determined by the dropdown option at the slicing plate button."
msgstr "O método de agrupamento de filamentos para a placa atual é determinado pela opção no botão de fatiamento da placa."
@@ -20480,99 +20461,75 @@ msgstr "Numero de facetas triangulares"
msgid "Calculating, please wait..."
msgstr "Calculando, por favor aguarde…"
# AI Translated
msgid "Save these settings as default"
msgstr "Salvar estas configurações como padrão"
# AI Translated
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr "Se ativado, os valores acima são armazenados como os padrões usados para futuras importações STEP (e mostrados nas Preferências)."
# AI Translated
msgid "PresetBundle"
msgstr "PresetBundle"
# AI Translated
msgid "Bundle folder does not exist."
msgstr "A pasta do pacote não existe."
# AI Translated
msgid "Failed to open folder."
msgstr "Falha ao abrir a pasta."
# AI Translated
msgid "Delete selected bundle from folder and all presets loaded from it?"
msgstr "Excluir o pacote selecionado da pasta e todas as predefinições carregadas a partir dele?"
# AI Translated
msgid "Delete Bundle"
msgstr "Excluir pacote"
msgstr "Excluir Pacote"
# AI Translated
msgid "Failed to remove bundle."
msgstr "Falha ao remover o pacote."
# AI Translated
msgid "Remove Bundle"
msgstr "Remover pacote"
# AI Translated
msgid "Unsubscribe bundle?"
msgstr "Cancelar a inscrição do pacote?"
# AI Translated
msgid "UnsubscribeBundle"
msgstr "UnsubscribeBundle"
# AI Translated
msgid "Failed to unsubscribe bundle."
msgstr "Falha ao cancelar a inscrição do pacote."
# AI Translated
msgid "Unsubscribe Bundle"
msgstr "Cancelar inscrição do pacote"
msgstr "Cancelar inscrição do Pacote"
# AI Translated
msgid "ExportPresetBundle"
msgstr "ExportPresetBundle"
# AI Translated
msgid "Save preset bundle"
msgstr "Salvar pacote de predefinições"
# AI Translated
msgid "Performing desktop integration failed - boost::filesystem::canonical did not return appimage path."
msgstr "Falha ao realizar a integração com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
# AI Translated
msgid "Performing desktop integration failed - Could not find executable."
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível encontrar o executável."
# AI Translated
msgid "Performing desktop integration failed because the application directory was not found."
msgstr "Falha ao realizar a integração com a área de trabalho porque o diretório do aplicativo não foi encontrado."
# AI Translated
msgid "Performing desktop integration failed - could not create Gcodeviewer desktop file. OrcaSlicer desktop file was probably created successfully."
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível criar o arquivo desktop do Gcodeviewer. O arquivo desktop do OrcaSlicer provavelmente foi criado com sucesso."
# AI Translated
msgid "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path."
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
# AI Translated
msgid "Performing downloader desktop integration failed - Could not find executable."
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - não foi possível encontrar o executável."
# AI Translated
msgid "Performing downloader desktop integration failed because the application directory was not found."
msgstr "Falha ao realizar a integração do downloader com a área de trabalho porque o diretório do aplicativo não foi encontrado."
# AI Translated
msgid "Desktop Integration"
msgstr "Integração com a área de trabalho"
msgstr "Integração com a Área de Trabalho"
# AI Translated
msgid ""
"Desktop Integration sets this binary to be searchable by the system.\n"
"\n"
@@ -20596,40 +20553,33 @@ msgstr "Arquivar pré-visualização"
msgid "Open File"
msgstr "Abrir Arquivo"
# AI Translated
msgid "AMS Dryness Control"
msgstr "Controle de secura do AMS"
msgstr "Controle de Secura do AMS"
# AI Translated
msgid "Filament Drying Settings"
msgstr "Configurações de secagem de filamento"
msgstr "Configurações de Secagem de Filamento"
msgid "Stopping"
msgstr "Parando"
# AI Translated
msgid "Unable to dry temporarily due to ..."
msgstr "Não é possível secar temporariamente devido a ..."
msgstr "Não é possível secar temporariamente devido a"
msgid "Drying Error"
msgstr "Erro de Secagem"
# AI Translated
msgid "Please check the Assistant for troubleshooting"
msgstr "Por favor, verifique o Assistente para solução de problemas"
# AI Translated
msgid "Please remove and store the filament (as shown)."
msgstr "Por favor, remova e guarde o filamento (como mostrado)."
# AI Translated
msgid "The AMS can rotate the filament which is properly stored, providing better drying results."
msgstr "O AMS pode girar o filamento que está corretamente armazenado, proporcionando melhores resultados de secagem."
msgid "Rotate spool when drying"
msgstr "Girar o carretel durante a secagem"
# AI Translated
msgctxt "amsdrying"
msgid "Back"
msgstr "Voltar"
@@ -20649,11 +20599,9 @@ msgstr " temperatura mínima de secagem é "
msgid "This filament may not be completely dried."
msgstr "Este filamento pode não estar completamente seco."
# AI Translated
msgid "This AMS is currently printing. To ensure print quality, the drying temperature cannot exceed the recommended drying temperature."
msgstr "Este AMS está imprimindo no momento. Para garantir a qualidade da impressão, a temperatura de secagem não pode exceder a temperatura de secagem recomendada."
# AI Translated
msgid "The temperature shall not exceed the filament's heat distortion temperature"
msgstr "A temperatura não deve exceder a temperatura de distorção térmica do filamento"
@@ -20666,22 +20614,18 @@ msgstr "O valor máximo de tempo não pode ser superior a 24."
msgid "Insufficient power"
msgstr "Potência insuficiente"
# AI Translated
msgid " Too many AMS drying simultaneously. Please plug in the power or stop other drying processes before starting."
msgstr " Muitos AMS secando simultaneamente. Por favor, conecte à energia ou pare outros processos de secagem antes de iniciar."
msgid "AMS is busy"
msgstr "O AMS está ocupado"
# AI Translated
msgid " AMS is calibrating | reading RFID | loading/unloading material, please wait."
msgstr " O AMS está calibrando | lendo RFID | carregando/descarregando material, por favor aguarde."
# AI Translated
msgid "Filament in AMS outlet"
msgstr "Filamento na saída do AMS"
# AI Translated
msgid " The high drying temperature may cause AMS blockage, please unload first."
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS, por favor descarregue primeiro."
@@ -20694,18 +20638,15 @@ msgstr "Não suportado no modo 2D"
msgid "Task in progress"
msgstr "Tarefa em progresso"
# AI Translated
msgid " The AMS might be in use during Task."
msgstr " O AMS pode estar em uso durante a Tarefa."
msgid " Firmware update in progress, please wait..."
msgstr " Atualização de firmware em progresso, por favor aguarde..."
msgstr " Atualização de firmware em progresso, por favor aguarde"
# AI Translated
msgid " Please plug in the power and then use the drying function."
msgstr " Por favor, conecte à energia e depois use a função de secagem."
msgstr " Por favor, conecte à energia e então use a função de secagem."
# AI Translated
msgid " The high drying temperature may cause AMS blockage. Please unload the filament manually before proceeding."
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS. Por favor, descarregue o filamento manualmente antes de prosseguir."
@@ -20713,7 +20654,7 @@ msgid "System is busy"
msgstr "O sistema está ocupado"
msgid " Initiating other drying processes, please wait a few seconds..."
msgstr " Iniciando outros processos de secagem, por favor aguarde alguns segundos..."
msgstr " Iniciando outros processos de secagem, por favor aguarde alguns segundos"
msgid "For better drying results, remove the filament and allow it to rotate."
msgstr "Para obter melhores resultados de secagem, remova o filamento e permita que ele gire."
@@ -21078,17 +21019,6 @@ msgstr ""
#~ msgid "Rear"
#~ msgstr "Traseira"
# AI Translated
#, boost-format
#~ msgid ""
#~ "Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
#~ "Please report to PrusaSlicer team in which scenario this issue happened.\n"
#~ "Thank you."
#~ msgstr ""
#~ "Os objetos(%1%) têm conectores duplicados. Alguns conectores podem estar faltando no resultado do fatiamento.\n"
#~ "Por favor, informe à equipe do PrusaSlicer em qual cenário esse problema ocorreu.\n"
#~ "Obrigado."
#~ msgid "Skip for Now"
#~ msgstr "Pular por Enquanto"

File diff suppressed because it is too large Load Diff

View File

@@ -9088,24 +9088,24 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Ersatt med 3D-filer från mappen:\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Hoppade över %1%: samma fil.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Hoppade över %s: samma fil.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Hoppade över %1%: filen finns inte.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Hoppade över %s: filen finns inte.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Hoppade över %1%: det gick inte att ersätta.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Hoppade över %s: det gick inte att ersätta.\n"
# AI Translated
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Ersatte %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Ersatte %s.\n"
# AI Translated
msgid "Replaced volumes"

View File

@@ -8199,21 +8199,21 @@ msgstr "ไม่ได้เลือกไดเรกทอรีสำหร
msgid "Replaced with 3D files from directory:\n"
msgstr "แทนที่ด้วยไฟล์ 3D จากไดเรกทอรี:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ ข้าม %1%: ไฟล์เดียวกัน\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ ข้าม %s: ไฟล์เดียวกัน\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ ข้าม %1%: ไม่มีไฟล์อยู่\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ ข้าม %s: ไม่มีไฟล์อยู่\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ ข้าม %1%: ไม่สามารถแทนที่ได้\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ ข้าม %s: ไม่สามารถแทนที่ได้\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔แทนที่ %1%\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔แทนที่ %s\n"
msgid "Replaced volumes"
msgstr "ปริมาณที่ถูกแทนที่"

View File

@@ -8335,21 +8335,21 @@ msgstr "Değiştirme için dizin seçilmedi"
msgid "Replaced with 3D files from directory:\n"
msgstr "Dizindeki 3D dosyalarla değiştirildi:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ %1% atlandı: aynı dosya.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s atlandı: aynı dosya.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ %1% atlandı: dosya mevcut değil.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s atlandı: dosya mevcut değil.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ %1% atlandı: değiştirilemedi.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s atlandı: değiştirilemedi.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ %1% değiştirildi.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s değiştirildi.\n"
msgid "Replaced volumes"
msgstr "Değiştirilen birimler"

View File

@@ -8306,21 +8306,21 @@ msgstr "Каталог для заміни не вибрано"
msgid "Replaced with 3D files from directory:\n"
msgstr "Замінено 3D-файлами з каталогу:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Пропущено %1%: той самий файл.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Пропущено %s: той самий файл.\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Пропущено %1%: файл не існує.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Пропущено %s: файл не існує.\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Пропущено %1%: не вдалося замінити.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Пропущено %s: не вдалося замінити.\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Замінено %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Замінено %s.\n"
msgid "Replaced volumes"
msgstr "Замінені обʼєми"

View File

@@ -8721,24 +8721,24 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Đã thay thế bằng file 3D từ thư mục:\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ Đã bỏ qua %1%: cùng một file.\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Đã bỏ qua %s: cùng một file.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ Đã bỏ qua %1%: file không tồn tại.\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Đã bỏ qua %s: file không tồn tại.\n"
# AI Translated
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ Đã bỏ qua %1%: thay thế thất bại.\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Đã bỏ qua %s: thay thế thất bại.\n"
# AI Translated
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ Đã thay thế %1%.\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Đã thay thế %s.\n"
# AI Translated
msgid "Replaced volumes"

View File

@@ -8028,21 +8028,21 @@ msgstr "未选择替换目录"
msgid "Replaced with 3D files from directory:\n"
msgstr "替换为目录中的 3D 文件:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ 跳过 %1%:同一文件。\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ 跳过 %s:同一文件。\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ 跳过%1%:文件不存在。\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ 跳过%s:文件不存在。\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ 跳过%1%:替换失败。\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ 跳过%s:替换失败。\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ 替换了 %1%。\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ 替换了 %s。\n"
msgid "Replaced volumes"
msgstr "替换的卷"

View File

@@ -8193,21 +8193,21 @@ msgstr "未選擇替換的目錄"
msgid "Replaced with 3D files from directory:\n"
msgstr "已從目錄替換為 3D 檔案:\n"
#, boost-format
msgid "✖ Skipped %1%: same file.\n"
msgstr "✖ 已跳過 %1%:相同檔案。\n"
#, c-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ 已跳過 %s:相同檔案。\n"
#, boost-format
msgid "✖ Skipped %1%: file does not exist.\n"
msgstr "✖ 已跳過 %1%:檔案不存在。\n"
#, c-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ 已跳過 %s:檔案不存在。\n"
#, boost-format
msgid "✖ Skipped %1%: failed to replace.\n"
msgstr "✖ 已跳過 %1%:無法替換。\n"
#, c-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ 已跳過 %s:無法替換。\n"
#, boost-format
msgid "✔ Replaced %1%.\n"
msgstr "✔ 已替換 %1%。\n"
#, c-format
msgid "✔ Replaced %s.\n"
msgstr "✔ 已替換 %s。\n"
msgid "Replaced volumes"
msgstr "已替換體積"

View File

@@ -1,6 +1,6 @@
{
"name": "Creality",
"version": "02.03.02.75",
"version": "02.03.02.76",
"force_update": "0",
"description": "Creality configurations",
"machine_model_list": [

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -38,7 +38,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -38,7 +38,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -128,7 +128,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -124,7 +124,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -38,7 +38,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -128,7 +128,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -128,7 +128,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -38,7 +38,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -38,7 +38,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -39,7 +39,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",

View File

@@ -126,7 +126,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -38,7 +38,7 @@
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enable_prime_tower": "0",
"enable_support": "0",

View File

@@ -126,7 +126,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -126,7 +126,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -126,7 +126,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -126,7 +126,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -126,7 +126,7 @@
"detect_narrow_internal_solid_infill": "1",
"dont_filter_internal_bridges": "disabled",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_arc_fitting": "0",
"enable_overhang_speed": "1",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",

View File

@@ -1,6 +1,6 @@
{
"name": "Custom Printer",
"version": "02.04.00.02",
"version": "02.04.00.03",
"force_update": "0",
"description": "My configurations",
"machine_model_list": [

View File

@@ -6,6 +6,7 @@
"instantiation": "false",
"gcode_flavor": "klipper",
"single_extruder_multi_material": "0",
"wait_for_temp_on_wipe_tower": "1",
"default_filament_profile": [
"Generic PLA @MyToolChanger"
],

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "v4Of6ePWz1oGVLqU",
"name": "Bambu ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "K3KqxJ3z6lSKoCsQ",
"name": "Bambu ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "D3OOS6ShJDdn4dlU",
"name": "Bambu ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "8zWM4mqGjwjy2yJb",
"name": "Bambu ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.011"
],
"slow_down_min_speed": [
"10"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,105 @@
{
"type": "filament",
"filament_id": "GFB99",
"name": "Bambu ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"chamber_temperatures": [
"55"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"20"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.05"
],
"filament_flow_ratio": [
"0.95"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"Bambu Lab"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"260"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.035"
],
"slow_down_layer_time": [
"4"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "ed9ZVS66ll61akjK",
"name": "Bambu PETG @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "mPLqTb7smgIDOZTg",
"name": "Bambu PETG @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "A3K4JfwyqUnciD2e",
"name": "Bambu PETG @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "4qjG4MYXmLPJ5Qjm",
"name": "Bambu PETG @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,102 @@
{
"type": "filament",
"filament_id": "GFG99",
"name": "Bambu PETG@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"60"
],
"cool_plate_temp": [
"60"
],
"eng_plate_temp_initial_layer": [
"80"
],
"eng_plate_temp": [
"80"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"13"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"Bambu Lab"
],
"hot_plate_temp_initial_layer": [
"80"
],
"hot_plate_temp": [
"80"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"pressure_advance": [
"0.056"
],
"slow_down_layer_time": [
"8"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"supertack_plate_temp": [
"60"
],
"temperature_vitrification": [
"70"
],
"textured_plate_temp_initial_layer": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_cool_plate_temp_initial_layer": [
"60"
],
"textured_cool_plate_temp": [
"60"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "cI5eJwzwoecS97SU",
"name": "Bambu PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "UP5ST3BYA3nWaT5i",
"name": "Bambu PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "jSFJn0WmV76aBwPt",
"name": "Bambu PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"pressure_advance": [
"0.016"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "MYCn1SS32p63RzX0",
"name": "Bambu PLA @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,54 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "Bambu PLA@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"filament_adhesiveness_category": [
"100"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Bambu Lab"
],
"additional_cooling_fan_speed": [
"100"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature": [
"210"
],
"overhang_fan_threshold": [
"50%"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "xxRxeoAbiYJcH1P4",
"name": "Generic ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "MM6yfNPfpCtbsm2M",
"name": "Generic ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "BIiPt2AExUkASm2F",
"name": "Generic ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"24.5"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "VzKqGnik79qlJ1bA",
"name": "Generic ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"24.5"
],
"pressure_advance": [
"0.011"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "QD_4_0_11",
"name": "Generic ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.04"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"17"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.021"
],
"slow_down_layer_time": [
"4"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,23 @@
{
"type": "filament",
"setting_id": "ERbh7DQQfK7A623W",
"name": "Generic PC @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.94"
],
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.04"
],
"chamber_temperatures": [
"0"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "MK8OyxUEziAeEbXk",
"name": "Generic PC @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"10"
],
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "EQIfBmyVNumOKVWU",
"name": "Generic PC @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"10"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "FsTuQT5hxmfjHyVZ",
"name": "Generic PC @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"10"
],
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "QD_4_0_23",
"name": "Generic PC@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"65"
],
"chamber_temperatures": [
"60"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"0"
],
"cool_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"110"
],
"eng_plate_temp": [
"110"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"500"
],
"filament_density": [
"1.04"
],
"filament_max_volumetric_speed": [
"10"
],
"filament_type": [
"PC"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"110"
],
"hot_plate_temp": [
"110"
],
"nozzle_temperature_initial_layer": [
"270"
],
"nozzle_temperature_range_high": [
"290"
],
"nozzle_temperature_range_low": [
"260"
],
"nozzle_temperature": [
"280"
],
"overhang_fan_speed": [
"60"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.021"
],
"slow_down_layer_time": [
"2"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"supertack_plate_temp": [
"0"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"110"
],
"textured_plate_temp": [
"110"
],
"textured_cool_plate_temp_initial_layer": [
"0"
],
"textured_cool_plate_temp": [
"0"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "KaxkabCgu6EWZBzj",
"name": "Generic PETG @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "ckqzES7LsTgYKKhb",
"name": "Generic PETG @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "1ID4LaQVZN4WjJ4v",
"name": "Generic PETG @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "yzkFoRA3R01K3lCa",
"name": "Generic PETG @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,105 @@
{
"type": "filament",
"filament_id": "QD_4_0_41",
"name": "Generic PETG@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"60"
],
"cool_plate_temp": [
"60"
],
"eng_plate_temp_initial_layer": [
"80"
],
"eng_plate_temp": [
"80"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_density": [
"1.27"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"80"
],
"hot_plate_temp": [
"80"
],
"nozzle_temperature_initial_layer": [
"245"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"pressure_advance": [
"0.056"
],
"slow_down_layer_time": [
"12"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"supertack_plate_temp": [
"60"
],
"temperature_vitrification": [
"70"
],
"textured_plate_temp_initial_layer": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_cool_plate_temp_initial_layer": [
"60"
],
"textured_cool_plate_temp": [
"60"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "m5zUk3OpAayCbBwF",
"name": "Generic PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "5Eorr9nKVhLbnYAZ",
"name": "Generic PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "nqOawjrkU2lp3P0K",
"name": "Generic PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"pressure_advance": [
"0.016"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

Some files were not shown because too many files have changed in this diff Show More