mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-02 08:31:13 +00:00
Compare commits
16 Commits
feat/updat
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d85a9c9d5 | ||
|
|
395e070a0e | ||
|
|
895488048c | ||
|
|
ff556f2867 | ||
|
|
81546a1b56 | ||
|
|
ec954696b4 | ||
|
|
f516f47c8e | ||
|
|
6b886b04f2 | ||
|
|
ac79886c5c | ||
|
|
57297d5ab1 | ||
|
|
49fe64cb07 | ||
|
|
8d84204aeb | ||
|
|
9af07685fd | ||
|
|
e39be23d6d | ||
|
|
8ba9630e53 | ||
|
|
1a89c18ff2 |
4
.github/workflows/build_all.yml
vendored
4
.github/workflows/build_all.yml
vendored
@@ -223,14 +223,14 @@ jobs:
|
||||
# Manage flatpak-builder cache externally so PRs restore but never upload
|
||||
- name: Restore flatpak-builder cache
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/cache/restore@v5
|
||||
uses: actions/cache/restore@v6
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.event.pull_request.base.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- name: Save/restore flatpak-builder cache
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v6
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
|
||||
|
||||
2
.github/workflows/build_check_cache.yml
vendored
2
.github/workflows/build_check_cache.yml
vendored
@@ -46,7 +46,7 @@ jobs:
|
||||
|
||||
- name: load cache
|
||||
id: cache_deps
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v6
|
||||
with:
|
||||
path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||
key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||
|
||||
2
.github/workflows/build_deps.yml
vendored
2
.github/workflows/build_deps.yml
vendored
@@ -39,7 +39,7 @@ jobs:
|
||||
lfs: 'false'
|
||||
|
||||
- name: load cached deps
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v6
|
||||
with:
|
||||
path: ${{ inputs.cache-path }}
|
||||
key: ${{ inputs.cache-key }}
|
||||
|
||||
2
.github/workflows/build_orca.yml
vendored
2
.github/workflows/build_orca.yml
vendored
@@ -43,7 +43,7 @@ jobs:
|
||||
|
||||
- name: load cached deps
|
||||
if: ${{ !(runner.os == 'macOS' && inputs.macos-combine-only) }}
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v6
|
||||
with:
|
||||
path: ${{ inputs.cache-path }}
|
||||
key: ${{ inputs.cache-key }}
|
||||
|
||||
27
.github/workflows/check_profiles.yml
vendored
27
.github/workflows/check_profiles.yml
vendored
@@ -57,6 +57,20 @@ jobs:
|
||||
set +e
|
||||
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log
|
||||
exit ${PIPESTATUS[0]}
|
||||
# Flag inherits/compatible_printers/compatible_prints references that point at a deleted or
|
||||
# renamed preset. Opt-in per vendor for now (via -r); enabled for BBL and Qidi until other
|
||||
# vendors' profiles are cleaned up. Runs before the custom-preset injection below.
|
||||
- name: validate preset references for BBL and Qidi profiles
|
||||
id: validate_preset_references
|
||||
continue-on-error: true
|
||||
run: |
|
||||
set +e
|
||||
rc=0
|
||||
for v in BBL Qidi; do
|
||||
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v "$v" -r 2>&1 | tee -a ${{ runner.temp }}/validate_preset_references.log
|
||||
[ ${PIPESTATUS[0]} -ne 0 ] && rc=1
|
||||
done
|
||||
exit $rc
|
||||
|
||||
- name: validate custom presets
|
||||
id: validate_custom
|
||||
@@ -76,7 +90,7 @@ jobs:
|
||||
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_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
run: |
|
||||
{
|
||||
# Marker matched by check_profiles_comment.yml to delete prior comments.
|
||||
@@ -111,6 +125,15 @@ jobs:
|
||||
echo ""
|
||||
fi
|
||||
|
||||
if [ "${{ steps.validate_preset_references.outcome }}" = "failure" ]; then
|
||||
echo "### BBL/Qidi Preset Reference Validation Failed"
|
||||
echo ""
|
||||
echo '```'
|
||||
head -c 30000 ${{ runner.temp }}/validate_preset_references.log || echo "No output captured"
|
||||
echo '```'
|
||||
echo ""
|
||||
fi
|
||||
|
||||
if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then
|
||||
echo "### Custom Preset Validation Failed"
|
||||
echo ""
|
||||
@@ -133,7 +156,7 @@ jobs:
|
||||
retention-days: 1
|
||||
|
||||
- name: Fail if any check failed
|
||||
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
run: |
|
||||
echo "One or more profile checks failed. See above for details."
|
||||
exit 1
|
||||
|
||||
2
.github/workflows/shellcheck.yml
vendored
2
.github/workflows/shellcheck.yml
vendored
@@ -21,7 +21,7 @@ jobs:
|
||||
steps:
|
||||
- name: Cache shellcheck download
|
||||
id: cache-shellcheck-v0_11
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v6
|
||||
with:
|
||||
path: ~/shellcheck
|
||||
key: ${{ runner.os }}-shellcheck-v0_11
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Qidi",
|
||||
"version": "02.04.00.05",
|
||||
"version": "02.04.00.06",
|
||||
"force_update": "0",
|
||||
"description": "Qidi configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.014"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -25,9 +25,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -46,9 +46,6 @@
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle",
|
||||
|
||||
@@ -46,9 +46,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -46,9 +46,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -22,9 +22,6 @@
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -22,9 +22,6 @@
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.014"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -25,9 +25,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -46,9 +46,6 @@
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle",
|
||||
|
||||
@@ -46,9 +46,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -46,9 +46,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -22,9 +22,6 @@
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -22,9 +22,6 @@
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.018"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.017"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.009"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.018"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.2 nozzle",
|
||||
"Qidi X-Max 0.2 nozzle",
|
||||
"Qidi X-CF Pro 0.2 nozzle",
|
||||
"Qidi X-Smart 3 0.2 nozzle",
|
||||
"Qidi X-Plus 3 0.2 nozzle",
|
||||
"Qidi X-Max 3 0.2 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.017"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.6 nozzle",
|
||||
"Qidi X-Max 0.6 nozzle",
|
||||
"Qidi X-CF Pro 0.6 nozzle",
|
||||
"Qidi X-Smart 3 0.6 nozzle",
|
||||
"Qidi X-Plus 3 0.6 nozzle",
|
||||
"Qidi X-Max 3 0.6 nozzle"
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
"0.009"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.8 nozzle",
|
||||
"Qidi X-Max 0.8 nozzle",
|
||||
"Qidi X-CF Pro 0.8 nozzle",
|
||||
"Qidi X-Smart 3 0.8 nozzle",
|
||||
"Qidi X-Plus 3 0.8 nozzle",
|
||||
"Qidi X-Max 3 0.8 nozzle"
|
||||
|
||||
@@ -102,4 +102,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB99",
|
||||
"name": "Bambu ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "GFB99",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"45"
|
||||
],
|
||||
@@ -102,4 +102,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "yHD2P97YYI869y1a",
|
||||
"name": "Bambu ABS @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "yHD2P97YYI869y1a",
|
||||
"instantiation": "true",
|
||||
"chamber_temperature": [
|
||||
"0"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "dIUVKJDEofMGqc8C",
|
||||
"name": "Bambu ABS @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "dIUVKJDEofMGqc8C",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.03"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "0leYv1TdNe38wFpf",
|
||||
"name": "Bambu ABS @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "0leYv1TdNe38wFpf",
|
||||
"instantiation": "true",
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "BvoaoxjqBQLvupeM",
|
||||
"name": "Bambu ABS @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "BvoaoxjqBQLvupeM",
|
||||
"instantiation": "true",
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
|
||||
@@ -99,4 +99,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFG99",
|
||||
"name": "Bambu PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "GFG99",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"45"
|
||||
],
|
||||
@@ -99,4 +99,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "DR6lPjo6HXfJPRev",
|
||||
"name": "Bambu PETG @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "DR6lPjo6HXfJPRev",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "abyo9tUNfJ41WD2x",
|
||||
"name": "Bambu PETG @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "abyo9tUNfJ41WD2x",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.056"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "cG6FXCNr8n34Asel",
|
||||
"name": "Bambu PETG @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "cG6FXCNr8n34Asel",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.04"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "3Opgt1lYHnCWi4G6",
|
||||
"name": "Bambu PETG @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "3Opgt1lYHnCWi4G6",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.04"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"name": "Bambu PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "GFL99",
|
||||
"instantiation": "false",
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "WIoSfzFsVr63PIJn",
|
||||
"name": "Bambu PLA @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "WIoSfzFsVr63PIJn",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "6R2VF4VRx4OsEAIr",
|
||||
"name": "Bambu PLA @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "6R2VF4VRx4OsEAIr",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.034"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "4nf4gNkkvFnDbzRa",
|
||||
"name": "Bambu PLA @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "4nf4gNkkvFnDbzRa",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.016"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "CHcUut3zMsRJAIcx",
|
||||
"name": "Bambu PLA @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Bambu PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "CHcUut3zMsRJAIcx",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.008"
|
||||
],
|
||||
|
||||
@@ -105,4 +105,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "QD_2_0_11",
|
||||
"name": "Generic ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "QD_2_0_11",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"45"
|
||||
],
|
||||
@@ -105,4 +105,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "fcId8eFG20nodipB",
|
||||
"name": "Generic ABS @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "fcId8eFG20nodipB",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "nCmyUKILQpR1nypd",
|
||||
"name": "Generic ABS @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "nCmyUKILQpR1nypd",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.03"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "7wsHMKJwQfUfZ3za",
|
||||
"name": "Generic ABS @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "7wsHMKJwQfUfZ3za",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"24.5"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "XLORH5X2VLIxTozv",
|
||||
"name": "Generic ABS @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "XLORH5X2VLIxTozv",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"24.5"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "QD_2_0_23",
|
||||
"name": "Generic PC@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "QD_2_0_23",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"65"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "khy9tY2jZWHSlIYt",
|
||||
"name": "Generic PC @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PC@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "khy9tY2jZWHSlIYt",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "Wcm3rVsaUpou9xRq",
|
||||
"name": "Generic PC @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PC@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "Wcm3rVsaUpou9xRq",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "8pHle7WRU4FL2qfo",
|
||||
"name": "Generic PC @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PC@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "8pHle7WRU4FL2qfo",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "ymIxEf9ioip57TML",
|
||||
"name": "Generic PC @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PC@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "ymIxEf9ioip57TML",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
|
||||
@@ -102,4 +102,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "QD_2_0_41",
|
||||
"name": "Generic PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "QD_2_0_41",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"45"
|
||||
],
|
||||
@@ -102,4 +102,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "IcynzuX5ojXgX2dk",
|
||||
"name": "Generic PETG @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "IcynzuX5ojXgX2dk",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "7QauCi8rhighWkri",
|
||||
"name": "Generic PETG @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "7QauCi8rhighWkri",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.056"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "AM1y4FYs7fv4WTTo",
|
||||
"name": "Generic PETG @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "AM1y4FYs7fv4WTTo",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.04"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "b3TpL9kGWf1wSydw",
|
||||
"name": "Generic PETG @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "b3TpL9kGWf1wSydw",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.04"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "QD_2_0_1",
|
||||
"name": "Generic PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "QD_2_0_1",
|
||||
"instantiation": "false",
|
||||
"additional_cooling_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "CWSMY19Jhd6LzFUN",
|
||||
"name": "Generic PLA @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "CWSMY19Jhd6LzFUN",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "kraVpglrBGD9sQyx",
|
||||
"name": "Generic PLA @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "kraVpglrBGD9sQyx",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.034"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "0DL2rwUIpvOFPKE0",
|
||||
"name": "Generic PLA @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "0DL2rwUIpvOFPKE0",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.016"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "wtOTxeDyt3j7HsQD",
|
||||
"name": "Generic PLA @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "wtOTxeDyt3j7HsQD",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.008"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "QD_2_0_4",
|
||||
"name": "Generic PLA Silk@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "QD_2_0_4",
|
||||
"instantiation": "false",
|
||||
"additional_cooling_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "tsr5C6eghwRIitda",
|
||||
"name": "Generic PLA Silk @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA Silk@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "tsr5C6eghwRIitda",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Qidi Q2C 0.4 nozzle"
|
||||
]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "5V4coBYC2JEZQSbX",
|
||||
"name": "Generic PLA Silk @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA Silk@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "5V4coBYC2JEZQSbX",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.014"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"name": "Generic PLA+@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "GFL99",
|
||||
"instantiation": "false",
|
||||
"additional_cooling_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "cP5qtEGISpluvrXW",
|
||||
"name": "Generic PLA+ @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA+@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "cP5qtEGISpluvrXW",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "INOTrdxOY3ewHs3Z",
|
||||
"name": "Generic PLA+ @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA+@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "INOTrdxOY3ewHs3Z",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.034"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "QWeloGY9T9GkaFK1",
|
||||
"name": "Generic PLA+ @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA+@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "QWeloGY9T9GkaFK1",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.016"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "C2oqTFXtdd2clnM3",
|
||||
"name": "Generic PLA+ @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA+@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "C2oqTFXtdd2clnM3",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.008"
|
||||
],
|
||||
|
||||
@@ -78,4 +78,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"30"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "QD_2_0_50",
|
||||
"name": "Generic TPU 95A@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "QD_2_0_50",
|
||||
"instantiation": "false",
|
||||
"filament_adhesiveness_category": [
|
||||
"600"
|
||||
],
|
||||
@@ -78,4 +78,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"30"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "HeDaMTs4C6suBJvO",
|
||||
"name": "Generic TPU 95A @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic TPU 95A@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "HeDaMTs4C6suBJvO",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Qidi Q2C 0.4 nozzle"
|
||||
]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "TOHG37PMxN9MzVub",
|
||||
"name": "Generic TPU 95A @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic TPU 95A@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "TOHG37PMxN9MzVub",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Qidi Q2C 0.6 nozzle"
|
||||
]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "HqURiXvBLRyvLAxP",
|
||||
"name": "Generic TPU 95A @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic TPU 95A@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "HqURiXvBLRyvLAxP",
|
||||
"instantiation": "true",
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
],
|
||||
|
||||
@@ -102,4 +102,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB99",
|
||||
"name": "HATCHBOX ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "GFB99",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"45"
|
||||
],
|
||||
@@ -99,4 +99,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "UesqbiCMHRmklDRk",
|
||||
"name": "HATCHBOX ABS @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "UesqbiCMHRmklDRk",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "mEWH2YlONmNpempZ",
|
||||
"name": "HATCHBOX ABS @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "mEWH2YlONmNpempZ",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.03"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "khy95fONrq7reiSC",
|
||||
"name": "HATCHBOX ABS @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "khy95fONrq7reiSC",
|
||||
"instantiation": "true",
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "sHLcYLMcJTimp3ru",
|
||||
"name": "HATCHBOX ABS @Qidi Q2C 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "sHLcYLMcJTimp3ru",
|
||||
"instantiation": "true",
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
|
||||
@@ -99,4 +99,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFG99",
|
||||
"name": "HATCHBOX PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_q_common",
|
||||
"from": "system",
|
||||
"filament_id": "GFG99",
|
||||
"instantiation": "false",
|
||||
"box_temperature_range_high": [
|
||||
"45"
|
||||
],
|
||||
@@ -99,4 +99,4 @@
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "bZMXQWqTu8l3MYJi",
|
||||
"name": "HATCHBOX PETG @Qidi Q2C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "bZMXQWqTu8l3MYJi",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "DekQbcVeKQg9v5Zr",
|
||||
"name": "HATCHBOX PETG @Qidi Q2C 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "DekQbcVeKQg9v5Zr",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.056"
|
||||
],
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "zVhQ76dkj0h0CQYk",
|
||||
"name": "HATCHBOX PETG @Qidi Q2C 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||
"from": "system",
|
||||
"setting_id": "zVhQ76dkj0h0CQYk",
|
||||
"instantiation": "true",
|
||||
"pressure_advance": [
|
||||
"0.04"
|
||||
],
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user