mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-27 10:51:22 +00:00
Compare commits
69
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77a64c300a | ||
|
|
0051768206 | ||
|
|
1d078e005a | ||
|
|
82759d3899 | ||
|
|
59155f26ac | ||
|
|
ee117d009a | ||
|
|
8a95c6d507 | ||
|
|
e8e5ce2ba0 | ||
|
|
8d2196d4a6 | ||
|
|
40eab797c6 | ||
|
|
ca7fbfb007 | ||
|
|
7b404596e9 | ||
|
|
06ef58bad8 | ||
|
|
74c4a7e450 | ||
|
|
dbb991bf07 | ||
|
|
66d3f3f9c3 | ||
|
|
4303d723a1 | ||
|
|
132086933f | ||
|
|
4d81f0c181 | ||
|
|
1e0fb1a0ae | ||
|
|
72998ddda2 | ||
|
|
4d421918ef | ||
|
|
0f48ad4157 | ||
|
|
6b5c8af1c8 | ||
|
|
e72a3a65b2 | ||
|
|
1b71835337 | ||
|
|
f9fa1c117f | ||
|
|
6f3ca7d1b9 | ||
|
|
13ae3a1c90 | ||
|
|
fb36d5e73b | ||
|
|
abb2ab8d3f | ||
|
|
97a7eb459f | ||
|
|
9abec76af1 | ||
|
|
95b781745d | ||
|
|
80e64f80a6 | ||
|
|
477208a969 | ||
|
|
2e08b19d6b | ||
|
|
8b67ee0e2f | ||
|
|
7ebcf3e1e5 | ||
|
|
d7341e981b | ||
|
|
1d30019679 | ||
|
|
ea7117b7ca | ||
|
|
603a8f9c8f | ||
|
|
6a2a57bdf4 | ||
|
|
c8aacea176 | ||
|
|
4824a171f1 | ||
|
|
101f43b2d8 | ||
|
|
e01ac1f0a6 | ||
|
|
b51db32bb5 | ||
|
|
603b02f0e7 | ||
|
|
54dc5a2f1d | ||
|
|
303be94262 | ||
|
|
58bad17af9 | ||
|
|
ddce030322 | ||
|
|
2d4b431d5f | ||
|
|
27c468754c | ||
|
|
88632710d5 | ||
|
|
d434e35488 | ||
|
|
7bd53b1283 | ||
|
|
6489b4cad3 | ||
|
|
29d4513694 | ||
|
|
0dc14aa876 | ||
|
|
013a9452af | ||
|
|
5ede9711f5 | ||
|
|
6bcb809dd0 | ||
|
|
33dfb66aa5 | ||
|
|
ef7bfeda9c | ||
|
|
47ccca7f72 | ||
|
|
04e13200aa |
@@ -30,6 +30,7 @@ ctest --test-dir ./tests/fff_print
|
|||||||
- C++17, selective C++20. PascalCase classes, snake_case functions/variables
|
- C++17, selective C++20. PascalCase classes, snake_case functions/variables
|
||||||
- `#pragma once` for headers. Smart pointers and RAII preferred
|
- `#pragma once` for headers. Smart pointers and RAII preferred
|
||||||
- Parallelization via TBB — be mindful of shared state
|
- Parallelization via TBB — be mindful of shared state
|
||||||
|
- Always use `SetSizerAndFit(sizer)` instead of `SetSizer(sizer)` on top level window. Unless `SetSizer` must be called before the full layout is built, call `sizer->SetSizeHints(window)` afterwards in this case.
|
||||||
|
|
||||||
## Key Entry Points
|
## Key Entry Points
|
||||||
|
|
||||||
@@ -59,7 +60,31 @@ ctest --test-dir ./tests/fff_print
|
|||||||
|
|
||||||
## Localization & translations
|
## Localization & translations
|
||||||
|
|
||||||
- Translation catalogs live in `localization/i18n/<lang>/OrcaSlicer_<lang>.po`.
|
Catalogs live in `localization/i18n/<lang>/OrcaSlicer_<lang>.po`; the template is `OrcaSlicer.pot`.
|
||||||
- When creating or reviewing translations, use the [Localization glossary](https://github.com/OrcaSlicer/OrcaSlicer_WIKI/blob/main/guides/localization_glossary.md) as the source of truth for recurring terms, so the same English term is always rendered the same way within a language and terms that must stay in English (brand/product names, acronyms, file formats, G-code, macros/variables) are not translated.
|
See the [Localization guide](https://github.com/OrcaSlicer/OrcaSlicer_WIKI/blob/main/guides/localization_guide.md) for the human-facing version of these principles.
|
||||||
- If a term's established translation changes, update both the affected `.po` files and the glossary so they stay in sync.
|
|
||||||
- Only edit `msgstr` (never `msgid`); keep placeholders (`%s`, `%1%`, `\n`), context (`msgctxt`), and file encoding/line endings intact.
|
### Terminology
|
||||||
|
|
||||||
|
- Use the [Localization glossary](https://github.com/OrcaSlicer/OrcaSlicer_WIKI/blob/main/guides/localization_glossary.md) as the source of truth for recurring terms, so the same English term is always rendered the same way within a language, and terms that must stay in English (brand/product names, acronyms, materials, file formats, G-code tokens, macros/variables/identifiers) are not translated.
|
||||||
|
- If a term's established translation changes, update both the affected `.po` files and the glossary (`localization_glossary.tsv`, then regenerate) so they stay in sync.
|
||||||
|
- Translate the *meaning*, not the words. Check what the string actually controls before translating it — English reuses one word for different things. `Flow ratio` (multiplier), `Flow Rate` (throughput) and `Flow Dynamics` (pressure compensation) are three different terms; `extruder` may mean the toolhead, the feeder motor, or the nozzle depending on the string.
|
||||||
|
- Reuse one template per recurring message shape (`Failed to connect to …`, `Are you sure you want to …?`), even where the English wording varies.
|
||||||
|
|
||||||
|
### Editing rules
|
||||||
|
|
||||||
|
- Only edit `msgstr` — **never** change `msgid`, and never "fix" wrong English in the translation alone. Report the source string instead.
|
||||||
|
- Preserve exactly: placeholders (`%s`, `%d`, `%1%`, `%zu`, `%%`), every `\n` (count *and* position, including leading/trailing), leading/trailing spaces, HTML tags, `℃`, and the file's encoding and line endings.
|
||||||
|
- **Never reorder positional arguments** in a `c-format` string. If the msgid is `%d` then `%s`, that order must hold — swapping them breaks at runtime.
|
||||||
|
- `msgctxt` separates homonyms — always read it. `Back`/`Camera View` is the rear view of the 3D navigator, while `Back`/`Navigation` is the go-back button; `Top` exists in the *Alignment*, *Layers* and *Camera View* senses.
|
||||||
|
- When a string needs disambiguating, add context in the source (`_L_CONTEXT`/`_u8L_CONTEXT`), don't work around it in the translation.
|
||||||
|
- A literal `%` inside a string xgettext flagged `possible-c-format` will fail `msgfmt`. Fix it with a `// xgettext:no-c-format, no-boost-format` comment above the string in the source — do not mangle the translation or use `%%` in text that is never passed through printf.
|
||||||
|
- Plural entries: read `nplurals` from the catalog's `Plural-Forms` header (it is **not** always 2 — ja/ko/zh/th/vi use 1, ru/cs/pl/lt use 3, uk uses 4). Each form must be genuinely inflected for its quantity; repeating one sentence across all forms is a bug in Slavic/Baltic languages, though it is correct for Turkish and Hungarian.
|
||||||
|
- An entry whose `msgstr` equals its `msgid` is untranslated even though it is not empty; a plural entry with any empty form is likewise incomplete.
|
||||||
|
- Mark machine-produced translations with an `# AI Translated` translator comment. Don't add it to a human translation you didn't actually rewrite.
|
||||||
|
- Don't reflow or re-wrap unrelated entries — keep the diff limited to the strings you changed.
|
||||||
|
|
||||||
|
### Verifying
|
||||||
|
|
||||||
|
- `scripts/run_gettext.bat --full` (Windows) regenerates the template, merges every catalog and compiles the `.mo` files. It must exit 0.
|
||||||
|
- Or check a single catalog with `msgfmt --check-format -o <out>.mo localization/i18n/<lang>/OrcaSlicer_<lang>.po`.
|
||||||
|
- Fuzzy entries are not shown to users. If you correct one, clear its `fuzzy` flag, otherwise the fix never ships.
|
||||||
|
|||||||
@@ -80,8 +80,12 @@ endif()
|
|||||||
|
|
||||||
if (DEFINED BBL_RELEASE_TO_PUBLIC)
|
if (DEFINED BBL_RELEASE_TO_PUBLIC)
|
||||||
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=${BBL_RELEASE_TO_PUBLIC}")
|
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=${BBL_RELEASE_TO_PUBLIC}")
|
||||||
|
if (BBL_RELEASE_TO_PUBLIC)
|
||||||
|
add_compile_definitions(WXINSPECTOR_DISABLE)
|
||||||
|
endif ()
|
||||||
else ()
|
else ()
|
||||||
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=$<CONFIG:Release>")
|
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=$<CONFIG:Release>")
|
||||||
|
add_compile_definitions("$<$<CONFIG:Release>:WXINSPECTOR_DISABLE>")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
find_package(Git)
|
find_package(Git)
|
||||||
|
|||||||
@@ -119,6 +119,10 @@ Download the **Windows Installer exe** for your preferred version from the [rele
|
|||||||
- This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142`
|
- This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142`
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
### Microsoft Store
|
||||||
|
|
||||||
|
Install from the [Microsoft Store](https://apps.microsoft.com/detail/9mv6gl23xm59) when you prefer a Store-signed package (helps on Windows 11 Smart App Control).
|
||||||
|
|
||||||
### Windows Package Manager
|
### Windows Package Manager
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
|
|||||||
Vendored
+8
@@ -52,6 +52,14 @@ ExternalProject_Add(dep_OpenSSL
|
|||||||
CONFIGURE_COMMAND ${_conf_cmd} ${_cross_arch}
|
CONFIGURE_COMMAND ${_conf_cmd} ${_cross_arch}
|
||||||
"--openssldir=${DESTDIR}"
|
"--openssldir=${DESTDIR}"
|
||||||
"--prefix=${DESTDIR}"
|
"--prefix=${DESTDIR}"
|
||||||
|
# OpenSSL's linux-x86_64 target sets multilib=64, so it installs to
|
||||||
|
# <prefix>/lib64 while every other dep uses <prefix>/lib. CPython's
|
||||||
|
# --with-openssl only ever emits -L<dir>/lib, so it misses the bundled
|
||||||
|
# static libs and silently links the system OpenSSL instead -- which,
|
||||||
|
# against 1.1.1w headers, leaves _ssl.so with an undefined
|
||||||
|
# SSL_get_peer_certificate (removed in OpenSSL 3.x). Pin libdir so the
|
||||||
|
# prefix stays single-layout.
|
||||||
|
"--libdir=lib"
|
||||||
${_cross_comp_prefix_line}
|
${_cross_comp_prefix_line}
|
||||||
no-shared
|
no-shared
|
||||||
no-asm
|
no-asm
|
||||||
|
|||||||
@@ -465,6 +465,57 @@ static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *stat
|
|||||||
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
y = r.ymin;
|
y = r.ymin;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// In multi-line mode, clamp y to stay within the text vertical bounds.
|
||||||
|
// This lets the click still land at a valid location if the mouse is slightly
|
||||||
|
// above or below the text.
|
||||||
|
StbTexteditRow r;
|
||||||
|
int n = STB_TEXTEDIT_STRINGLEN(str);
|
||||||
|
int i = 0;
|
||||||
|
float base_y = 0, y_min, y_max;
|
||||||
|
|
||||||
|
// Get the first row to establish y_min and start the iteration
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
{
|
||||||
|
state->cursor = 0;
|
||||||
|
state->select_start = state->cursor;
|
||||||
|
state->select_end = state->cursor;
|
||||||
|
state->has_preferred_x = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
y_min = r.ymin;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i = r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
|
||||||
|
// Walk the remaining rows to find the bottom of the last row
|
||||||
|
while (i < n)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, i);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
break;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i += r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the text ends with a newline, account for the empty trailing line
|
||||||
|
// so the cursor can be placed on it
|
||||||
|
if (n > 0 && STB_TEXTEDIT_GETCHAR(str, n - 1) == STB_TEXTEDIT_NEWLINE)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, n);
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtract half the last line height to avoid rounding issues when the mouse
|
||||||
|
// is just barely below the last line (keep cursor on the last line, not after the text)
|
||||||
|
y_max -= (r.ymax - r.ymin) * 0.5f;
|
||||||
|
|
||||||
|
if (y < y_min) y = y_min;
|
||||||
|
if (y > y_max) y = y_max;
|
||||||
|
}
|
||||||
|
|
||||||
state->cursor = stb_text_locate_coord(str, x, y);
|
state->cursor = stb_text_locate_coord(str, x, y);
|
||||||
state->select_start = state->cursor;
|
state->select_start = state->cursor;
|
||||||
@@ -485,6 +536,50 @@ static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state
|
|||||||
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
y = r.ymin;
|
y = r.ymin;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// In multi-line mode, clamp y to stay within the text vertical bounds.
|
||||||
|
// This lets the drag keep working if the mouse goes off the top or bottom of the text.
|
||||||
|
StbTexteditRow r;
|
||||||
|
int n = STB_TEXTEDIT_STRINGLEN(str);
|
||||||
|
int i = 0;
|
||||||
|
float base_y = 0, y_min, y_max;
|
||||||
|
|
||||||
|
// Get the first row to establish y_min and start the iteration
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
return;
|
||||||
|
y_min = r.ymin;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i = r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
|
||||||
|
// Walk the remaining rows to find the bottom of the last row
|
||||||
|
while (i < n)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, i);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
break;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i += r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the text ends with a newline, account for the empty trailing line
|
||||||
|
// so the cursor can be placed on it
|
||||||
|
if (n > 0 && STB_TEXTEDIT_GETCHAR(str, n - 1) == STB_TEXTEDIT_NEWLINE)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, n);
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtract half the last line height to avoid rounding issues when the mouse
|
||||||
|
// is just barely below the last line (keep cursor on the last line, not after the text)
|
||||||
|
y_max -= (r.ymax - r.ymin) * 0.5f;
|
||||||
|
|
||||||
|
if (y < y_min) y = y_min;
|
||||||
|
if (y > y_max) y = y_max;
|
||||||
|
}
|
||||||
|
|
||||||
if (state->select_start == state->select_end)
|
if (state->select_start == state->select_end)
|
||||||
state->select_start = state->cursor;
|
state->select_start = state->cursor;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-07-23 15:24-0300\n"
|
"POT-Creation-Date: 2026-07-29 17:40-0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -982,7 +982,7 @@ msgstr ""
|
|||||||
#, possible-boost-format
|
#, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
|
"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"
|
"Please report to the OrcaSlicer team in which scenario this issue happened.\n"
|
||||||
"Thank you."
|
"Thank you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3385,7 +3385,6 @@ msgstr ""
|
|||||||
msgid "Innerloop"
|
msgid "Innerloop"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRN To be shown in the main menu View->Top
|
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3609,6 +3608,9 @@ msgstr ""
|
|||||||
msgid "Arranging"
|
msgid "Arranging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Arranging "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Arranging canceled."
|
msgid "Arranging canceled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5470,10 +5472,24 @@ msgstr ""
|
|||||||
msgid "Align to Y axis"
|
msgid "Align to Y axis"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Front"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "Camera View"
|
msgctxt "Camera View"
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN To be shown in the main menu View->Top
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN To be shown in the main menu View->Bottom
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Bottom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "Camera View"
|
msgctxt "Camera View"
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5854,19 +5870,13 @@ msgstr ""
|
|||||||
msgid "Top View"
|
msgid "Top View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRN To be shown in the main menu View->Bottom
|
|
||||||
msgid "Bottom"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Bottom View"
|
msgid "Bottom View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Front"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Front View"
|
msgid "Front View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "Camera View"
|
||||||
msgid "Rear"
|
msgid "Rear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8654,6 +8664,17 @@ msgstr ""
|
|||||||
msgid "When scrubbing the layer slider in the sliced preview, render the layers below the current one darkened so that only the layer being viewed is shown at full brightness."
|
msgid "When scrubbing the layer slider in the sliced preview, render the layers below the current one darkened so that only the layer being viewed is shown at full brightness."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Dimmed layer brightness"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"How brightly the dimmed layers are rendered when \"Dim lower layers\" is enabled.\n"
|
||||||
|
"99% is barely darkened, 0% renders them black. Capped at 99% because 100% would be the same as disabling the option."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Login region"
|
msgid "Login region"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12350,12 +12371,26 @@ msgstr ""
|
|||||||
msgid "Intra-layer order"
|
msgid "Intra-layer order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Print order within a single layer."
|
msgid ""
|
||||||
|
"Order in which object instances are visited within a single layer, which controls how much travel is spent moving between them.\n"
|
||||||
|
"\n"
|
||||||
|
"Default: nearest-neighbor chaining, refined with 2-opt and crossing removal. A good general choice.\n"
|
||||||
|
"As object list: instances are printed in the same order as the object list, without any path optimization. Use it when you need a predictable, manually controlled order.\n"
|
||||||
|
"Best of all (shortest path): every strategy is evaluated and the shortest one is used. The object instance order is decided once for the whole print, while the ordering of individual islands is decided per layer, so different layers may end up using different strategies. Slightly slower to slice.\n"
|
||||||
|
"Snake: serpentine row-by-row traversal, refined with 2-opt. Well suited to regular grids of many small parts.\n"
|
||||||
|
"\n"
|
||||||
|
"With multiple filaments or tools in the same layer, minimizing tool changes takes priority: objects are grouped by filament first and this setting only orders the instances within each filament group, so the overall sequence may not look like the shortest path across the plate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "As object list"
|
msgid "As object list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Best of all (shortest path)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Snake"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Slow printing down for better layer cooling"
|
msgid "Slow printing down for better layer cooling"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -14729,7 +14764,7 @@ msgstr ""
|
|||||||
msgid "Retract amount after wipe"
|
msgid "Retract amount after wipe"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The length of fast retraction after wipe, relative to retraction length.\n"
|
"The length of fast retraction after wipe, relative to retraction length.\n"
|
||||||
"The value will be clamped by 100% minus the retract amount before the wipe value."
|
"The value will be clamped by 100% minus the retract amount before the wipe value."
|
||||||
@@ -17211,6 +17246,15 @@ msgid ""
|
|||||||
"Please select one that should be used."
|
"Please select one that should be used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Auto-scale for nozzle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
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"
|
||||||
|
"Turn scaling off only if you wish to print the reference model exactly as-is."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "PA Calibration"
|
msgid "PA Calibration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17333,6 +17377,12 @@ msgstr ""
|
|||||||
msgid "End speed: "
|
msgid "End speed: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Auto-adjust to max volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
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 ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please input valid values:\n"
|
"Please input valid values:\n"
|
||||||
"start > 10\n"
|
"start > 10\n"
|
||||||
@@ -17340,6 +17390,39 @@ msgid ""
|
|||||||
"end > start + step"
|
"end > start + step"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-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"
|
||||||
|
" Speeds above this will be clamped, so the upper blocks of the tower will not print at the requested speed.\n"
|
||||||
|
"\n"
|
||||||
|
"%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-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"
|
||||||
|
"\n"
|
||||||
|
"The layer height has been reduced to %.2f mm (a value used by this printer's profiles) so the tower can reach the requested speed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-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"
|
||||||
|
"\n"
|
||||||
|
"The layer height will be set to %.2f mm and the end speed lowered to %.0f mm/s.\n"
|
||||||
|
"\n"
|
||||||
|
"Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Continue anyway?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Start retraction length: "
|
msgid "Start retraction length: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+2410
-1426
File diff suppressed because it is too large
Load Diff
+2331
-1395
File diff suppressed because it is too large
Load Diff
+1142
-925
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-07-23 15:24-0300\n"
|
"POT-Creation-Date: 2026-07-29 17:40-0300\n"
|
||||||
"PO-Revision-Date: 2026-06-17 15:44-0300\n"
|
"PO-Revision-Date: 2026-06-17 15:44-0300\n"
|
||||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -978,7 +978,7 @@ msgstr ""
|
|||||||
#, boost-format
|
#, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
|
"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"
|
"Please report to the OrcaSlicer team in which scenario this issue happened.\n"
|
||||||
"Thank you."
|
"Thank you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3381,7 +3381,6 @@ msgstr ""
|
|||||||
msgid "Innerloop"
|
msgid "Innerloop"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRN To be shown in the main menu View->Top
|
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3605,6 +3604,9 @@ msgstr ""
|
|||||||
msgid "Arranging"
|
msgid "Arranging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Arranging "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Arranging canceled."
|
msgid "Arranging canceled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5466,10 +5468,24 @@ msgstr ""
|
|||||||
msgid "Align to Y axis"
|
msgid "Align to Y axis"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Front"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "Camera View"
|
msgctxt "Camera View"
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN To be shown in the main menu View->Top
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN To be shown in the main menu View->Bottom
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Bottom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "Camera View"
|
msgctxt "Camera View"
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -5850,19 +5866,13 @@ msgstr ""
|
|||||||
msgid "Top View"
|
msgid "Top View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRN To be shown in the main menu View->Bottom
|
|
||||||
msgid "Bottom"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Bottom View"
|
msgid "Bottom View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Front"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Front View"
|
msgid "Front View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "Camera View"
|
||||||
msgid "Rear"
|
msgid "Rear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8650,6 +8660,17 @@ msgstr ""
|
|||||||
msgid "When scrubbing the layer slider in the sliced preview, render the layers below the current one darkened so that only the layer being viewed is shown at full brightness."
|
msgid "When scrubbing the layer slider in the sliced preview, render the layers below the current one darkened so that only the layer being viewed is shown at full brightness."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Dimmed layer brightness"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"How brightly the dimmed layers are rendered when \"Dim lower layers\" is enabled.\n"
|
||||||
|
"99% is barely darkened, 0% renders them black. Capped at 99% because 100% would be the same as disabling the option."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Login region"
|
msgid "Login region"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12346,12 +12367,26 @@ msgstr ""
|
|||||||
msgid "Intra-layer order"
|
msgid "Intra-layer order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Print order within a single layer."
|
msgid ""
|
||||||
|
"Order in which object instances are visited within a single layer, which controls how much travel is spent moving between them.\n"
|
||||||
|
"\n"
|
||||||
|
"Default: nearest-neighbor chaining, refined with 2-opt and crossing removal. A good general choice.\n"
|
||||||
|
"As object list: instances are printed in the same order as the object list, without any path optimization. Use it when you need a predictable, manually controlled order.\n"
|
||||||
|
"Best of all (shortest path): every strategy is evaluated and the shortest one is used. The object instance order is decided once for the whole print, while the ordering of individual islands is decided per layer, so different layers may end up using different strategies. Slightly slower to slice.\n"
|
||||||
|
"Snake: serpentine row-by-row traversal, refined with 2-opt. Well suited to regular grids of many small parts.\n"
|
||||||
|
"\n"
|
||||||
|
"With multiple filaments or tools in the same layer, minimizing tool changes takes priority: objects are grouped by filament first and this setting only orders the instances within each filament group, so the overall sequence may not look like the shortest path across the plate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "As object list"
|
msgid "As object list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Best of all (shortest path)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Snake"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Slow printing down for better layer cooling"
|
msgid "Slow printing down for better layer cooling"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -14725,7 +14760,7 @@ msgstr ""
|
|||||||
msgid "Retract amount after wipe"
|
msgid "Retract amount after wipe"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The length of fast retraction after wipe, relative to retraction length.\n"
|
"The length of fast retraction after wipe, relative to retraction length.\n"
|
||||||
"The value will be clamped by 100% minus the retract amount before the wipe value."
|
"The value will be clamped by 100% minus the retract amount before the wipe value."
|
||||||
@@ -17207,6 +17242,15 @@ msgid ""
|
|||||||
"Please select one that should be used."
|
"Please select one that should be used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Auto-scale for nozzle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
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"
|
||||||
|
"Turn scaling off only if you wish to print the reference model exactly as-is."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "PA Calibration"
|
msgid "PA Calibration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17329,6 +17373,12 @@ msgstr ""
|
|||||||
msgid "End speed: "
|
msgid "End speed: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Auto-adjust to max volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
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 ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please input valid values:\n"
|
"Please input valid values:\n"
|
||||||
"start > 10\n"
|
"start > 10\n"
|
||||||
@@ -17336,6 +17386,39 @@ msgid ""
|
|||||||
"end > start + step"
|
"end > start + step"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, 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"
|
||||||
|
" Speeds above this will be clamped, so the upper blocks of the tower will not print at the requested speed.\n"
|
||||||
|
"\n"
|
||||||
|
"%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, 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"
|
||||||
|
"\n"
|
||||||
|
"The layer height has been reduced to %.2f mm (a value used by this printer's profiles) so the tower can reach the requested speed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, 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"
|
||||||
|
"\n"
|
||||||
|
"The layer height will be set to %.2f mm and the end speed lowered to %.0f mm/s.\n"
|
||||||
|
"\n"
|
||||||
|
"Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Continue anyway?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Start retraction length: "
|
msgid "Start retraction length: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-07-23 15:24-0300\n"
|
"POT-Creation-Date: 2026-07-29 17:40-0300\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: Ian A. Bassi <>\n"
|
"Last-Translator: Ian A. Bassi <>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -983,11 +983,11 @@ msgstr "Conector"
|
|||||||
#, boost-format
|
#, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
|
"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"
|
"Please report to the OrcaSlicer team in which scenario this issue happened.\n"
|
||||||
"Thank you."
|
"Thank you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Los objetos(%1%) tienen conectores duplicados. Es posible que falten algunos conectores en el resultado del laminado.\n"
|
"Los objetos(%1%) tienen conectores duplicados. Es posible que falten algunos conectores en el resultado del laminado.\n"
|
||||||
"Informe al equipo de PrusaSlicer sobre el escenario en el que se produjo este problema.\n"
|
"Informe al equipo de OrcaSlicer sobre el escenario en el que se produjo este problema.\n"
|
||||||
"Gracias."
|
"Gracias."
|
||||||
|
|
||||||
msgid "Cut by Plane"
|
msgid "Cut by Plane"
|
||||||
@@ -3459,7 +3459,6 @@ msgstr "Recámara"
|
|||||||
msgid "Innerloop"
|
msgid "Innerloop"
|
||||||
msgstr "Bucle interno"
|
msgstr "Bucle interno"
|
||||||
|
|
||||||
#. TRN To be shown in the main menu View->Top
|
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
@@ -3687,6 +3686,10 @@ msgstr "Organizando..."
|
|||||||
msgid "Arranging"
|
msgid "Arranging"
|
||||||
msgstr "Organizando"
|
msgstr "Organizando"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Arranging "
|
||||||
|
msgstr "Organizando "
|
||||||
|
|
||||||
msgid "Arranging canceled."
|
msgid "Arranging canceled."
|
||||||
msgstr "Organización cancelada."
|
msgstr "Organización cancelada."
|
||||||
|
|
||||||
@@ -5630,10 +5633,27 @@ msgstr "Evitar la zona de calibración del extrusor"
|
|||||||
msgid "Align to Y axis"
|
msgid "Align to Y axis"
|
||||||
msgstr "Alinear con el eje Y"
|
msgstr "Alinear con el eje Y"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Front"
|
||||||
|
msgstr "Frontal"
|
||||||
|
|
||||||
msgctxt "Camera View"
|
msgctxt "Camera View"
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Posterior"
|
msgstr "Posterior"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
#. TRN To be shown in the main menu View->Top
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Top"
|
||||||
|
msgstr "Superior"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
#. TRN To be shown in the main menu View->Bottom
|
||||||
|
msgctxt "Camera View"
|
||||||
|
msgid "Bottom"
|
||||||
|
msgstr "Inferior"
|
||||||
|
|
||||||
msgctxt "Camera View"
|
msgctxt "Camera View"
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Izquierda"
|
msgstr "Izquierda"
|
||||||
@@ -6020,19 +6040,14 @@ msgstr "Vista por Defecto"
|
|||||||
msgid "Top View"
|
msgid "Top View"
|
||||||
msgstr "Vista superior"
|
msgstr "Vista superior"
|
||||||
|
|
||||||
#. TRN To be shown in the main menu View->Bottom
|
|
||||||
msgid "Bottom"
|
|
||||||
msgstr "Inferior"
|
|
||||||
|
|
||||||
msgid "Bottom View"
|
msgid "Bottom View"
|
||||||
msgstr "Vista inferior"
|
msgstr "Vista inferior"
|
||||||
|
|
||||||
msgid "Front"
|
|
||||||
msgstr "Frontal"
|
|
||||||
|
|
||||||
msgid "Front View"
|
msgid "Front View"
|
||||||
msgstr "Vista frontal"
|
msgstr "Vista frontal"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgctxt "Camera View"
|
||||||
msgid "Rear"
|
msgid "Rear"
|
||||||
msgstr "Posterior"
|
msgstr "Posterior"
|
||||||
|
|
||||||
@@ -8920,6 +8935,21 @@ msgstr "Atenuar las capas inferiores"
|
|||||||
msgid "When scrubbing the layer slider in the sliced preview, render the layers below the current one darkened so that only the layer being viewed is shown at full brightness."
|
msgid "When scrubbing the layer slider in the sliced preview, render the layers below the current one darkened so that only the layer being viewed is shown at full brightness."
|
||||||
msgstr "Al desplazar el control deslizante de capas en la vista previa laminada, oscurece las capas inferiores a la actual para que solo la capa visualizada se muestre a pleno brillo."
|
msgstr "Al desplazar el control deslizante de capas en la vista previa laminada, oscurece las capas inferiores a la actual para que solo la capa visualizada se muestre a pleno brillo."
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Dimmed layer brightness"
|
||||||
|
msgstr "Brillo de las capas atenuadas"
|
||||||
|
|
||||||
|
msgid "%"
|
||||||
|
msgstr "%"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid ""
|
||||||
|
"How brightly the dimmed layers are rendered when \"Dim lower layers\" is enabled.\n"
|
||||||
|
"99% is barely darkened, 0% renders them black. Capped at 99% because 100% would be the same as disabling the option."
|
||||||
|
msgstr ""
|
||||||
|
"Con qué brillo se muestran las capas atenuadas cuando \"Atenuar las capas inferiores\" está activado.\n"
|
||||||
|
"99% apenas se oscurece y 0% las muestra en negro. Está limitado al 99% porque el 100% equivaldría a desactivar la opción."
|
||||||
|
|
||||||
msgid "Login region"
|
msgid "Login region"
|
||||||
msgstr "Región de inicio de sesión"
|
msgstr "Región de inicio de sesión"
|
||||||
|
|
||||||
@@ -12870,12 +12900,37 @@ msgstr "Por objeto"
|
|||||||
msgid "Intra-layer order"
|
msgid "Intra-layer order"
|
||||||
msgstr "Orden dentro de la capa"
|
msgstr "Orden dentro de la capa"
|
||||||
|
|
||||||
msgid "Print order within a single layer."
|
# AI Translated
|
||||||
msgstr "Orden de impresión dentro de cada capa."
|
msgid ""
|
||||||
|
"Order in which object instances are visited within a single layer, which controls how much travel is spent moving between them.\n"
|
||||||
|
"\n"
|
||||||
|
"Default: nearest-neighbor chaining, refined with 2-opt and crossing removal. A good general choice.\n"
|
||||||
|
"As object list: instances are printed in the same order as the object list, without any path optimization. Use it when you need a predictable, manually controlled order.\n"
|
||||||
|
"Best of all (shortest path): every strategy is evaluated and the shortest one is used. The object instance order is decided once for the whole print, while the ordering of individual islands is decided per layer, so different layers may end up using different strategies. Slightly slower to slice.\n"
|
||||||
|
"Snake: serpentine row-by-row traversal, refined with 2-opt. Well suited to regular grids of many small parts.\n"
|
||||||
|
"\n"
|
||||||
|
"With multiple filaments or tools in the same layer, minimizing tool changes takes priority: objects are grouped by filament first and this setting only orders the instances within each filament group, so the overall sequence may not look like the shortest path across the plate."
|
||||||
|
msgstr ""
|
||||||
|
"Orden en el que se recorren las instancias de objeto dentro de una misma capa, lo que determina cuánto desplazamiento se emplea para moverse entre ellas.\n"
|
||||||
|
"\n"
|
||||||
|
"Por defecto: encadenado por vecino más cercano, refinado con 2-opt y eliminación de cruces. Una buena opción general.\n"
|
||||||
|
"Como lista de objetos: las instancias se imprimen en el mismo orden que la lista de objetos, sin ninguna optimización de trayectoria. Úselo cuando necesite un orden predecible y controlado manualmente.\n"
|
||||||
|
"La mejor de todas (trayectoria más corta): se evalúan todas las estrategias y se utiliza la más corta. El orden de las instancias de objeto se decide una sola vez para toda la impresión, mientras que el orden de las islas individuales se decide capa por capa, por lo que distintas capas pueden acabar usando estrategias diferentes. El laminado es algo más lento.\n"
|
||||||
|
"Serpentina: recorrido serpenteante fila por fila, refinado con 2-opt. Muy adecuado para rejillas regulares de muchas piezas pequeñas.\n"
|
||||||
|
"\n"
|
||||||
|
"Con varios filamentos o herramientas en la misma capa, minimizar los cambios de herramienta tiene prioridad: los objetos se agrupan primero por filamento y este ajuste solo ordena las instancias dentro de cada grupo de filamento, por lo que la secuencia global puede no parecer la trayectoria más corta a lo largo de la cama."
|
||||||
|
|
||||||
msgid "As object list"
|
msgid "As object list"
|
||||||
msgstr "Como lista de objetos"
|
msgstr "Como lista de objetos"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Best of all (shortest path)"
|
||||||
|
msgstr "La mejor de todas (trayectoria más corta)"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Snake"
|
||||||
|
msgstr "Serpentina"
|
||||||
|
|
||||||
msgid "Slow printing down for better layer cooling"
|
msgid "Slow printing down for better layer cooling"
|
||||||
msgstr "Reducir la velocidad de impresión para mejorar la refrigeración de las capas"
|
msgstr "Reducir la velocidad de impresión para mejorar la refrigeración de las capas"
|
||||||
|
|
||||||
@@ -15490,7 +15545,7 @@ msgstr "La longitud de la retracción rápida antes de la purga, en relación co
|
|||||||
msgid "Retract amount after wipe"
|
msgid "Retract amount after wipe"
|
||||||
msgstr "Cantidad de retracción después de la limpieza"
|
msgstr "Cantidad de retracción después de la limpieza"
|
||||||
|
|
||||||
#, c-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The length of fast retraction after wipe, relative to retraction length.\n"
|
"The length of fast retraction after wipe, relative to retraction length.\n"
|
||||||
"The value will be clamped by 100% minus the retract amount before the wipe value."
|
"The value will be clamped by 100% minus the retract amount before the wipe value."
|
||||||
@@ -18111,6 +18166,20 @@ msgstr ""
|
|||||||
"Hay varias direcciones IP resueltas del nombre del host %1%.\n"
|
"Hay varias direcciones IP resueltas del nombre del host %1%.\n"
|
||||||
"Por favor, seleccione la que debe usarse."
|
"Por favor, seleccione la que debe usarse."
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Auto-scale for nozzle"
|
||||||
|
msgstr "Escalar automáticamente para la boquilla"
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
"Turn scaling off only if you wish to print the reference model exactly as-is."
|
||||||
|
msgstr ""
|
||||||
|
"Este modelo está diseñado para una boquilla de 0,4 mm con una altura de la capa de 0,2 mm. \n"
|
||||||
|
"Cuando la opción de escalado está activada (recomendado), el modelo se redimensiona dinámicamente para adaptarse al diámetro de boquilla actual y a una altura de capa adecuada, lo que hace que la prueba sea precisa y fácil de leer.\n"
|
||||||
|
"Desactive el escalado solo si desea imprimir el modelo de referencia exactamente tal cual."
|
||||||
|
|
||||||
msgid "PA Calibration"
|
msgid "PA Calibration"
|
||||||
msgstr "Calibración PA"
|
msgstr "Calibración PA"
|
||||||
|
|
||||||
@@ -18247,6 +18316,14 @@ msgstr "Velocidad inicial: "
|
|||||||
msgid "End speed: "
|
msgid "End speed: "
|
||||||
msgstr "Velocidad final: "
|
msgstr "Velocidad final: "
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Auto-adjust to max volumetric speed"
|
||||||
|
msgstr "Ajustar automáticamente a la velocidad 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 "Si la velocidad final superara la velocidad volumétrica máxima del filamento, se reduce automáticamente la altura de la capa (manteniendo valores estándar y dentro de los límites de la máquina) para alcanzarla. Si ni siquiera la altura de capa mínima es suficiente, se reduce la velocidad final."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please input valid values:\n"
|
"Please input valid values:\n"
|
||||||
"start > 10\n"
|
"start > 10\n"
|
||||||
@@ -18258,6 +18335,57 @@ msgstr ""
|
|||||||
"incremento >=0\n"
|
"incremento >=0\n"
|
||||||
"final > inicio + paso"
|
"final > inicio + paso"
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
" Speeds above this will be clamped, so the upper blocks of the tower will not print at the requested speed.\n"
|
||||||
|
"\n"
|
||||||
|
"%s"
|
||||||
|
msgstr ""
|
||||||
|
"La velocidad final (%.0f mm/s) supera la velocidad volumétrica máxima del filamento (%.1f mm³/s), lo que limita el perímetro externo a unos %.0f mm/s con este ancho de línea y esta altura de capa.\n"
|
||||||
|
" Las velocidades superiores se recortarán, por lo que los bloques superiores de la torre no se imprimirán a la velocidad 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"
|
||||||
|
"\n"
|
||||||
|
"The layer height has been reduced to %.2f mm (a value used by this printer's profiles) so the tower can reach the requested speed."
|
||||||
|
msgstr ""
|
||||||
|
"La velocidad final (%.0f mm/s) supera la velocidad volumétrica máxima del filamento (%.1f mm³/s) con la altura de capa predeterminada (%.2f mm).\n"
|
||||||
|
"\n"
|
||||||
|
"La altura de la capa se ha reducido a %.2f mm (un valor usado por los perfiles de esta impresora) para que la torre pueda alcanzar la velocidad 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"
|
||||||
|
"\n"
|
||||||
|
"The layer height will be set to %.2f mm and the end speed lowered to %.0f mm/s.\n"
|
||||||
|
"\n"
|
||||||
|
"Continue?"
|
||||||
|
msgstr ""
|
||||||
|
"Incluso con la altura de capa más pequeña usada por los perfiles de esta impresora (%.2f mm), la velocidad final (%.0f mm/s) supera la velocidad volumétrica máxima del filamento (%.1f mm³/s).\n"
|
||||||
|
"\n"
|
||||||
|
"La altura de la capa se establecerá en %.2f mm y la velocidad final se reducirá a %.0f mm/s.\n"
|
||||||
|
"\n"
|
||||||
|
"¿Continuar?"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Continue anyway?"
|
||||||
|
msgstr "¿Continuar de todos modos?"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
|
msgstr "¿Activar \"Ajuste automático\" para corregir esto automáticamente o continuar de todos modos?"
|
||||||
|
|
||||||
|
# AI Translated
|
||||||
|
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
|
msgstr "¿Activar \"Escalar automáticamente para la boquilla\" y \"Ajuste automático\" para corregir esto automáticamente o continuar de todos modos?"
|
||||||
|
|
||||||
msgid "Start retraction length: "
|
msgid "Start retraction length: "
|
||||||
msgstr "Longitud de retracción inicial: "
|
msgstr "Longitud de retracción inicial: "
|
||||||
|
|
||||||
@@ -20733,6 +20861,18 @@ msgstr ""
|
|||||||
"Evita la deformación\n"
|
"Evita la deformación\n"
|
||||||
"¿Sabías que al imprimir materiales propensos a la deformación como el ABS, aumentar adecuadamente la temperatura de la cama térmica puede reducir la probabilidad de deformaciones?"
|
"¿Sabías que al imprimir materiales propensos a la deformación como el ABS, aumentar adecuadamente la temperatura de la cama térmica puede reducir la probabilidad de deformaciones?"
|
||||||
|
|
||||||
|
#~ msgid "Print order within a single layer."
|
||||||
|
#~ msgstr "Orden de impresión dentro de cada capa."
|
||||||
|
|
||||||
|
#~ msgid "Bottom"
|
||||||
|
#~ msgstr "Inferior"
|
||||||
|
|
||||||
|
#~ msgid "Front"
|
||||||
|
#~ msgstr "Frontal"
|
||||||
|
|
||||||
|
#~ msgid "Rear"
|
||||||
|
#~ msgstr "Posterior"
|
||||||
|
|
||||||
#~ msgid "Enter"
|
#~ msgid "Enter"
|
||||||
#~ msgstr "Enter"
|
#~ msgstr "Enter"
|
||||||
|
|
||||||
@@ -20817,9 +20957,6 @@ msgstr ""
|
|||||||
#~ msgid "°C"
|
#~ msgid "°C"
|
||||||
#~ msgstr "°C"
|
#~ msgstr "°C"
|
||||||
|
|
||||||
#~ msgid "%"
|
|
||||||
#~ msgstr "%"
|
|
||||||
|
|
||||||
#~ msgid "Anisotropic surfaces"
|
#~ msgid "Anisotropic surfaces"
|
||||||
#~ msgstr "Superficies anisótropas"
|
#~ msgstr "Superficies anisótropas"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+2304
-1665
File diff suppressed because it is too large
Load Diff
+1858
-1175
File diff suppressed because it is too large
Load Diff
+3445
-1667
File diff suppressed because it is too large
Load Diff
+2870
-1596
File diff suppressed because it is too large
Load Diff
+1060
-428
File diff suppressed because it is too large
Load Diff
+6564
-3153
File diff suppressed because it is too large
Load Diff
+3138
-1702
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+7177
-3416
File diff suppressed because it is too large
Load Diff
+1289
-510
File diff suppressed because it is too large
Load Diff
+2682
-1691
File diff suppressed because it is too large
Load Diff
+2583
-1453
File diff suppressed because it is too large
Load Diff
+4187
-2216
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Custom Printer",
|
"name": "Custom Printer",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.03",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "My configurations",
|
"description": "My configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -118,7 +118,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
"instantiation": "false",
|
"instantiation": "false",
|
||||||
"gcode_flavor": "klipper",
|
"gcode_flavor": "klipper",
|
||||||
"single_extruder_multi_material": "0",
|
"single_extruder_multi_material": "0",
|
||||||
|
"wait_for_temp_on_wipe_tower": "1",
|
||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA @MyToolChanger"
|
"Generic PLA @MyToolChanger"
|
||||||
],
|
],
|
||||||
@@ -172,11 +173,11 @@
|
|||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"z_hop_types": [
|
"z_hop_types": [
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift"
|
"Slope Lift"
|
||||||
],
|
],
|
||||||
"purge_in_prime_tower": "0",
|
"purge_in_prime_tower": "0",
|
||||||
"machine_pause_gcode": "M601",
|
"machine_pause_gcode": "M601",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "OrcaFilamentLibrary",
|
"name": "OrcaFilamentLibrary",
|
||||||
"version": "02.04.00.03",
|
"version": "02.04.00.04",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Orca Filament Library",
|
"description": "Orca Filament Library",
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
|
|||||||
@@ -36,6 +36,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PET-CF"
|
"PET-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
+3
@@ -39,6 +39,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PLA-AERO"
|
"PLA-AERO"
|
||||||
],
|
],
|
||||||
|
|||||||
+3
@@ -27,6 +27,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -36,6 +36,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
"filament_retraction_minimum_travel": [
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -72,15 +72,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"599"
|
"599"
|
||||||
],
|
],
|
||||||
@@ -99,30 +90,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -165,21 +138,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -42,15 +42,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"445"
|
"445"
|
||||||
],
|
],
|
||||||
@@ -69,30 +60,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -135,21 +108,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -71,15 +71,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"449.5"
|
"449.5"
|
||||||
],
|
],
|
||||||
@@ -98,30 +89,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -164,21 +137,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -71,15 +71,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"500"
|
"500"
|
||||||
],
|
],
|
||||||
@@ -98,30 +89,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -164,21 +137,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,6 +24,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"290"
|
"290"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -35,6 +35,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elegoo"
|
"Elegoo"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"220"
|
"220"
|
||||||
],
|
],
|
||||||
|
|||||||
+3
@@ -44,5 +44,8 @@
|
|||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -44,5 +44,8 @@
|
|||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,8 @@
|
|||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PA-CF"
|
"PA-CF"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"compatible_printers": []
|
"compatible_printers": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,5 +8,8 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"compatible_printers": []
|
"compatible_printers": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"11.5"
|
"11.5"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"13"
|
||||||
|
],
|
||||||
"overhang_fan_speed": [
|
"overhang_fan_speed": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"11"
|
"11"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"11"
|
||||||
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.8"
|
"0.8"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -15,6 +15,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PP-CF"
|
"PP-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -15,6 +15,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PP-GF"
|
"PP-GF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Overture"
|
"Overture"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -23,6 +23,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"7.5"
|
"7.5"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"7.5"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Valment"
|
"Valment"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,12 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"ABS"
|
"ABS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,12 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"ASA"
|
"ASA"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -41,6 +41,15 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"0.1"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"BVOH"
|
"BVOH"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -66,6 +66,12 @@
|
|||||||
"filament_minimal_purge_on_wipe_tower": [
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_retract_before_wipe": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -41,6 +41,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"16"
|
"16"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
"filament_type": [
|
"filament_type": [
|
||||||
"EVA"
|
"EVA"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"supertack_plate_temp": [
|
"supertack_plate_temp": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -41,6 +41,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"HIPS"
|
"HIPS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -44,6 +44,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PA"
|
"PA"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -7,6 +7,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PAHT"
|
"PAHT"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -86,6 +86,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.94"
|
"0.94"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -26,6 +26,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PCTG"
|
"PCTG"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PE"
|
"PE"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -26,6 +26,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PETG"
|
"PETG"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PHA"
|
"PHA"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,6 +9,9 @@
|
|||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.98"
|
"0.98"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"8"
|
"8"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PP"
|
"PP"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -47,6 +47,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PPA-CF"
|
"PPA-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PPS"
|
"PPS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -40,6 +40,15 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"0.1"
|
||||||
|
],
|
||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -11,6 +11,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"SBS"
|
"SBS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,15 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"3.2"
|
"3.2"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"3.2"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"0.1"
|
||||||
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"eSUN"
|
"eSUN"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"eSUN"
|
"eSUN"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"eSUN"
|
"eSUN"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Snapmaker",
|
"name": "Snapmaker",
|
||||||
"version": "02.04.00.07",
|
"version": "02.04.00.08",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Snapmaker configurations",
|
"description": "Snapmaker configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -426,10 +426,6 @@
|
|||||||
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle)",
|
|
||||||
"sub_path": "process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -486,6 +482,66 @@
|
|||||||
"name": "fdm_process_U1_0.8_common",
|
"name": "fdm_process_U1_0.8_common",
|
||||||
"sub_path": "process/fdm_process_U1_0.8_common.json"
|
"sub_path": "process/fdm_process_U1_0.8_common.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.06_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.06_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.08_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.08_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.10_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.10_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.12_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.12_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.14_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.14_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.18_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.18_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.24_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.24_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.30_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.30_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.32_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.32_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.36_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.36_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.40_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.40_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.42_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.42_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.48_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.48_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.56_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.56_nozzle_0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
|
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
|
||||||
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
||||||
@@ -1508,10 +1564,6 @@
|
|||||||
"name": "Snapmaker PLA Metal @U1",
|
"name": "Snapmaker PLA Metal @U1",
|
||||||
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
|
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Silk @U1",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Silk",
|
"name": "Snapmaker PLA Silk",
|
||||||
"sub_path": "filament/Snapmaker PLA Silk.json"
|
"sub_path": "filament/Snapmaker PLA Silk.json"
|
||||||
@@ -1671,6 +1723,214 @@
|
|||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Matte @U1 base",
|
"name": "Snapmaker PLA Matte @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker PLA @U1 base",
|
||||||
|
"sub_path": "filament/Polymaker PLA @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker Silk PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker Silk PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker Tough PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker Tough PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Basic @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Basic @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Full Spectrum @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Full Spectrum @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Glow @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Glow @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PVA @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PVA @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PVA @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PVA @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker General PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker General PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Basic @U1",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Basic @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Glow @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Glow @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.8 nozzle.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker General PLA Family @U1",
|
||||||
|
"inherits": "Polymaker PLA @U1 base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "thXfSaUkOAKJ50ey",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Polymaker"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"62"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker PLA @U1 base",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"filament_id": "OGFL99",
|
||||||
|
"instantiation": "false",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"chamber_temperatures": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_long_retractions_when_cut": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Generic"
|
||||||
|
],
|
||||||
|
"filament_scarf_seam_type": [
|
||||||
|
"none"
|
||||||
|
],
|
||||||
|
"filament_scarf_height": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"filament_scarf_gap": [
|
||||||
|
"15%"
|
||||||
|
],
|
||||||
|
"filament_scarf_length": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_shrink": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode\n"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker Silk PLA Family @U1",
|
||||||
|
"inherits": "Polymaker PLA @U1 base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "h8vIYpXbxFtHPV6e",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.34"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Polymaker"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker Tough PLA Family @U1",
|
||||||
|
"inherits": "Polymaker PLA @U1 base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "d6CC81Es2hp46bto",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.96"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Polymaker"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -11,7 +11,6 @@
|
|||||||
"filament_minimal_purge_on_wipe_tower": [
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
|
|
||||||
"pressure_advance": [
|
"pressure_advance": [
|
||||||
"0.05"
|
"0.05"
|
||||||
]
|
]
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user