mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-02 16:41:11 +00:00
Compare commits
25 Commits
fix/retrac
...
nightly-bu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbe99d0d6f | ||
|
|
5bccc25705 | ||
|
|
a6ccbced03 | ||
|
|
c7b28565ef | ||
|
|
66b3e27af3 | ||
|
|
3bc2c51fe9 | ||
|
|
187beb68c3 | ||
|
|
7d62ded630 | ||
|
|
395e070a0e | ||
|
|
895488048c | ||
|
|
ff556f2867 | ||
|
|
81546a1b56 | ||
|
|
ec954696b4 | ||
|
|
f516f47c8e | ||
|
|
6b886b04f2 | ||
|
|
ac79886c5c | ||
|
|
43a83397d4 | ||
|
|
ced980e6a8 | ||
|
|
57297d5ab1 | ||
|
|
49fe64cb07 | ||
|
|
8d84204aeb | ||
|
|
9af07685fd | ||
|
|
e39be23d6d | ||
|
|
8ba9630e53 | ||
|
|
1a89c18ff2 |
127
.github/workflows/check_profiles.yml
vendored
127
.github/workflows/check_profiles.yml
vendored
@@ -57,17 +57,121 @@ 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
|
||||
continue-on-error: true
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
set +e
|
||||
curl -LJO https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/orca_custom_preset_tests.zip
|
||||
unzip -q ./orca_custom_preset_tests.zip -d ${{ github.workspace }}/resources/profiles
|
||||
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log
|
||||
exit ${PIPESTATUS[0]}
|
||||
fixtures_dir="${{ runner.temp }}/profile-fixtures"
|
||||
output_dir="${{ runner.temp }}/custom-preset-validation"
|
||||
combined_log="${{ runner.temp }}/validate_custom.log"
|
||||
summary="${output_dir}/summary.md"
|
||||
release_url="https://github.com/OrcaSlicer/OrcaSlicer-profile-validator/releases/download/fixture-archive"
|
||||
|
||||
rm -rf "${fixtures_dir}" "${output_dir}"
|
||||
mkdir -p "${fixtures_dir}" "${output_dir}"
|
||||
|
||||
curl -fsSL -o "${fixtures_dir}/manifest.json" "${release_url}/manifest.json"
|
||||
|
||||
MANIFEST_PATH="${fixtures_dir}/manifest.json" python3 <<'PY' > "${fixtures_dir}/fixtures.tsv"
|
||||
import json
|
||||
import os
|
||||
|
||||
with open(os.environ["MANIFEST_PATH"], encoding="utf-8") as fh:
|
||||
manifest = json.load(fh)
|
||||
|
||||
if isinstance(manifest, dict):
|
||||
entries = manifest.get("fixtures", [])
|
||||
else:
|
||||
entries = manifest
|
||||
|
||||
for entry in entries:
|
||||
version = entry.get("version", "")
|
||||
asset = entry.get("asset", "")
|
||||
sha256 = entry.get("asset_sha256", "")
|
||||
if not version or not asset:
|
||||
continue
|
||||
print(f"{version}\t{asset}\t{sha256}")
|
||||
PY
|
||||
|
||||
if [ ! -s "${fixtures_dir}/fixtures.tsv" ]; then
|
||||
echo "No custom preset fixtures found in ${release_url}/manifest.json" | tee "${combined_log}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
{
|
||||
echo "## Custom Preset Fixture Validation"
|
||||
echo ""
|
||||
echo "| Version | Status | Log |"
|
||||
echo "| --- | --- | --- |"
|
||||
} > "${summary}"
|
||||
|
||||
status=0
|
||||
failed_logs=()
|
||||
|
||||
while IFS=$'\t' read -r version asset expected_sha256; do
|
||||
fixture_zip="${fixtures_dir}/${asset}"
|
||||
asset_url_name="$(python3 -c 'import sys, urllib.parse; print(urllib.parse.quote(sys.argv[1], safe=""))' "${asset}")"
|
||||
profile_tree="${output_dir}/profiles-${version}"
|
||||
log_path="${output_dir}/${version}.log"
|
||||
|
||||
curl -fsSL -o "${fixture_zip}" "${release_url}/${asset_url_name}"
|
||||
|
||||
if [ -n "${expected_sha256}" ] && [ "${expected_sha256}" != "<sha256>" ]; then
|
||||
echo "${expected_sha256} ${fixture_zip}" | sha256sum -c -
|
||||
fi
|
||||
|
||||
rm -rf "${profile_tree}"
|
||||
mkdir -p "${profile_tree}"
|
||||
cp -a "${{ github.workspace }}/resources/profiles/." "${profile_tree}/"
|
||||
rm -rf "${profile_tree}/user"
|
||||
unzip -q "${fixture_zip}" -d "${profile_tree}"
|
||||
|
||||
set +e
|
||||
./OrcaSlicer_profile_validator -p "${profile_tree}" -l 2 > "${log_path}" 2>&1
|
||||
result=$?
|
||||
set -e
|
||||
|
||||
if [ "${result}" -eq 0 ]; then
|
||||
echo "| ${version} | PASS | ${version}.log |" >> "${summary}"
|
||||
else
|
||||
echo "| ${version} | FAIL | ${version}.log |" >> "${summary}"
|
||||
failed_logs+=("${log_path}")
|
||||
status=1
|
||||
fi
|
||||
done < "${fixtures_dir}/fixtures.tsv"
|
||||
|
||||
{
|
||||
cat "${summary}"
|
||||
if [ "${#failed_logs[@]}" -gt 0 ]; then
|
||||
echo ""
|
||||
echo "## Failed Fixture Logs"
|
||||
for log_path in "${failed_logs[@]}"; do
|
||||
echo ""
|
||||
echo "### $(basename "${log_path}" .log)"
|
||||
echo '```'
|
||||
head -c 12000 "${log_path}" || echo "No output captured"
|
||||
echo '```'
|
||||
done
|
||||
fi
|
||||
} | tee "${combined_log}"
|
||||
|
||||
exit "${status}"
|
||||
|
||||
- name: Prepare PR number for comment workflow
|
||||
if: ${{ always() && github.event_name == 'pull_request' }}
|
||||
@@ -76,7 +180,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 +215,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 +246,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
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Optimal 0.6 nozzle @Anker",
|
||||
"renamed_from": "0.20mm Optimal 0.6 nozzle @Anker.json",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"from": "system",
|
||||
"setting_id": "re5qmcOFJ1OJP3Ip",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Tough @BBL X1C",
|
||||
"renamed_from": "Bambu PLA Impact @BBL X1C",
|
||||
"inherits": "Bambu PLA Tough @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA09_02",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL A1",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL A1",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_00",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL A1M",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL A1M",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_02",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL P1P",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL P1P",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_04",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL X1",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL X1",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_06",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @BBL X1C",
|
||||
"renamed_from": "0.20mm Bambu Support W @BBL X1C",
|
||||
"inherits": "fdm_process_single_0.20",
|
||||
"from": "system",
|
||||
"setting_id": "GP004",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm Fine @Creality Ender3V3SE 0.4",
|
||||
"renamed_from": "0.12mm Fine @Creality Ender3V3SE",
|
||||
"inherits": "fdm_process_creality_common",
|
||||
"from": "system",
|
||||
"setting_id": "W68mSPdmat2rCXuD",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Optimal @Creality Ender3V3SE 0.4",
|
||||
"renamed_from": "0.16mm Optimal @Creality Ender3V3SE",
|
||||
"inherits": "fdm_process_creality_common",
|
||||
"from": "system",
|
||||
"setting_id": "jvnrh3jh6Btbs1Ja",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @Creality Ender3V3SE 0.4",
|
||||
"renamed_from": "0.20mm Standard @Creality Ender3V3SE",
|
||||
"inherits": "fdm_process_creality_common",
|
||||
"from": "system",
|
||||
"setting_id": "YLkw9eyyK7cm97ek",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @Creality K1 SE",
|
||||
"renamed_from": "0.20mm Fast @Creality K1 SE 0.4",
|
||||
"inherits": "fdm_process_creality_common",
|
||||
"from": "system",
|
||||
"setting_id": "eR9pRC1qPENNx8U9",
|
||||
@@ -264,4 +265,4 @@
|
||||
"wipe_tower_extra_spacing": "100%",
|
||||
"wipe_tower_rotation_angle": "0",
|
||||
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @Creality Ender3V3SE 0.4",
|
||||
"renamed_from": "0.24mm Draft @Creality Ender3V3SE",
|
||||
"inherits": "fdm_process_creality_common",
|
||||
"from": "system",
|
||||
"setting_id": "Hg10EUNCLMEYYBN1",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.48mm Draft @Creality K1C",
|
||||
"renamed_from": "0.48mm Draft @Creality K1C (0.8 nozzle)",
|
||||
"inherits": "fdm_process_common_klipper",
|
||||
"from": "system",
|
||||
"setting_id": "qaiff3f8gSQ1GVj1",
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"type": "filament",
|
||||
"setting_id": "pKzSR8XeyyUDbrNW",
|
||||
"name": "Generic PETG PRO @Elegoo",
|
||||
"renamed_from": "Elegoo Generic PETG PRO",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PETG @base",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Ginger Generic PETG",
|
||||
"renamed_from": "Ginger Generic rPETG",
|
||||
"inherits": "fdm_filament_common",
|
||||
"from": "system",
|
||||
"setting_id": "ue95N2e65rdp5K6c",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Ginger Generic PLA",
|
||||
"renamed_from": "Ginger Generic rPLA",
|
||||
"inherits": "fdm_filament_common",
|
||||
"from": "system",
|
||||
"setting_id": "Z1scjKDBFoDaTa2C",
|
||||
|
||||
@@ -18,5 +18,5 @@
|
||||
"5"
|
||||
],
|
||||
"compatible_printers": [],
|
||||
"renamed_from": "Elegoo PETG PRO"
|
||||
"renamed_from": "Elegoo PETG PRO;Elegoo PETG Pro @System"
|
||||
}
|
||||
|
||||
@@ -33,5 +33,5 @@
|
||||
"250"
|
||||
],
|
||||
"compatible_printers": [],
|
||||
"renamed_from": "Elegoo Rapid PETG;Elegoo Rapid PETG+"
|
||||
"renamed_from": "Elegoo Rapid PETG;Elegoo Rapid PETG+;Elegoo RAPID PETG;Elegoo RAPID PETG+"
|
||||
}
|
||||
|
||||
@@ -45,5 +45,5 @@
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\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}"
|
||||
],
|
||||
"compatible_printers": [],
|
||||
"renamed_from": "Elegoo Rapid PLA+"
|
||||
"renamed_from": "Elegoo Rapid PLA+;Elegoo RAPID PLA+"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Peopoly Generic PLA",
|
||||
"renamed_from": "Peopoly Generic PLA 0.8 nozzle",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "KNsVV4dvEWAAkzDE",
|
||||
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user