Compare commits

..

4 Commits

Author SHA1 Message Date
Ian Chua
e9ea8a8eb7 remove diagnostic logging 2026-05-25 10:34:47 +08:00
Ian Chua
8c6f0b4b47 Merge branch 'main' into fix/cli-segfault 2026-05-25 10:15:00 +08:00
Ian Chua
1a2118f696 Merge branch 'main' into fix/cli-segfault 2026-05-21 15:38:33 +08:00
Ian Chua
899bbafc99 fix: cli painted segmentation crash with mismatched filament counts 2026-05-21 15:37:00 +08:00
1621 changed files with 27876 additions and 90096 deletions

View File

@@ -34,6 +34,46 @@ jobs:
python3 ./scripts/orca_extra_profile_check.py 2>&1 | tee ${{ runner.temp }}/extra_json_check.log python3 ./scripts/orca_extra_profile_check.py 2>&1 | tee ${{ runner.temp }}/extra_json_check.log
exit ${PIPESTATUS[0]} exit ${PIPESTATUS[0]}
- name: Check profile indentation
id: indentation_check
continue-on-error: true
run: |
set +e
python3 - <<'PY' 2>&1 | tee ${{ runner.temp }}/indentation_check.log
import re
from pathlib import Path
import sys
profiles_root = Path("resources/profiles")
invalid_files = []
for file_path in sorted(profiles_root.rglob("*.json")):
try:
for line_number, line in enumerate(file_path.read_text(encoding="utf-8").splitlines(), start=1):
if not line.strip():
continue
leading_ws = re.match(r"^[ \t]*", line).group(0)
if " " in leading_ws:
invalid_files.append((file_path, line_number))
break
except Exception as exc:
print(f"[ERROR] Unable to read {file_path}: {exc}")
invalid_files.append((file_path, 0))
if invalid_files:
for path, line in invalid_files:
if line > 0:
print(f"[ERROR] Space indentation found in {path}:{line}")
else:
print(f"[ERROR] Could not validate indentation in {path}")
print("Use tab indentation in profile JSON files (1 tab per indentation level).")
print("Tip: run python3 ./scripts/orca_filament_lib.py --fix --force to normalize formatting.")
sys.exit(1)
print("All profile JSON files use tab-only indentation.")
PY
exit ${PIPESTATUS[0]}
# download # download
- name: Download - name: Download
working-directory: ${{ github.workspace }} working-directory: ${{ github.workspace }}
@@ -61,18 +101,12 @@ jobs:
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log
exit ${PIPESTATUS[0]} exit ${PIPESTATUS[0]}
- name: Prepare PR number for comment workflow - name: Prepare comment artifact
if: ${{ always() && github.event_name == 'pull_request' }} if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.indentation_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: | run: |
mkdir -p ${{ runner.temp }}/profile-check-results mkdir -p ${{ runner.temp }}/profile-check-results
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
- name: Prepare comment artifact
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: |
{ {
# Marker matched by check_profiles_comment.yml to delete prior comments.
echo "<!-- profile-validation-comment -->"
echo "## :x: Profile Validation Errors" echo "## :x: Profile Validation Errors"
echo "" echo ""
@@ -85,6 +119,15 @@ jobs:
echo "" echo ""
fi fi
if [ "${{ steps.indentation_check.outcome }}" = "failure" ]; then
echo "### Indentation Check Failed"
echo ""
echo '```'
head -c 30000 ${{ runner.temp }}/indentation_check.log || echo "No output captured"
echo '```'
echo ""
fi
if [ "${{ steps.validate_system.outcome }}" = "failure" ]; then if [ "${{ steps.validate_system.outcome }}" = "failure" ]; then
echo "### System Profile Validation Failed" echo "### System Profile Validation Failed"
echo "" echo ""
@@ -107,8 +150,10 @@ jobs:
echo "*Please fix the above errors and push a new commit.*" echo "*Please fix the above errors and push a new commit.*"
} > ${{ runner.temp }}/profile-check-results/pr_comment.md } > ${{ runner.temp }}/profile-check-results/pr_comment.md
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
- name: Upload comment artifact - name: Upload comment artifact
if: ${{ always() && github.event_name == 'pull_request' }} if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.indentation_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
with: with:
name: profile-check-results name: profile-check-results
@@ -116,7 +161,7 @@ jobs:
retention-days: 1 retention-days: 1
- name: Fail if any check failed - name: Fail if any check failed
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.indentation_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: | run: |
echo "One or more profile checks failed. See above for details." echo "One or more profile checks failed. See above for details."
exit 1 exit 1

View File

@@ -10,19 +10,12 @@ on:
permissions: permissions:
pull-requests: write pull-requests: write
# Needed to delete outdated bot comments via the issues/comments endpoint.
issues: write
# Serialize handlers per source branch so parallel runs don't race delete-and-post.
concurrency:
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_repository.full_name }}-${{ github.event.workflow_run.head_branch }}
cancel-in-progress: false
jobs: jobs:
post_comment: post_comment:
name: Post PR comment name: Post PR comment
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
if: ${{ github.event.workflow_run.event == 'pull_request' && (github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure') }} if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'failure' }}
steps: steps:
- name: Download artifact - name: Download artifact
id: download id: download
@@ -33,14 +26,14 @@ jobs:
run-id: ${{ github.event.workflow_run.id }} run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ github.token }} github-token: ${{ github.token }}
- name: Update PR comment - name: Post comment on PR
if: ${{ steps.download.outcome == 'success' }} if: ${{ steps.download.outcome == 'success' }}
env: env:
GH_TOKEN: ${{ github.token }} GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }} GH_REPO: ${{ github.repository }}
run: | run: |
if [ ! -f pr_number.txt ]; then if [ ! -f pr_number.txt ] || [ ! -f pr_comment.md ]; then
echo "No pr_number.txt in artifact, skipping." echo "No comment artifact found, skipping."
exit 0 exit 0
fi fi
@@ -50,17 +43,4 @@ jobs:
exit 1 exit 1
fi fi
# Delete prior comments matching the marker (from check_profiles.yml) or the legacy heading. gh pr comment "$PR_NUMBER" --body-file pr_comment.md
OLD_IDS=$(gh api --paginate "repos/${GH_REPO}/issues/${PR_NUMBER}/comments" \
--jq '.[] | select(.user.login == "github-actions[bot]") | select((.body | startswith("<!-- profile-validation-comment -->")) or (.body | startswith("## :x: Profile Validation Errors"))) | .id')
for comment_id in $OLD_IDS; do
echo "Deleting outdated profile-validation comment ${comment_id}"
gh api -X DELETE "repos/${GH_REPO}/issues/comments/${comment_id}" || true
done
# Post a new comment only when validation failed (pr_comment.md present).
if [ -f pr_comment.md ]; then
gh pr comment "$PR_NUMBER" --body-file pr_comment.md
else
echo "Validation succeeded; cleaned up prior comments without posting."
fi

View File

@@ -1,11 +1,5 @@
set(_eigen_extra_flags "")
if (MSVC)
set(_eigen_extra_flags "-DCMAKE_CXX_FLAGS:STRING=/bigobj")
endif ()
orcaslicer_add_cmake_project(Eigen orcaslicer_add_cmake_project(Eigen
URL https://gitlab.com/libeigen/eigen/-/archive/5.0.1/eigen-5.0.1.zip URL https://gitlab.com/libeigen/eigen/-/archive/5.0.1/eigen-5.0.1.zip
URL_HASH SHA256=0dbb1f9e3aaad66f352c03227d8c983f6f0b49e0b07e71a7300f4abcc01aee12 URL_HASH SHA256=0dbb1f9e3aaad66f352c03227d8c983f6f0b49e0b07e71a7300f4abcc01aee12
CMAKE_ARGS "${_eigen_extra_flags}"
DEPENDS dep_Boost dep_GMP dep_MPFR DEPENDS dep_Boost dep_GMP dep_MPFR
) )

View File

@@ -1,171 +0,0 @@
# Mixed Filament
Ported from [OrcaSlicer-FullSpectrum](https://github.com/SoftFever/OrcaSlicer-FullSpectrum)
with contributions from Rad, Justin Hayes, Calogero Guagenti, xSil3nt, and ratdoux.
---
## User Guide
### What It Does
Mixed Filament lets a single virtual filament slot alternate between two
physical filaments across layers (or within a layer in Pointillisme mode),
producing blended or gradient-like colours on single-extruder printers.
### Enabling
1. Load a multi-colour (multi-extruder) profile with at least 2 filaments.
2. The **Mixed Filaments** panel appears automatically in the right-hand sidebar
when 2 or more filaments are configured.
3. Each auto-generated row represents one pair of physical filaments.
Toggle a row to enable it; the total filament count grows to include the
virtual slot.
### Sidebar Workflow
- **Add** — creates a custom row for the same pair or a different ratio.
- **Edit** — opens `MixedFilamentConfigPanel` to adjust ratio, pattern,
surface offset (bias), and distribution mode.
- **Delete** — marks the row deleted; existing painted geometry retains its
virtual filament ID until you re-slice or repaint.
Painting with a virtual filament ID behaves the same as painting with a
physical one — use the Multi-Material Painting gizmo and select the virtual
slot from the colour palette.
### Color Match Dialog
Open via the colour swatch on a mixed row. The dialog (`MixedFilamentColorMatchDialog`)
shows a live preview strip of the blended result and lets you adjust ratio
until the preview matches your target colour. The preview accounts for
surface-offset bias when enabled.
### Anti-Banding Options
| Setting | What it does |
|---|---|
| `mixed_filament_advanced_dithering` | Uses an ordered dither pattern instead of simple A-then-B runs. Reduces stripe visibility on some hue pairs. More experimental than the default. |
| `dithering_local_z_mode` | Splits each blended layer into two sub-layers whose heights are proportional to the mix ratio (e.g. 66/33 at 0.12 mm → 0.08 mm + 0.04 mm). Produces the smoothest colour gradients. |
| `dithering_local_z_whole_objects` | Extends Local-Z splitting beyond painted masks to cover the entire object cross-section. Useful when mixed walls surround a painted zone. |
| `dithering_local_z_direct_multicolor` | For rows with 3 or more physical components, allocates Local-Z sub-layers directly across all components with carry-over error correction instead of collapsing to pair cadence. More toolchanges; less banding. |
### Gotchas
- **Single-extruder warning** — Mixed Filament requires a physical toolchange
between the two components. On a true single-nozzle printer this means a
manual filament swap. Verify your printer profile supports `T0`/`T1` before
using mixed slots in a production print.
- **Variable-layer interaction** — If Variable Layer Height is enabled, Local-Z
sub-layer heights are recomputed per interval. The mix ratio is preserved but
the absolute sub-layer heights change with the variable height. Review the
layer preview after applying variable layers.
- **Custom sequence disabled** — OrcaSlicer's "custom toolchange sequence" is
suppressed when mixed filaments are active (`PlateSettingsDialog`). The
virtual-to-physical resolution must control toolchange order; a user-defined
sequence would break it.
- **Stable IDs** — each mixed row carries a `stable_id` (64-bit). If you
reorder or delete rows and then load an older project, the ID remap in
`PresetBundle::update_mixed_filament_id_remap` translates painted geometry
to the correct new virtual slot. Do not rely on the 1-based filament index
as a stable identifier.
---
## Developer Guide
### Core Data Structures
```
src/libslic3r/MixedFilament.hpp — MixedFilament struct, MixedFilamentManager
src/libslic3r/MixedFilament.cpp — serialization, resolve(), auto_generate()
src/libslic3r/LocalZOrderOptimizer.hpp — bucket-ordering helpers for Local-Z
```
The key scalar fields on `MixedFilament`:
- `component_a`, `component_b` — 1-based physical filament indices.
- `ratio_a`, `ratio_b` — layer-alternation cadence numerators.
- `mix_b_percent` — nominal colour mix (used for Local-Z height computation
and the Color Match preview; does not change the cadence).
- `stable_id` — monotonically increasing 64-bit ID assigned at construction.
Never reused. Survives serialization round-trips.
- `distribution_mode` — selects between `Simple`, `SameLayerPointillisme`,
and `GroupedManual`.
### Seam: Adding New Distribution Modes
`MixedFilamentManager::resolve()` in `MixedFilament.cpp` is the single
dispatch point that maps `(virtual_filament_id, num_physical, layer_index)`
to a physical extruder. The current switch covers `Simple` and
`SameLayerPointillisme`. A new mode is added by:
1. Adding a value to the `MixedFilament::DistributionMode` enum in
`MixedFilament.hpp`.
2. Adding a `case` to `MixedFilamentManager::resolve()` in `MixedFilament.cpp`.
3. Serializing the new mode token in `serialize_custom_entries` /
`load_custom_entries` (format is a semicolon-delimited row string; see
existing tokens for the convention).
G-code emission (`src/libslic3r/GCode/`) reads only the physical ID returned
by `resolve()`, so new modes are automatically emitted without further changes.
### Seam: New Toolchange-Cost Heuristics
`LocalZOrderOptimizer` (`src/libslic3r/LocalZOrderOptimizer.hpp`) exposes:
- `order_bucket_extruders(bucket, current, preferred_last)` — reorders a
single-layer bucket to minimise toolchanges given the current active extruder.
- `order_pass_group(group, current_extruder)` — greedy walk across a set of
buckets (one per Local-Z sub-layer) to minimise total transitions.
To add a new heuristic (e.g. cost-based look-ahead), replace or wrap
`order_pass_group`. The caller in `PrintObjectSlice.cpp` passes the result
directly into the sub-layer plan, so the heuristic is fully decoupled from
the plan builder.
### Seam: New Picker Shapes in the Color Map Panel
`MixedFilamentColorMapPanel` (`src/slic3r/GUI/MixedFilamentColorMapPanel.hpp`)
renders a 2-D colour map using a set of geometry "types" (currently strip and
gradient). Each type is a small self-contained rendering path keyed by an enum
value. New shapes are added by:
1. Adding an enum value to `MixedFilamentColorMapPanel::GeometryType`.
2. Implementing the corresponding `Paint*` helper (follow `PaintStrip` as a
template).
3. Wiring the new type into the `switch` in `OnPaint`.
### Persistence (3MF)
The entire mixed-filament state is stored as a single string key
`mixed_filament_definitions` in the project config block (section `[presets]`
in the 3MF metadata).
Round-trip path:
```
MixedFilamentManager::serialize_custom_entries()
called by PresetBundle::sync_mixed_filaments_to_config()
written by bbs_3mf: store_bbs_3mf → config.set("presets", "mixed_filament_definitions", ...)
load_bbs_3mf → config.get("presets", "mixed_filament_definitions")
stored in project_config["mixed_filament_definitions"]
read by PresetBundle::sync_mixed_filaments_from_config()
→ mixed_filaments.auto_generate(colours)
→ mixed_filaments.load_custom_entries(defs, colours)
```
Auto-generated rows are *not* written to the definitions string; they are
rebuilt from the filament colour list. Only `custom == true` rows are stored.
See `tests/fff_print/test_mixed_filament_e2e.cpp` for regression tests
covering this path.
### ID Remap
When filaments are added, removed, or reordered, virtual IDs shift.
`PresetBundle::update_mixed_filament_id_remap(old_mixed, old_count, new_count)`
produces a `remap` vector where `remap[old_virtual_id] = new_virtual_id`.
Painted triangle mesh face data uses these IDs; the remap is applied in
`TriangleSelectorMixed` after any filament list change.

View File

@@ -122,7 +122,7 @@ msgid "On highlighted overhangs only"
msgstr "Nur an hervorgehobenen Überhängen" msgstr "Nur an hervorgehobenen Überhängen"
msgid "Erase all" msgid "Erase all"
msgstr "Alles löschen" msgstr ""
msgid "Highlight overhang areas" msgid "Highlight overhang areas"
msgstr "Bereiche mit Überhang hervorheben" msgstr "Bereiche mit Überhang hervorheben"
@@ -350,10 +350,10 @@ msgid "Fixed step drag"
msgstr "Fester Schritt ziehen" msgstr "Fester Schritt ziehen"
msgid "Context Menu" msgid "Context Menu"
msgstr "Kontextmenü" msgstr ""
msgid "Toggle Auto-Drop" msgid "Toggle Auto-Drop"
msgstr "Automatisches Absenken umschalten" msgstr ""
msgid "Single sided scaling" msgid "Single sided scaling"
msgstr "Einseitige Skalierung" msgstr "Einseitige Skalierung"
@@ -509,10 +509,10 @@ msgid "Multiple"
msgstr "Mehrere" msgstr "Mehrere"
msgid "Count" msgid "Count"
msgstr "Anzahl" msgstr ""
msgid "Gap" msgid "Gap"
msgstr "Spalt" msgstr ""
msgid "Spacing" msgid "Spacing"
msgstr "Abstand" msgstr "Abstand"
@@ -883,7 +883,7 @@ msgid "Advanced"
msgstr "Erweiterte Einstellungen" msgstr "Erweiterte Einstellungen"
msgid "Reset all options except the text and operation" msgid "Reset all options except the text and operation"
msgstr "Alle Optionen außer dem Text und der Operation zurücksetzen" msgstr ""
msgid "" msgid ""
"The text cannot be written using the selected font. Please try choosing a " "The text cannot be written using the selected font. Please try choosing a "
@@ -1805,16 +1805,16 @@ msgid "Info"
msgstr "Info" msgstr "Info"
msgid "Loading printer & filament profiles" msgid "Loading printer & filament profiles"
msgstr "Lade Drucker- und Filamentprofile" msgstr ""
msgid "Creating main window" msgid "Creating main window"
msgstr "Erstelle Hauptfenster" msgstr ""
msgid "Loading current preset" msgid "Loading current preset"
msgstr "Lade aktuelles Preset" msgstr ""
msgid "Showing main window" msgid "Showing main window"
msgstr "Zeige Hauptfenster" msgstr ""
msgid "" msgid ""
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
@@ -1897,12 +1897,9 @@ msgid ""
"Please check your network connectivity\n" "Please check your network connectivity\n"
"(HTTP %u)" "(HTTP %u)"
msgstr "" msgstr ""
"Verbindung zu OrcaCloud fehlgeschlagen.\n"
"Bitte überprüfen Sie Ihre Netzwerkverbindung\n"
"(HTTP %u)"
msgid "Cloud Error" msgid "Cloud Error"
msgstr "Cloud-Fehler" msgstr ""
msgid "Retrieving printer information, please try again later." msgid "Retrieving printer information, please try again later."
msgstr "Empfange Druckerinformationen, bitte später erneut versuchen." msgstr "Empfange Druckerinformationen, bitte später erneut versuchen."
@@ -6103,13 +6100,13 @@ msgid "Export"
msgstr "Exportieren" msgstr "Exportieren"
msgid "Sync Presets" msgid "Sync Presets"
msgstr "Presets synchronisieren" msgstr ""
msgid "Pull and apply the latest presets from OrcaCloud" msgid "Pull and apply the latest presets from OrcaCloud"
msgstr "Die neuesten Presets von OrcaCloud abrufen und anwenden" msgstr ""
msgid "You must be logged in to sync presets from cloud." msgid "You must be logged in to sync presets from cloud."
msgstr "Sie müssen angemeldet sein, um Presets aus der Cloud zu synchronisieren." msgstr ""
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
@@ -6239,7 +6236,7 @@ msgid "Preset Bundle"
msgstr "Vorlagen-Bundle" msgstr "Vorlagen-Bundle"
msgid "Syncing presets from cloud…" msgid "Syncing presets from cloud…"
msgstr "Synchronisiere Presets aus der Cloud…" msgstr ""
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
@@ -8944,25 +8941,25 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel."
msgstr "Wenn aktiviert, wird die Richtung des Zooms mit dem Mausrad umgekehrt." msgstr "Wenn aktiviert, wird die Richtung des Zooms mit dem Mausrad umgekehrt."
msgid "Pan" msgid "Pan"
msgstr "Schwenken" msgstr ""
msgid "Left Mouse Drag" msgid "Left Mouse Drag"
msgstr "Linke Maustaste drücken" msgstr ""
msgid "Set the action that dragging the left mouse button should perform." msgid "Set the action that dragging the left mouse button should perform."
msgstr "Legen Sie die Aktion fest, die das Ziehen der linken Maustaste ausführen soll." msgstr ""
msgid "Middle Mouse Drag" msgid "Middle Mouse Drag"
msgstr "Mittlere Maustaste drücken" msgstr ""
msgid "Set the action that dragging the middle mouse button should perform." msgid "Set the action that dragging the middle mouse button should perform."
msgstr "Legen Sie die Aktion fest, die das Ziehen der mittleren Maustaste ausführen soll." msgstr ""
msgid "Right Mouse Drag" msgid "Right Mouse Drag"
msgstr "Rechte Maustaste drücken" msgstr ""
msgid "Set the action that dragging the right mouse button should perform." msgid "Set the action that dragging the right mouse button should perform."
msgstr "Legen Sie die Aktion fest, die das Ziehen der rechten Maustaste ausführen soll." msgstr ""
msgid "Clear my choice on..." msgid "Clear my choice on..."
msgstr "Meine Auswahl löschen bei ..." msgstr "Meine Auswahl löschen bei ..."
@@ -8989,13 +8986,13 @@ msgstr ""
"der Datei." "der Datei."
msgid "Graphics" msgid "Graphics"
msgstr "Grafik" msgstr ""
msgid "Anti-aliasing" msgid "Anti-aliasing"
msgstr "Kantenglättung" msgstr ""
msgid "MSAA Multiplier" msgid "MSAA Multiplier"
msgstr "MSAA-Multiplikator" msgstr ""
msgid "" msgid ""
"Set the Multi-Sample Anti-Aliasing level.\n" "Set the Multi-Sample Anti-Aliasing level.\n"
@@ -9007,19 +9004,12 @@ msgid ""
"\n" "\n"
"Requires application restart." "Requires application restart."
msgstr "" msgstr ""
"Stellen Sie die Stufe der Multi-Sample-Kantenglättung ein.\n"
"Höhere Werte führen zu glatteren Kanten, aber die Auswirkungen auf die "
"Leistung sind exponentiell.\n"
"Niedrigere Werte verbessern die Leistung auf Kosten von gezackten Kanten.\n"
"Wenn deaktiviert, wird empfohlen, FXAA zu aktivieren, um gezackte Kanten mit minimalen Auswirkungen auf die Leistung zu reduzieren.\n"
"\n"
"Erfordert einen Neustart der Anwendung."
msgid "Disabled" msgid "Disabled"
msgstr "Deaktiviert" msgstr "Deaktiviert"
msgid "FXAA post-processing" msgid "FXAA post-processing"
msgstr "FXAA-Nachbearbeitung" msgstr ""
msgid "" msgid ""
"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" "Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n"
@@ -9027,34 +9017,26 @@ msgid ""
"\n" "\n"
"Takes effect immediately." "Takes effect immediately."
msgstr "" msgstr ""
"Führt Fast Approximate Anti-Aliasing als Bildschirmraum-Pass aus.\n"
"Nützlich, um die MSAA-Einstellung zu deaktivieren oder zu reduzieren, um die Leistung zu verbessern.\n"
"\n"
"ist sofort wirksam"
msgid "FPS" msgid "FPS"
msgstr "FPS" msgstr ""
msgid "FPS cap" msgid "FPS cap"
msgstr "FPS-Begrenzung" msgstr ""
msgid "(0 = unlimited)" msgid "(0 = unlimited)"
msgstr "(0 = unbegrenzt)" msgstr ""
msgid "" msgid ""
"Limits viewport frame rate to reduce GPU load and power usage.\n" "Limits viewport frame rate to reduce GPU load and power usage.\n"
"Set to 0 for unlimited frame rate." "Set to 0 for unlimited frame rate."
msgstr "" msgstr ""
"Begrenzt die Bildrate des Viewports, um die GPU-Auslastung und den "
"Energieverbrauch zu reduzieren.\n"
"Auf 0 setzen für unbegrenzte Bildrate."
msgid "Show FPS overlay" msgid "Show FPS overlay"
msgstr "FPS-Overlay anzeigen" msgstr ""
msgid "Displays current viewport FPS in the top-right corner." msgid "Displays current viewport FPS in the top-right corner."
msgstr "Zeigt die aktuelle FPS des Viewports in der oberen rechten Ecke an." msgstr ""
msgid "Login region" msgid "Login region"
msgstr "Login region" msgstr "Login region"
@@ -9225,17 +9207,13 @@ msgid "Skip AMS blacklist check"
msgstr "Überspringen der AMS Blacklist-Prüfung" msgstr "Überspringen der AMS Blacklist-Prüfung"
msgid "(Experimental) Keep painted feature after mesh change" msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei" msgstr ""
msgid "" msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " "Attempt to keep painted features (color/seam/support/fuzzy etc.) after "
"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
"Versuchen Sie, bemalte Funktionen (Farbe/Naht/Stütze/unscharf usw.) nach "
"Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/vereinfachen/reparieren usw.) beizubehalten\n"
"Sehr experimentell! Langsam und kann Artefakte erzeugen."
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Fehlerhaften Speicher zulassen" msgstr "Fehlerhaften Speicher zulassen"
@@ -10961,37 +10939,26 @@ msgid ""
" %s first layer %d %s, other layers %d %s\n" " %s first layer %d %s, other layers %d %s\n"
" %s max delta %d %s, current delta %d %s\n" " %s max delta %d %s, current delta %d %s\n"
msgstr "" msgstr ""
" - %s:\n"
" %s erste Schicht %d %s, andere Schichten %d %s\n"
" %s maximale Delta %d %s, aktuelle Delta %d %s\n"
msgid "" msgid ""
"Some first-layer and other-layer temperature pairs exceed safety limits.\n" "Some first-layer and other-layer temperature pairs exceed safety limits.\n"
msgstr "Einige Temperaturpaare für die erste und andere Schicht überschreiten die Sicherheitsgrenzen.\n" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Invalid pairs:\n" "Invalid pairs:\n"
msgstr "" msgstr ""
"\n"
"Ungültige Paare:\n"
msgid "" msgid ""
"\n" "\n"
"You can go back to edit values, or continue if this is intentional." "You can go back to edit values, or continue if this is intentional."
msgstr "" msgstr ""
"\n"
"Sie können zurückgehen, um die Werte zu bearbeiten, oder fortfahren, wenn dies "
"absichtlich ist."
msgid "" msgid ""
"\n" "\n"
"\n" "\n"
"Continue anyway?" "Continue anyway?"
msgstr "" msgstr ""
"\n"
"\n"
"Trotzdem fortfahren?"
msgid "Temperature Safety Check" msgid "Temperature Safety Check"
msgstr "Temperatur-Sicherheitsprüfung" msgstr "Temperatur-Sicherheitsprüfung"
@@ -11075,10 +11042,6 @@ msgid ""
"\"%1%\"\n" "\"%1%\"\n"
"and \"%2%\" will open without any changes." "and \"%2%\" will open without any changes."
msgstr "" msgstr ""
"Alle \"Neuer Wert\" Einstellungen in\n"
"\"%1%\"\n"
"werden gespeichert und \"%2%\" wird ohne Änderungen geöffnet."
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "" msgstr ""
@@ -11684,7 +11647,7 @@ msgid "Login"
msgstr "Anmelden" msgstr "Anmelden"
msgid "Login failed. Please try again." msgid "Login failed. Please try again."
msgstr "Anmeldung fehlgeschlagen. Bitte versuchen Sie es erneut." msgstr ""
msgid "[Action Required] " msgid "[Action Required] "
msgstr "[Aktion erforderlich] " msgstr "[Aktion erforderlich] "
@@ -11724,16 +11687,16 @@ msgid "Global shortcuts"
msgstr "Globale Tastaturkürzel" msgstr "Globale Tastaturkürzel"
msgid "Pan View" msgid "Pan View"
msgstr "Ansicht verschieben" msgstr ""
msgid "Rotate View" msgid "Rotate View"
msgstr "Ansicht drehen" msgstr ""
msgid "Middle mouse button" msgid "Middle mouse button"
msgstr "Mittlere Maustaste" msgstr ""
msgid "Zoom View" msgid "Zoom View"
msgstr "Ansicht zoomen" msgstr ""
msgid "" msgid ""
"Auto orients selected objects or all objects. If there are selected objects, " "Auto orients selected objects or all objects. If there are selected objects, "
@@ -12636,8 +12599,6 @@ msgid ""
"The Hollow base pattern is not supported by this support type; Rectilinear " "The Hollow base pattern is not supported by this support type; Rectilinear "
"will be used instead." "will be used instead."
msgstr "" msgstr ""
"Das Hohl-Basis-Muster wird von diesem Stütztyp nicht unterstützt; Stattdessen "
"wird das Rechteckmuster verwendet."
msgid "" msgid ""
"Support enforcers are used but support is not enabled. Please enable support." "Support enforcers are used but support is not enabled. Please enable support."
@@ -14885,16 +14846,16 @@ msgid "Auto For Match"
msgstr "Automatisch für Übereinstimmung" msgstr "Automatisch für Übereinstimmung"
msgid "Enable filament dynamic map" msgid "Enable filament dynamic map"
msgstr "Dynamische Filamentzuordnung aktivieren" msgstr ""
msgid "Enable dynamic filament mapping during print." msgid "Enable dynamic filament mapping during print."
msgstr "Dynamische Filamentzuordnung während des Drucks aktivieren." msgstr ""
msgid "Has filament switcher" msgid "Has filament switcher"
msgstr "Hat Filamentwechsler" msgstr ""
msgid "Printer has a filament switcher hardware (e.g., AMS)." msgid "Printer has a filament switcher hardware (e.g., AMS)."
msgstr "Der Drucker verfügt über eine Filamentwechsler-Hardware (z. B. AMS)." msgstr ""
msgid "Flush temperature" msgid "Flush temperature"
msgstr "Spültemperatur" msgstr "Spültemperatur"
@@ -15415,7 +15376,7 @@ msgstr ""
"unterstützt." "unterstützt."
msgid "Z-buckling bias optimization (experimental)" msgid "Z-buckling bias optimization (experimental)"
msgstr "Z-Buckling-Bias-Optimierung (experimentell)" msgstr ""
msgid "" msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density " "Tightens the gyroid wave along the Z (vertical) axis at low infill density "
@@ -15424,11 +15385,6 @@ msgid ""
"~30% sparse infill density and above. Only applies when Sparse infill " "~30% sparse infill density and above. Only applies when Sparse infill "
"pattern is set to Gyroid." "pattern is set to Gyroid."
msgstr "" msgstr ""
"Strafft die Gyroid-Welle entlang der Z-Achse (vertikal) bei geringer Fülldichte, "
"um die effektive vertikale Säulenlänge zu verkürzen und die Z-Achsen-Kompressions-"
"Knickfestigkeit zu verbessern. Der Filamentverbrauch bleibt erhalten. Keine "
"Auswirkung bei ~30% einfacher Fülldichte und darüber. Gilt nur, wenn das einfache "
"Füllmuster auf Gyroid eingestellt ist."
msgid "Sparse infill pattern" msgid "Sparse infill pattern"
msgstr "Füllmuster" msgstr "Füllmuster"
@@ -16318,7 +16274,7 @@ msgstr ""
"bringen.Setze den Wert auf 0, um diese Funktion zu deaktivieren." "bringen.Setze den Wert auf 0, um diese Funktion zu deaktivieren."
msgid "Minimum non-zero part cooling fan speed" msgid "Minimum non-zero part cooling fan speed"
msgstr "Minimale nicht-null Lüftergeschwindigkeit für die Teilekühlung" msgstr ""
msgid "" msgid ""
"Some part-cooling fans cannot start spinning when commanded below a certain " "Some part-cooling fans cannot start spinning when commanded below a certain "
@@ -16337,11 +16293,6 @@ msgid ""
"below the one you know it can actually spool at.\n" "below the one you know it can actually spool at.\n"
"Set to 0 to deactivate." "Set to 0 to deactivate."
msgstr "" msgstr ""
"Einige Teilekühlventilatoren können nicht zu drehen beginnen, wenn sie unter einem bestimmten PWM-Arbeitszyklus befehligt werden. Wenn dieser Wert über 0 eingestellt ist, wird jeder nicht-null-Teilekühlventilatorbefehl auf mindestens diesen Prozentsatz angehoben, damit der Lüfter zuverlässig startet. Ein Lüfterbefehl von 0 (Lüfter aus) wird immer genau eingehalten. Diese Begrenzung wird nach jeder anderen Lüfterberechnung angewendet (Erstschicht-Ramp-up, Schichtzeit-Interpolation, Überhangs-/Brücken-/Stützstruktur-Schnittstellen-/Glättungsüberschreibungen), sodass die Skalierung weiterhin im Bereich [dieser Wert, 100%] erfolgt.\n"
"\n"
"Wenn Ihre Firmware den Lüfter bereits unter einem Schwellenwert deaktiviert (z.B. Klipper's [fan] off_below: 0.10 schaltet den Lüfter aus, wenn der befehligte Arbeitszyklus unter 10% liegt), sollten idealerweise dieser Wert und der Firmware-Schwellenwert auf denselben Wert eingestellt werden. Wenn sie übereinstimmen (z.B. off_below: 0.10 in Klipper und 10% hier), garantiert der Slicer, dass er nie einen nicht-null-Wert emittiert, den die Firmware stillschweigend fallen lässt, und der Lüfter nie einen Wert erhält, der unter dem Wert liegt, den er tatsächlich anfahren kann.\n"
"\n"
"Setze den Wert auf 0, um diese Funktion zu deaktivieren."
msgid "%" msgid "%"
msgstr "%" msgstr "%"
@@ -18432,7 +18383,7 @@ msgid "Enable filament ramming"
msgstr "Erlaube Filamentrammen" msgstr "Erlaube Filamentrammen"
msgid "Tool change on wipe tower" msgid "Tool change on wipe tower"
msgstr "Werkzeugwechsel auf dem Reinigungsturm" msgstr ""
msgid "" msgid ""
"Force the toolhead to travel to the wipe tower before issuing the tool " "Force the toolhead to travel to the wipe tower before issuing the tool "
@@ -18443,8 +18394,6 @@ msgid ""
"this option if you want the tool change to always be issued above the wipe " "this option if you want the tool change to always be issued above the wipe "
"tower instead." "tower instead."
msgstr "" msgstr ""
"Erzwinge, dass der Werkzeugkopf zum Reinigungsturm fährt, bevor der Werkzeugwechselbefehl (Tx) ausgegeben wird. Nur relevant für Mehrfach-Extruder (Mehrfach-Werkzeugkopf) Drucker, die einen Typ-2-Reinigungsturm verwenden. Standardmäßig überspringt Orca die Fahrt auf Mehrfach-Werkzeugkopf-Maschinen, da die Firmware den Kopfwechsel übernimmt, was dazu führen kann, dass der Tx-Befehl über dem gedruckten Teil ausgegeben wird. Aktivieren Sie diese Option, wenn Sie möchten, dass der Werkzeugwechsel immer über dem Reinigungsturm ausgegeben wird."
msgid "No sparse layers (beta)" msgid "No sparse layers (beta)"
msgstr "Keine dünnen Schichten (Beta)" msgstr "Keine dünnen Schichten (Beta)"
@@ -19396,7 +19345,7 @@ msgstr ""
"verschiedene Materialien aufeinandertreffen." "verschiedene Materialien aufeinandertreffen."
msgid "Cool down from interface boost during prime tower" msgid "Cool down from interface boost during prime tower"
msgstr "Abkühlung von der Schnittstellen-Boost während des Reinigungsturms" msgstr "^"
msgid "" msgid ""
"When interface-layer temperature boost is active, set the nozzle back to " "When interface-layer temperature boost is active, set the nozzle back to "
@@ -22045,18 +21994,12 @@ msgid ""
"\n" "\n"
"Available nozzle profiles for this printer:" "Available nozzle profiles for this printer:"
msgstr "" msgstr ""
"\n"
"\n"
"Verfügbare Düsenprofile für diesen Drucker:"
msgid "" msgid ""
"\n" "\n"
"\n" "\n"
"Choose YES to switch existing preset:" "Choose YES to switch existing preset:"
msgstr "" msgstr ""
"\n"
"\n"
"Wählen Sie JA, um das vorhandene Profil zu wechseln:"
msgid "Printer Created Successfully" msgid "Printer Created Successfully"
msgstr "Drucker erfolgreich erstellt" msgstr "Drucker erfolgreich erstellt"
@@ -23265,16 +23208,16 @@ msgid "Detection radius"
msgstr "Erkennungsradius" msgstr "Erkennungsradius"
msgid "Selected" msgid "Selected"
msgstr "Ausgewählt" msgstr ""
msgid "Auto-generate" msgid "Auto-generate"
msgstr "Automatisch generieren" msgstr ""
msgid "Generate brim ears using Max angle and Detection radius" msgid "Generate brim ears using Max angle and Detection radius"
msgstr "Mausohren mit Maximalwinkel und Erkennungsradius generieren" msgstr ""
msgid "Add or Select" msgid "Add or Select"
msgstr "Hinzufügen oder auswählen" msgstr ""
msgid "" msgid ""
"Warning: The brim type is not set to \"painted\", the brim ears will not " "Warning: The brim type is not set to \"painted\", the brim ears will not "
@@ -23287,7 +23230,7 @@ msgid "Set the brim type of this object to \"painted\""
msgstr "Den Brim-Typ dieses Objekts auf \"bemalt\" setzen" msgstr "Den Brim-Typ dieses Objekts auf \"bemalt\" setzen"
msgid "invalid brim ears" msgid "invalid brim ears"
msgstr "Ungültige Mausohren" msgstr ""
msgid "Brim Ears" msgid "Brim Ears"
msgstr "Mausohren" msgstr "Mausohren"

File diff suppressed because it is too large Load Diff

View File

@@ -250,7 +250,3 @@ src/slic3r/GUI/RammingChart.cpp
src/slic3r/GUI/StepMeshDialog.cpp src/slic3r/GUI/StepMeshDialog.cpp
src/slic3r/GUI/FilamentPickerDialog.hpp src/slic3r/GUI/FilamentPickerDialog.hpp
src/libslic3r/PresetBundle.cpp src/libslic3r/PresetBundle.cpp
src/slic3r/GUI/MixedFilamentColorMatchDialog.cpp
src/slic3r/GUI/MixedFilamentColorMatchDialog.hpp
src/slic3r/GUI/MixedFilamentConfigPanel.cpp
src/slic3r/GUI/MixedFilamentConfigPanel.hpp

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -472,10 +472,6 @@
"name": "Anycubic Generic PA-CF", "name": "Anycubic Generic PA-CF",
"sub_path": "filament/Anycubic Generic PA-CF.json" "sub_path": "filament/Anycubic Generic PA-CF.json"
}, },
{
"name": "Fiberon PA6-CF20 @Anycubic Kobra S1",
"sub_path": "filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json"
},
{ {
"name": "Anycubic Generic PC", "name": "Anycubic Generic PC",
"sub_path": "filament/Anycubic Generic PC.json" "sub_path": "filament/Anycubic Generic PC.json"
@@ -592,18 +588,6 @@
"name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle", "name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle",
"sub_path": "filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json" "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json"
}, },
{
"name": "Panchroma PLA @Anycubic Kobra S1",
"sub_path": "filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json"
},
{
"name": "Polymaker PLA Pro @Anycubic Kobra S1",
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json"
},
{
"name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1",
"sub_path": "filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json"
},
{ {
"name": "Anycubic Generic PVA", "name": "Anycubic Generic PVA",
"sub_path": "filament/Anycubic Generic PVA.json" "sub_path": "filament/Anycubic Generic PVA.json"

View File

@@ -1,81 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA6-CF20 @Anycubic Kobra S1",
"inherits": "fdm_filament_pa",
"from": "system",
"setting_id": "GFSL57_AC",
"filament_id": "GFL57",
"instantiation": "true",
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"filament_vendor": [
"Polymaker"
],
"filament_type": [
"PA6-CF"
],
"eng_plate_temp": [
"40"
],
"hot_plate_temp": [
"40"
],
"textured_plate_temp": [
"40"
],
"eng_plate_temp_initial_layer": [
"40"
],
"hot_plate_temp_initial_layer": [
"40"
],
"textured_plate_temp_initial_layer": [
"40"
],
"overhang_fan_speed": [
"100"
],
"filament_flow_ratio": [
"1.03"
],
"reduce_fan_stop_start_freq": [
"1"
],
"fan_cooling_layer_time": [
"30"
],
"filament_cost": [
"79.98"
],
"filament_density": [
"1.17"
],
"filament_max_volumetric_speed": [
"7.5"
],
"filament_retraction_length": [
"1.0"
],
"filament_z_hop": [
"0.0"
],
"nozzle_temperature_initial_layer": [
"300"
],
"fan_max_speed": [
"30"
],
"slow_down_layer_time": [
"6"
],
"nozzle_temperature": [
"300"
],
"temperature_vitrification": [
"74.2"
],
"nozzle_temperature_range_low": [
"280"
]
}

View File

@@ -1,70 +0,0 @@
{
"type": "filament",
"name": "Panchroma PLA @Anycubic Kobra S1",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "GFSPM001_AC",
"filament_id": "GFPM001",
"instantiation": "true",
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"filament_vendor": [
"Polymaker"
],
"filament_type": [
"PLA"
],
"cool_plate_temp": [
"50"
],
"eng_plate_temp": [
"50"
],
"hot_plate_temp": [
"50"
],
"textured_plate_temp": [
"50"
],
"cool_plate_temp_initial_layer": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_flow_ratio": [
"0.88"
],
"filament_cost": [
"0"
],
"filament_density": [
"1.32"
],
"filament_max_volumetric_speed": [
"20"
],
"slow_down_min_speed": [
"5"
],
"slow_down_layer_time": [
"10"
],
"temperature_vitrification": [
"62.5"
],
"additional_cooling_fan_speed": [
"0"
],
"enable_pressure_advance": [
"1"
]
}

View File

@@ -1,66 +0,0 @@
{
"type": "filament",
"name": "Polymaker PLA Pro @Anycubic Kobra S1",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "GFSL79_AC",
"filament_id": "GFL79",
"instantiation": "true",
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"filament_vendor": [
"Polymaker"
],
"filament_type": [
"PLA"
],
"cool_plate_temp": [
"50"
],
"eng_plate_temp": [
"50"
],
"hot_plate_temp": [
"50"
],
"textured_plate_temp": [
"50"
],
"cool_plate_temp_initial_layer": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_flow_ratio": [
"0.85"
],
"filament_cost": [
"0"
],
"filament_density": [
"1.23"
],
"filament_max_volumetric_speed": [
"16"
],
"slow_down_min_speed": [
"5"
],
"slow_down_layer_time": [
"10"
],
"temperature_vitrification": [
"55"
],
"additional_cooling_fan_speed": [
"0"
]
}

View File

@@ -1,66 +0,0 @@
{
"type": "filament",
"name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "GFSL80_AC",
"filament_id": "GFL80",
"instantiation": "true",
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"filament_vendor": [
"Polymaker"
],
"filament_type": [
"PLA"
],
"cool_plate_temp": [
"50"
],
"eng_plate_temp": [
"50"
],
"hot_plate_temp": [
"50"
],
"textured_plate_temp": [
"50"
],
"cool_plate_temp_initial_layer": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_flow_ratio": [
"0.85"
],
"filament_cost": [
"0"
],
"filament_density": [
"1.23"
],
"filament_max_volumetric_speed": [
"16"
],
"slow_down_min_speed": [
"5"
],
"slow_down_layer_time": [
"10"
],
"temperature_vitrification": [
"55"
],
"additional_cooling_fan_speed": [
"0"
]
}

View File

@@ -33,10 +33,10 @@
"disable_m73": "0", "disable_m73": "0",
"gcode_flavor": "klipper", "gcode_flavor": "klipper",
"printable_area": [ "printable_area": [
"0x0", "3x0",
"426x0", "423x0",
"426x420", "423x420",
"0x420" "3x420"
], ],
"printable_height": "501", "printable_height": "501",
"thumbnails": "230x110/PNG", "thumbnails": "230x110/PNG",
@@ -48,24 +48,7 @@
"bbl_use_printhost": "0", "bbl_use_printhost": "0",
"bed_custom_model": "", "bed_custom_model": "",
"bed_custom_texture": "", "bed_custom_texture": "",
"bed_exclude_area": [ "bed_exclude_area": [],
"0x0",
"3x0",
"3x420",
"0x420",
"0x0",
"423x0",
"423x0",
"423x0",
"423x0",
"426x0",
"426x420",
"423x420",
"423x0",
"0x0",
"0x0",
"0x0"
],
"bed_mesh_max": "0,0", "bed_mesh_max": "0,0",
"bed_mesh_min": "0,0", "bed_mesh_min": "0,0",
"bed_mesh_probe_distance": "0,0", "bed_mesh_probe_distance": "0,0",

View File

@@ -23,10 +23,10 @@
"disable_m73": "0", "disable_m73": "0",
"gcode_flavor": "klipper", "gcode_flavor": "klipper",
"printable_area": [ "printable_area": [
"0x0", "3x0",
"426x0", "423x0",
"426x420", "423x420",
"0x420" "3x420"
], ],
"printable_height": "501", "printable_height": "501",
"thumbnails": "230x110/PNG", "thumbnails": "230x110/PNG",
@@ -38,24 +38,7 @@
"bbl_use_printhost": "0", "bbl_use_printhost": "0",
"bed_custom_model": "", "bed_custom_model": "",
"bed_custom_texture": "", "bed_custom_texture": "",
"bed_exclude_area": [ "bed_exclude_area": [],
"0x0",
"3x0",
"3x420",
"0x420",
"0x0",
"423x0",
"423x0",
"423x0",
"423x0",
"426x0",
"426x420",
"423x420",
"423x0",
"0x0",
"0x0",
"0x0"
],
"bed_mesh_max": "0,0", "bed_mesh_max": "0,0",
"bed_mesh_min": "0,0", "bed_mesh_min": "0,0",
"bed_mesh_probe_distance": "0,0", "bed_mesh_probe_distance": "0,0",

View File

@@ -23,10 +23,10 @@
"disable_m73": "0", "disable_m73": "0",
"gcode_flavor": "klipper", "gcode_flavor": "klipper",
"printable_area": [ "printable_area": [
"0x0", "3x0",
"426x0", "423x0",
"426x420", "423x420",
"0x420" "3x420"
], ],
"printable_height": "501", "printable_height": "501",
"thumbnails": "230x110/PNG", "thumbnails": "230x110/PNG",
@@ -38,24 +38,7 @@
"bbl_use_printhost": "0", "bbl_use_printhost": "0",
"bed_custom_model": "", "bed_custom_model": "",
"bed_custom_texture": "", "bed_custom_texture": "",
"bed_exclude_area": [ "bed_exclude_area": [],
"0x0",
"3x0",
"3x420",
"0x420",
"0x0",
"423x0",
"423x0",
"423x0",
"423x0",
"426x0",
"426x420",
"423x420",
"423x0",
"0x0",
"0x0",
"0x0"
],
"bed_mesh_max": "0,0", "bed_mesh_max": "0,0",
"bed_mesh_min": "0,0", "bed_mesh_min": "0,0",
"bed_mesh_probe_distance": "0,0", "bed_mesh_probe_distance": "0,0",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "10000", "sparse_infill_acceleration": "10000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "450", "sparse_infill_speed": "450",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -201,10 +201,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -271,7 +271,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.22", "sparse_infill_line_width": "0.22",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "4", "wall_loops": "4",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "30%", "small_perimeter_speed": "30%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "10000", "sparse_infill_acceleration": "10000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "430", "sparse_infill_speed": "430",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "80", "smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "3dhoneycomb", "sparse_infill_pattern": "3dhoneycomb",
"sparse_infill_speed": "180", "sparse_infill_speed": "180",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -201,10 +201,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -271,7 +271,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "180", "sparse_infill_speed": "180",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "300", "sparse_infill_speed": "300",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "30%", "small_perimeter_speed": "30%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "300", "sparse_infill_speed": "300",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -201,10 +201,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "300", "sparse_infill_speed": "300",
@@ -271,7 +271,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "350", "sparse_infill_speed": "350",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "80", "smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "30%", "small_perimeter_speed": "30%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "300", "sparse_infill_speed": "300",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -201,10 +201,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "300", "sparse_infill_speed": "300",
@@ -271,7 +271,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "270", "sparse_infill_speed": "270",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "outer wall/inner wall", "wall_sequence": "outer wall/inner wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "300", "sparse_infill_speed": "300",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "30%", "small_perimeter_speed": "30%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -201,10 +201,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -271,7 +271,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "80", "smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "230", "sparse_infill_speed": "230",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120", "sparse_infill_speed": "120",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120", "sparse_infill_speed": "120",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -201,10 +201,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -271,7 +271,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120", "sparse_infill_speed": "120",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "30%", "small_perimeter_speed": "30%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "10000", "sparse_infill_acceleration": "10000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "80", "smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "80", "smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -256,7 +256,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill", "wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2", "wall_loops": "2",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "80", "smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -212,10 +212,10 @@
"smooth_coefficient": "40", "smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1", "smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "5000", "sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -285,7 +285,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -190,10 +190,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "450", "sparse_infill_speed": "450",
@@ -251,7 +251,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10", "wall_transition_angle": "10",

View File

@@ -195,10 +195,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.22", "sparse_infill_line_width": "0.22",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -265,7 +265,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "4", "wall_loops": "4",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -186,10 +186,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"spiral_mode": "0", "spiral_mode": "0",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -188,10 +188,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"spiral_mode": "0", "spiral_mode": "0",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -187,10 +187,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid", "sparse_infill_pattern": "gyroid",
"spiral_mode": "0", "spiral_mode": "0",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -188,10 +188,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"spiral_mode": "0", "spiral_mode": "0",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -191,10 +191,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"spiral_mode": "0", "spiral_mode": "0",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -192,10 +192,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "270", "sparse_infill_speed": "270",
@@ -251,7 +251,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10", "wall_transition_angle": "10",

View File

@@ -181,10 +181,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "3", "wall_loops": "3",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -181,10 +181,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150", "sparse_infill_speed": "150",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "3", "wall_loops": "3",
"wall_sequence": "outer wall/inner wall", "wall_sequence": "outer wall/inner wall",

View File

@@ -181,10 +181,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -181,10 +181,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch", "sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -189,10 +189,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "25%", "sparse_infill_density": "25%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "270", "sparse_infill_speed": "270",
@@ -251,7 +251,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10", "wall_transition_angle": "10",

View File

@@ -186,10 +186,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "230", "sparse_infill_speed": "230",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -195,10 +195,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62", "sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -265,7 +265,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "classic", "wall_generator": "classic",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -195,10 +195,10 @@
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_direction": "45", "solid_infill_direction": "45",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82", "sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "100", "sparse_infill_speed": "100",
@@ -265,7 +265,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

View File

@@ -188,10 +188,10 @@
], ],
"small_perimeter_speed": "50%", "small_perimeter_speed": "50%",
"small_perimeter_threshold": "0", "small_perimeter_threshold": "0",
"solid_infill_filament": "0", "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%", "sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%", "sparse_infill_density": "15%",
"sparse_infill_filament": "0", "sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45", "sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid", "sparse_infill_pattern": "grid",
"sparse_infill_speed": "200", "sparse_infill_speed": "200",
@@ -250,7 +250,7 @@
"tree_support_wall_count": "0", "tree_support_wall_count": "0",
"wall_direction": "auto", "wall_direction": "auto",
"wall_distribution_count": "1", "wall_distribution_count": "1",
"wall_filament": "0", "wall_filament": "1",
"wall_generator": "arachne", "wall_generator": "arachne",
"wall_loops": "2", "wall_loops": "2",
"wall_sequence": "inner wall/outer wall", "wall_sequence": "inner wall/outer wall",

File diff suppressed because it is too large Load Diff

View File

@@ -1,18 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA12-CF10 @BBL X1",
"inherits": "Fiberon PA12-CF10 @base",
"from": "system",
"setting_id": "GFSL56_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
]
}

View File

@@ -1,77 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA12-CF10 @base",
"inherits": "fdm_filament_pa",
"from": "system",
"filament_id": "GFL56",
"instantiation": "false",
"bed_type": [
"Cool Plate"
],
"eng_plate_temp": [
"40"
],
"eng_plate_temp_initial_layer": [
"40"
],
"fan_cooling_layer_time": [
"15"
],
"fan_max_speed": [
"100"
],
"filament_cost": [
"99.99"
],
"filament_density": [
"1.06"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_type": [
"PA-CF"
],
"filament_vendor": [
"Polymaker"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"40"
],
"hot_plate_temp_initial_layer": [
"40"
],
"nozzle_temperature": [
"300"
],
"nozzle_temperature_initial_layer": [
"300"
],
"nozzle_temperature_range_low": [
"280"
],
"overhang_fan_speed": [
"100"
],
"reduce_fan_stop_start_freq": [
"1"
],
"slow_down_min_speed": [
"10"
],
"temperature_vitrification": [
"55"
],
"textured_plate_temp": [
"40"
],
"textured_plate_temp_initial_layer": [
"40"
]
}

View File

@@ -1,18 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA6-CF20 @BBL X1",
"inherits": "Fiberon PA6-CF20 @base",
"from": "system",
"setting_id": "GFSL57_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
]
}

View File

@@ -1,74 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA6-CF20 @base",
"inherits": "fdm_filament_pa",
"from": "system",
"filament_id": "GFL57",
"instantiation": "false",
"bed_type": [
"Cool Plate"
],
"eng_plate_temp": [
"40"
],
"eng_plate_temp_initial_layer": [
"40"
],
"fan_cooling_layer_time": [
"15"
],
"fan_max_speed": [
"100"
],
"filament_cost": [
"83.99"
],
"filament_density": [
"1.17"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_type": [
"PA6-CF"
],
"filament_vendor": [
"Polymaker"
],
"hot_plate_temp": [
"40"
],
"hot_plate_temp_initial_layer": [
"40"
],
"nozzle_temperature": [
"300"
],
"nozzle_temperature_initial_layer": [
"300"
],
"nozzle_temperature_range_low": [
"280"
],
"overhang_fan_speed": [
"100"
],
"reduce_fan_stop_start_freq": [
"1"
],
"slow_down_min_speed": [
"10"
],
"temperature_vitrification": [
"74.2"
],
"textured_plate_temp": [
"40"
],
"textured_plate_temp_initial_layer": [
"40"
]
}

View File

@@ -1,18 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA6-GF25 @BBL X1",
"inherits": "Fiberon PA6-GF25 @base",
"from": "system",
"setting_id": "GFSL58_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
]
}

View File

@@ -1,77 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA6-GF25 @base",
"inherits": "fdm_filament_pa",
"from": "system",
"filament_id": "GFL58",
"instantiation": "false",
"bed_type": [
"Cool Plate"
],
"eng_plate_temp": [
"40"
],
"eng_plate_temp_initial_layer": [
"40"
],
"fan_cooling_layer_time": [
"15"
],
"fan_max_speed": [
"100"
],
"filament_cost": [
"63.99"
],
"filament_density": [
"1.2"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"PA-GF"
],
"filament_vendor": [
"Polymaker"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"40"
],
"hot_plate_temp_initial_layer": [
"40"
],
"nozzle_temperature": [
"300"
],
"nozzle_temperature_initial_layer": [
"300"
],
"nozzle_temperature_range_low": [
"280"
],
"overhang_fan_speed": [
"100"
],
"reduce_fan_stop_start_freq": [
"1"
],
"slow_down_min_speed": [
"10"
],
"temperature_vitrification": [
"70.4"
],
"textured_plate_temp": [
"40"
],
"textured_plate_temp_initial_layer": [
"40"
]
}

View File

@@ -1,18 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA612-CF15 @BBL X1",
"inherits": "Fiberon PA612-CF15 @base",
"from": "system",
"setting_id": "GFSL59_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
]
}

View File

@@ -1,53 +0,0 @@
{
"type": "filament",
"name": "Fiberon PA612-CF15 @base",
"inherits": "fdm_filament_pa",
"from": "system",
"filament_id": "GFL59",
"instantiation": "false",
"bed_type": [
"Cool Plate"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_cost": [
"94.99"
],
"filament_density": [
"1.03"
],
"filament_flow_ratio": [
"0.96"
],
"filament_type": [
"PA-CF"
],
"filament_vendor": [
"Polymaker"
],
"full_fan_speed_layer": [
"2"
],
"nozzle_temperature_range_low": [
"250"
],
"overhang_fan_speed": [
"40"
],
"overhang_fan_threshold": [
"0%"
],
"slow_down_min_speed": [
"10"
],
"temperature_vitrification": [
"206.2"
]
}

View File

@@ -1,33 +0,0 @@
{
"type": "filament",
"name": "Fiberon PET-CF17 @BBL X1",
"inherits": "Fiberon PET-CF17 @base",
"from": "system",
"setting_id": "GFSL60_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"required_nozzle_HRC": [
"40"
],
"supertack_plate_temp": [
"80"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"filament_adhesiveness_category": [
"800"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
]
}

View File

@@ -1,33 +0,0 @@
{
"type": "filament",
"name": "Fiberon PETG-ESD @BBL X1",
"inherits": "Fiberon PETG-ESD @base",
"from": "system",
"setting_id": "GFSL06_01",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
],
"overhang_fan_speed": [
"70"
],
"filament_cost": [
"29.99"
],
"bed_type": [
"Cool Plate"
],
"fan_max_speed": [
"80"
],
"temperature_vitrification": [
"77"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
]
}

View File

@@ -1,92 +0,0 @@
{
"type": "filament",
"name": "Fiberon PETG-rCF08 @BBL X1",
"inherits": "Fiberon PETG-rCF08 @base",
"from": "system",
"setting_id": "GFSL61_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle"
],
"filament_deretraction_speed": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"required_nozzle_HRC": [
"40"
],
"filament_flush_temp": [
"0"
],
"filament_flush_volumetric_speed": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_ramming_volumetric_speed": [
"-1"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0"
],
"filament_ramming_travel_time": [
"0"
],
"filament_adaptive_volumetric_speed": [
"0"
],
"long_retractions_when_ec": [
"0"
],
"retraction_distances_when_ec": [
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0"
]
}

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