mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-09 18:27:00 +00:00
Fixes invalid inherits/compatible_printers/compatible_prints references that point at a deleted or renamed preset. (#14595)
* fix profile reference for Creality * fix profile reference for Blocks * fix profile reference for OrcaArena * fix profile reference for re3D * fix profile reference for Chuanying * fix profile reference for Prusa * fix profile reference for Wanhao France * fix profile reference for MagicMaker * fix profile reference for Afinia Remove the ABS/ABS+/PLA/TPU/Value ABS/Value PLA filament presets that referenced the non-existent "Afinia H400 Pro" printer. The real printer is "Afinia H+1(HS)", already served by the @HS filament variants. * fix profile reference for Comgrow Remove the orphaned "0.20mm Standard @Comgrow T500 1.0" process preset and its process_list entry. Its only compatible printer "Comgrow T500 1.0 nozzle" never existed (the T500 model defines nozzle diameters 0.4/0.6/0.8 only). * always run check_preset_references
This commit is contained in:
29
.github/workflows/check_profiles.yml
vendored
29
.github/workflows/check_profiles.yml
vendored
@@ -41,7 +41,7 @@ jobs:
|
|||||||
curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly
|
curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly
|
||||||
chmod +x ./OrcaSlicer_profile_validator
|
chmod +x ./OrcaSlicer_profile_validator
|
||||||
|
|
||||||
# validate profiles
|
# Validate all system profiles.
|
||||||
- name: validate system profiles
|
- name: validate system profiles
|
||||||
id: validate_system
|
id: validate_system
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
@@ -57,20 +57,6 @@ jobs:
|
|||||||
set +e
|
set +e
|
||||||
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log
|
./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]}
|
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
|
- name: validate custom presets
|
||||||
id: validate_custom
|
id: validate_custom
|
||||||
@@ -180,7 +166,7 @@ jobs:
|
|||||||
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
|
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
|
||||||
|
|
||||||
- name: Prepare comment artifact
|
- 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_preset_references.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_custom.outcome == 'failure') }}
|
||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
# Marker matched by check_profiles_comment.yml to delete prior comments.
|
# Marker matched by check_profiles_comment.yml to delete prior comments.
|
||||||
@@ -215,15 +201,6 @@ jobs:
|
|||||||
echo ""
|
echo ""
|
||||||
fi
|
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
|
if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then
|
||||||
echo "### Custom Preset Validation Failed"
|
echo "### Custom Preset Validation Failed"
|
||||||
echo ""
|
echo ""
|
||||||
@@ -246,7 +223,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_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.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_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
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Afinia",
|
"name": "Afinia",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Afinia configurations",
|
"description": "Afinia configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -124,14 +124,6 @@
|
|||||||
"name": "fdm_filament_tpu",
|
"name": "fdm_filament_tpu",
|
||||||
"sub_path": "filament/fdm_filament_tpu.json"
|
"sub_path": "filament/fdm_filament_tpu.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Afinia ABS",
|
|
||||||
"sub_path": "filament/Afinia ABS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Afinia ABS+",
|
|
||||||
"sub_path": "filament/Afinia ABS+.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Afinia ABS+@HS",
|
"name": "Afinia ABS+@HS",
|
||||||
"sub_path": "filament/Afinia ABS+@HS.json"
|
"sub_path": "filament/Afinia ABS+@HS.json"
|
||||||
@@ -140,34 +132,18 @@
|
|||||||
"name": "Afinia ABS@HS",
|
"name": "Afinia ABS@HS",
|
||||||
"sub_path": "filament/Afinia ABS@HS.json"
|
"sub_path": "filament/Afinia ABS@HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Afinia Value ABS",
|
|
||||||
"sub_path": "filament/Afinia Value ABS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Afinia Value ABS@HS",
|
"name": "Afinia Value ABS@HS",
|
||||||
"sub_path": "filament/Afinia Value ABS@HS.json"
|
"sub_path": "filament/Afinia Value ABS@HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Afinia PLA",
|
|
||||||
"sub_path": "filament/Afinia PLA.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Afinia PLA@HS",
|
"name": "Afinia PLA@HS",
|
||||||
"sub_path": "filament/Afinia PLA@HS.json"
|
"sub_path": "filament/Afinia PLA@HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Afinia Value PLA",
|
|
||||||
"sub_path": "filament/Afinia Value PLA.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Afinia Value PLA@HS",
|
"name": "Afinia Value PLA@HS",
|
||||||
"sub_path": "filament/Afinia Value PLA@HS.json"
|
"sub_path": "filament/Afinia Value PLA@HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Afinia TPU",
|
|
||||||
"sub_path": "filament/Afinia TPU.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Afinia TPU@HS",
|
"name": "Afinia TPU@HS",
|
||||||
"sub_path": "filament/Afinia TPU@HS.json"
|
"sub_path": "filament/Afinia TPU@HS.json"
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"filament_id": "GFB00",
|
|
||||||
"setting_id": "i5tf9foHnTVNmA2r",
|
|
||||||
"name": "Afinia ABS+",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"inherits": "fdm_filament_abs",
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"24.99"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Afinia"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"16"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"275"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"275"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"Afinia H400 Pro 0.4 nozzle",
|
|
||||||
"Afinia H400 Pro 0.6 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"filament_id": "GFB00",
|
|
||||||
"setting_id": "LhDHvMepbh8ecfQT",
|
|
||||||
"name": "Afinia ABS",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"inherits": "fdm_filament_abs",
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"24.99"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Afinia"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"16"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"Afinia H400 Pro 0.4 nozzle",
|
|
||||||
"Afinia H400 Pro 0.6 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"filament_id": "GFA00",
|
|
||||||
"setting_id": "1qEFsay7kjYIUkpG",
|
|
||||||
"name": "Afinia PLA",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"filament_cost": [
|
|
||||||
"24.99"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.26"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.98"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"21"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Afinia"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"18"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"Afinia H400 Pro 0.4 nozzle",
|
|
||||||
"Afinia H400 Pro 0.6 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Afinia TPU",
|
|
||||||
"inherits": "fdm_filament_tpu",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "E7WBTARZ971LaDMj",
|
|
||||||
"filament_id": "GFU01",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_vendor": [
|
|
||||||
"Afinia"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.22"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"230"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"41.99"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"230"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"Afinia H400 Pro 0.4 nozzle",
|
|
||||||
"Afinia H400 Pro 0.6 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"filament_id": "GFB00",
|
|
||||||
"setting_id": "jEYVpOPBjFtQ0DXn",
|
|
||||||
"name": "Afinia Value ABS",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"inherits": "fdm_filament_abs",
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"24.99"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Afinia"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"16"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"245"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"245"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"Afinia H400 Pro 0.4 nozzle",
|
|
||||||
"Afinia H400 Pro 0.6 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"filament_id": "GFA00",
|
|
||||||
"setting_id": "oNBk0IxmW7C99WI3",
|
|
||||||
"name": "Afinia Value PLA",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"filament_cost": [
|
|
||||||
"24.99"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.26"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.98"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"21"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Afinia"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"18"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"190"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"190"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"Afinia H400 Pro 0.4 nozzle",
|
|
||||||
"Afinia H400 Pro 0.6 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Blocks",
|
"name": "Blocks",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Blocks configurations",
|
"description": "Blocks configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -85,10 +85,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,10 +85,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,10 +85,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,10 +91,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,10 +16,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,10 +16,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,14 +87,11 @@
|
|||||||
"BLOCKS Pro S100 0.8 nozzle",
|
"BLOCKS Pro S100 0.8 nozzle",
|
||||||
"BLOCKS Pro S100 1.0 nozzle",
|
"BLOCKS Pro S100 1.0 nozzle",
|
||||||
"BLOCKS Pro S100 1.2 nozzle",
|
"BLOCKS Pro S100 1.2 nozzle",
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,10 +22,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,14 +45,11 @@
|
|||||||
"BLOCKS Pro S100 0.8 nozzle",
|
"BLOCKS Pro S100 0.8 nozzle",
|
||||||
"BLOCKS Pro S100 1.0 nozzle",
|
"BLOCKS Pro S100 1.0 nozzle",
|
||||||
"BLOCKS Pro S100 1.2 nozzle",
|
"BLOCKS Pro S100 1.2 nozzle",
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,10 +16,8 @@
|
|||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,14 +60,11 @@
|
|||||||
"BLOCKS Pro S100 0.8 nozzle",
|
"BLOCKS Pro S100 0.8 nozzle",
|
||||||
"BLOCKS Pro S100 1.0 nozzle",
|
"BLOCKS Pro S100 1.0 nozzle",
|
||||||
"BLOCKS Pro S100 1.2 nozzle",
|
"BLOCKS Pro S100 1.2 nozzle",
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle",
|
"BLOCKS RD50 V2 0.4 nozzle",
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RF50 0.4 nozzle",
|
"BLOCKS RF50 0.4 nozzle",
|
||||||
"BLOCKS RF50 0.6 nozzle",
|
"BLOCKS RF50 0.6 nozzle",
|
||||||
"BLOCKS RF50 0.8 nozzle",
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
"BLOCKS RF50"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "6",
|
"top_shell_layers": "6",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle"
|
"BLOCKS RD50 V2 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "6",
|
"bottom_shell_layers": "6",
|
||||||
"top_shell_layers": "6",
|
"top_shell_layers": "6",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.4 nozzle"
|
"BLOCKS RF50 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle"
|
"BLOCKS RD50 V2 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "5",
|
"bottom_shell_layers": "5",
|
||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.4 nozzle"
|
"BLOCKS RF50 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.6 nozzle"
|
"BLOCKS RD50 V2 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.6 nozzle"
|
"BLOCKS RF50 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.4 nozzle"
|
"BLOCKS Pro S100 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle"
|
"BLOCKS RD50 V2 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.4 nozzle"
|
"BLOCKS RF50 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.4 nozzle"
|
"BLOCKS Pro S100 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle"
|
"BLOCKS RD50 V2 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.4 nozzle"
|
"BLOCKS RF50 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.6 nozzle"
|
"BLOCKS RD50 V2 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.6 nozzle"
|
"BLOCKS RF50 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.4 nozzle"
|
"BLOCKS RD50 V2 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.4 nozzle"
|
"BLOCKS RF50 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"layer_height": "0.30",
|
"layer_height": "0.30",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.4 nozzle"
|
"BLOCKS Pro S100 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.3",
|
"layer_height": "0.3",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.8 nozzle"
|
"BLOCKS Pro S100 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.8 nozzle"
|
"BLOCKS RD50 V2 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.8 nozzle"
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"layer_height": "0.30",
|
"layer_height": "0.30",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.0 nozzle"
|
"BLOCKS Pro S100 1.0 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.30",
|
"layer_height": "0.30",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.6 nozzle"
|
"BLOCKS Pro S100 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.6 nozzle"
|
"BLOCKS RD50 V2 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.6 nozzle"
|
"BLOCKS RF50 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.6 nozzle"
|
"BLOCKS RD50 V2 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "3",
|
"bottom_shell_layers": "3",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.6 nozzle"
|
"BLOCKS RF50 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.8 nozzle"
|
"BLOCKS RD50 V2 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "4",
|
"bottom_shell_layers": "4",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.8 nozzle"
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "2",
|
"top_shell_layers": "2",
|
||||||
"layer_height": "0.40",
|
"layer_height": "0.40",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.6 nozzle"
|
"BLOCKS Pro S100 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"layer_height": "0.40",
|
"layer_height": "0.40",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.8 nozzle"
|
"BLOCKS Pro S100 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.8 nozzle"
|
"BLOCKS RD50 V2 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "3",
|
"bottom_shell_layers": "3",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.8 nozzle"
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"layer_height": "0.50",
|
"layer_height": "0.50",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.8 nozzle"
|
"BLOCKS Pro S100 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.50",
|
"layer_height": "0.50",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.2 nozzle"
|
"BLOCKS Pro S100 1.2 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.50",
|
"layer_height": "0.50",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.0 nozzle"
|
"BLOCKS Pro S100 1.0 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"top_solid_infill_flow_ratio": "0.96",
|
"top_solid_infill_flow_ratio": "0.96",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.8 nozzle"
|
"BLOCKS RD50 V2 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
"bottom_shell_layers": "3",
|
"bottom_shell_layers": "3",
|
||||||
"top_shell_layers": "4",
|
"top_shell_layers": "4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.8 nozzle"
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_speed": "300",
|
"sparse_infill_speed": "300",
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.60",
|
"layer_height": "0.60",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.0 nozzle"
|
"BLOCKS Pro S100 1.0 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.60",
|
"layer_height": "0.60",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.2 nozzle"
|
"BLOCKS Pro S100 1.2 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.70",
|
"layer_height": "0.70",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.2 nozzle"
|
"BLOCKS Pro S100 1.2 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "3",
|
"top_shell_layers": "3",
|
||||||
"layer_height": "0.70",
|
"layer_height": "0.70",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.0 nozzle"
|
"BLOCKS Pro S100 1.0 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"top_shell_layers": "2",
|
"top_shell_layers": "2",
|
||||||
"layer_height": "0.80",
|
"layer_height": "0.80",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 1.2 nozzle"
|
"BLOCKS Pro S100 1.2 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,11 +9,8 @@
|
|||||||
"bridge_flow": "0.95",
|
"bridge_flow": "0.95",
|
||||||
"brim_width": "5",
|
"brim_width": "5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.6 nozzle",
|
"BLOCKS Pro S100 0.6 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.6 nozzle",
|
"BLOCKS RD50 V2 0.6 nozzle",
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.6 nozzle"
|
"BLOCKS RF50 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"print_sequence": "by layer",
|
"print_sequence": "by layer",
|
||||||
|
|||||||
@@ -5,11 +5,8 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"instantiation": "false",
|
"instantiation": "false",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"BLOCKS Pro S100",
|
|
||||||
"BLOCKS Pro S100 0.8 nozzle",
|
"BLOCKS Pro S100 0.8 nozzle",
|
||||||
"BLOCKS RD50 V2",
|
|
||||||
"BLOCKS RD50 V2 0.8 nozzle",
|
"BLOCKS RD50 V2 0.8 nozzle",
|
||||||
"BLOCKS RF50",
|
|
||||||
"BLOCKS RF50 0.8 nozzle"
|
"BLOCKS RF50 0.8 nozzle"
|
||||||
],
|
],
|
||||||
"sparse_infill_line_width": "0.82",
|
"sparse_infill_line_width": "0.82",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Chuanying",
|
"name": "Chuanying",
|
||||||
"url": "",
|
"url": "",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Chuanying configurations",
|
"description": "Chuanying configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -19,13 +19,7 @@
|
|||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Chuanying X1 0.4 Nozzle",
|
"Chuanying X1 0.4 Nozzle",
|
||||||
"Chuanying X1 0.6 Nozzle",
|
"Chuanying X1 0.6 Nozzle",
|
||||||
"Chuanying X1 0.8 Nozzle",
|
"Chuanying X1 0.8 Nozzle"
|
||||||
"Chuanying Adventurer 5M 0.4 Nozzle",
|
|
||||||
"Chuanying Adventurer 5M 0.6 Nozzle",
|
|
||||||
"Chuanying Adventurer 5M 0.8 Nozzle",
|
|
||||||
"Chuanying Adventurer 5M Pro 0.4 Nozzle",
|
|
||||||
"Chuanying Adventurer 5M Pro 0.6 Nozzle",
|
|
||||||
"Chuanying Adventurer 5M Pro 0.8 Nozzle"
|
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"compatible_prints": [],
|
"compatible_prints": [],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Comgrow",
|
"name": "Comgrow",
|
||||||
"version": "02.04.00.02",
|
"version": "02.04.00.03",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Comgrow configurations",
|
"description": "Comgrow configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -50,10 +50,6 @@
|
|||||||
"name": "0.20mm Standard @Comgrow T500 0.6",
|
"name": "0.20mm Standard @Comgrow T500 0.6",
|
||||||
"sub_path": "process/0.20mm Standard @Comgrow T500 0.6.json"
|
"sub_path": "process/0.20mm Standard @Comgrow T500 0.6.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.20mm Standard @Comgrow T500 1.0",
|
|
||||||
"sub_path": "process/0.20mm Standard @Comgrow T500 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.24mm Draft @Comgrow T500 0.4",
|
"name": "0.24mm Draft @Comgrow T500 0.4",
|
||||||
"sub_path": "process/0.24mm Draft @Comgrow T500 0.4.json"
|
"sub_path": "process/0.24mm Draft @Comgrow T500 0.4.json"
|
||||||
|
|||||||
@@ -1,103 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "process",
|
|
||||||
"name": "0.20mm Standard @Comgrow T500 1.0",
|
|
||||||
"inherits": "fdm_process_comgrow_common",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "2lOjEPJ5JELGadG3",
|
|
||||||
"instantiation": "true",
|
|
||||||
"adaptive_layer_height": "1",
|
|
||||||
"reduce_crossing_wall": "0",
|
|
||||||
"layer_height": "0.24",
|
|
||||||
"max_travel_detour_distance": "0",
|
|
||||||
"bottom_surface_pattern": "monotonic",
|
|
||||||
"bottom_shell_layers": "2",
|
|
||||||
"bottom_shell_thickness": "0",
|
|
||||||
"bridge_flow": "0.85",
|
|
||||||
"bridge_speed": "25",
|
|
||||||
"brim_width": "0",
|
|
||||||
"brim_object_gap": "0",
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"print_sequence": "by layer",
|
|
||||||
"bridge_no_support": "0",
|
|
||||||
"draft_shield": "disabled",
|
|
||||||
"elefant_foot_compensation": "0.1",
|
|
||||||
"enable_arc_fitting": "0",
|
|
||||||
"outer_wall_line_width": "1.0",
|
|
||||||
"wall_infill_order": "inner wall/outer wall/infill",
|
|
||||||
"line_width": "1.0",
|
|
||||||
"infill_direction": "45",
|
|
||||||
"sparse_infill_density": "15%",
|
|
||||||
"sparse_infill_pattern": "crosshatch",
|
|
||||||
"initial_layer_line_width": "1.0",
|
|
||||||
"initial_layer_print_height": "0.28",
|
|
||||||
"infill_combination": "0",
|
|
||||||
"sparse_infill_line_width": "1.0",
|
|
||||||
"infill_wall_overlap": "23%",
|
|
||||||
"interface_shells": "0",
|
|
||||||
"ironing_flow": "15%",
|
|
||||||
"ironing_spacing": "0.25",
|
|
||||||
"ironing_speed": "15",
|
|
||||||
"ironing_type": "no ironing",
|
|
||||||
"reduce_infill_retraction": "1",
|
|
||||||
"detect_overhang_wall": "1",
|
|
||||||
"overhang_1_4_speed": "0",
|
|
||||||
"overhang_2_4_speed": "20",
|
|
||||||
"overhang_3_4_speed": "15",
|
|
||||||
"overhang_4_4_speed": "10",
|
|
||||||
"inner_wall_line_width": "1.0",
|
|
||||||
"wall_loops": "2",
|
|
||||||
"print_settings_id": "",
|
|
||||||
"raft_layers": "0",
|
|
||||||
"seam_position": "aligned",
|
|
||||||
"skirt_distance": "3",
|
|
||||||
"skirt_height": "2",
|
|
||||||
"skirt_loops": "2",
|
|
||||||
"minimum_sparse_infill_area": "10",
|
|
||||||
"internal_solid_infill_line_width": "0",
|
|
||||||
"spiral_mode": "0",
|
|
||||||
"standby_temperature_delta": "-5",
|
|
||||||
"enable_support": "0",
|
|
||||||
"resolution": "0.012",
|
|
||||||
"support_type": "normal(auto)",
|
|
||||||
"support_style": "grid",
|
|
||||||
"support_on_build_plate_only": "0",
|
|
||||||
"support_top_z_distance": "0.15",
|
|
||||||
"support_filament": "0",
|
|
||||||
"support_line_width": "1.0",
|
|
||||||
"support_interface_loop_pattern": "0",
|
|
||||||
"support_interface_filament": "0",
|
|
||||||
"support_interface_top_layers": "3",
|
|
||||||
"support_interface_bottom_layers": "-1",
|
|
||||||
"support_interface_spacing": "0.2",
|
|
||||||
"support_interface_speed": "100%",
|
|
||||||
"support_base_pattern": "rectilinear",
|
|
||||||
"support_base_pattern_spacing": "0.2",
|
|
||||||
"support_speed": "60",
|
|
||||||
"support_threshold_angle": "30",
|
|
||||||
"support_object_xy_distance": "60%",
|
|
||||||
"tree_support_branch_angle": "40",
|
|
||||||
"tree_support_wall_count": "0",
|
|
||||||
"detect_thin_wall": "1",
|
|
||||||
"top_surface_pattern": "monotonicline",
|
|
||||||
"top_surface_line_width": "1.0",
|
|
||||||
"top_shell_layers": "2",
|
|
||||||
"top_shell_thickness": "0.8",
|
|
||||||
"initial_layer_speed": "25",
|
|
||||||
"initial_layer_infill_speed": "80",
|
|
||||||
"outer_wall_speed": "50",
|
|
||||||
"inner_wall_speed": "60",
|
|
||||||
"internal_solid_infill_speed": "60",
|
|
||||||
"top_surface_speed": "40",
|
|
||||||
"gap_infill_speed": "60",
|
|
||||||
"sparse_infill_speed": "50",
|
|
||||||
"travel_speed": "80",
|
|
||||||
"enable_prime_tower": "1",
|
|
||||||
"wipe_tower_no_sparse_layers": "0",
|
|
||||||
"prime_tower_width": "60",
|
|
||||||
"xy_hole_compensation": "0",
|
|
||||||
"xy_contour_compensation": "0",
|
|
||||||
"seam_gap": "5%",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Comgrow T500 1.0 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Creality",
|
"name": "Creality",
|
||||||
"version": "02.03.02.74",
|
"version": "02.03.02.75",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Creality configurations",
|
"description": "Creality configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -4034,6 +4034,14 @@
|
|||||||
"name": "Creality Ender-5 Max 0.4 nozzle",
|
"name": "Creality Ender-5 Max 0.4 nozzle",
|
||||||
"sub_path": "machine/Creality Ender-5 Max 0.4 nozzle.json"
|
"sub_path": "machine/Creality Ender-5 Max 0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Creality Ender-5 Max 0.6 nozzle",
|
||||||
|
"sub_path": "machine/Creality Ender-5 Max 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Creality Ender-5 Max 0.8 nozzle",
|
||||||
|
"sub_path": "machine/Creality Ender-5 Max 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Creality Ender-5 Plus 0.4 nozzle",
|
"name": "Creality Ender-5 Plus 0.4 nozzle",
|
||||||
"sub_path": "machine/Creality Ender-5 Plus 0.4 nozzle.json"
|
"sub_path": "machine/Creality Ender-5 Plus 0.4 nozzle.json"
|
||||||
|
|||||||
@@ -153,6 +153,7 @@
|
|||||||
"material_flow_dependent_temperature": "0",
|
"material_flow_dependent_temperature": "0",
|
||||||
"material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]",
|
"material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]",
|
||||||
"pressure_advance": "0.05",
|
"pressure_advance": "0.05",
|
||||||
|
"filament_id": "06101",
|
||||||
"support_material_interface_fan_speed": "-1",
|
"support_material_interface_fan_speed": "-1",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Creality Ender-5 Max 0.4 nozzle",
|
"Creality Ender-5 Max 0.4 nozzle",
|
||||||
|
|||||||
@@ -113,6 +113,6 @@
|
|||||||
"initial_layer_jerk": "7",
|
"initial_layer_jerk": "7",
|
||||||
"travel_jerk": "7",
|
"travel_jerk": "7",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Creality CR-10SE 0.2 nozzle"
|
"Creality CR-10 SE 0.2 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "MagicMaker",
|
"name": "MagicMaker",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "MagicMaker configurations",
|
"description": "MagicMaker configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -110,6 +110,6 @@
|
|||||||
"travel_acceleration": "10000",
|
"travel_acceleration": "10000",
|
||||||
"travel_speed": "300",
|
"travel_speed": "300",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"MM hqs sf 0.4 nozzle"
|
"MM hqs SF 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Orca Arena Printer",
|
"name": "Orca Arena Printer",
|
||||||
"url": "",
|
"url": "",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Orca Arena configuration files",
|
"description": "Orca Arena configuration files",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "8hA0aiO1Qtv9IfeR",
|
"setting_id": "8hA0aiO1Qtv9IfeR",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.2 nozzle",
|
"Orca Arena X1 Carbon 0.2 nozzle"
|
||||||
"Orca Arena X1 0.2 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "t6ZUh6RIxH5i7Ju0",
|
"setting_id": "t6ZUh6RIxH5i7Ju0",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "AnDHc3M6fQLAl6VE",
|
"setting_id": "AnDHc3M6fQLAl6VE",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.2 nozzle",
|
"Orca Arena X1 Carbon 0.2 nozzle"
|
||||||
"Orca Arena X1 0.2 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "Z4u3mxJ72aSZDIxB",
|
"setting_id": "Z4u3mxJ72aSZDIxB",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.2 nozzle",
|
"Orca Arena X1 Carbon 0.2 nozzle"
|
||||||
"Orca Arena X1 0.2 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "orfsZJWNnKXKdxaZ",
|
"setting_id": "orfsZJWNnKXKdxaZ",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "GO4dmyDkhygncuJZ",
|
"setting_id": "GO4dmyDkhygncuJZ",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.2 nozzle",
|
"Orca Arena X1 Carbon 0.2 nozzle"
|
||||||
"Orca Arena X1 0.2 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "MVY5JxFxbdSUWTOW",
|
"setting_id": "MVY5JxFxbdSUWTOW",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.2 nozzle",
|
"Orca Arena X1 Carbon 0.2 nozzle"
|
||||||
"Orca Arena X1 0.2 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "KGSeKT36RuDzR3E6",
|
"setting_id": "KGSeKT36RuDzR3E6",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "IbPMWoSXjuZxo5po",
|
"setting_id": "IbPMWoSXjuZxo5po",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.6 nozzle",
|
"Orca Arena X1 Carbon 0.6 nozzle"
|
||||||
"Orca Arena X1 0.6 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,6 @@
|
|||||||
"support_interface_filament": "0",
|
"support_interface_filament": "0",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "vKHHMGciyRPz96ys",
|
"setting_id": "vKHHMGciyRPz96ys",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
"wall_loops": "6",
|
"wall_loops": "6",
|
||||||
"sparse_infill_density": "25%",
|
"sparse_infill_density": "25%",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "A3tBfYESL5BUa6az",
|
"setting_id": "A3tBfYESL5BUa6az",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "EHZbaCSjWI2NuLBb",
|
"setting_id": "EHZbaCSjWI2NuLBb",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.6 nozzle",
|
"Orca Arena X1 Carbon 0.6 nozzle"
|
||||||
"Orca Arena X1 0.6 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "YUmFXao5txOnlhO6",
|
"setting_id": "YUmFXao5txOnlhO6",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.8 nozzle",
|
"Orca Arena X1 Carbon 0.8 nozzle"
|
||||||
"Orca Arena X1 0.8 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "Q03WAuYXUC4h4Vyk",
|
"setting_id": "Q03WAuYXUC4h4Vyk",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.4 nozzle",
|
"Orca Arena X1 Carbon 0.4 nozzle"
|
||||||
"Orca Arena X1 0.4 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
"wall_loops": "4",
|
"wall_loops": "4",
|
||||||
"sparse_infill_density": "25%",
|
"sparse_infill_density": "25%",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.6 nozzle",
|
"Orca Arena X1 Carbon 0.6 nozzle"
|
||||||
"Orca Arena X1 0.6 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "B1M42JYHlcp5aUoq",
|
"setting_id": "B1M42JYHlcp5aUoq",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.8 nozzle",
|
"Orca Arena X1 Carbon 0.8 nozzle"
|
||||||
"Orca Arena X1 0.8 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "N5ONn0pY2DO8xlFq",
|
"setting_id": "N5ONn0pY2DO8xlFq",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.6 nozzle",
|
"Orca Arena X1 Carbon 0.6 nozzle"
|
||||||
"Orca Arena X1 0.6 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "aKOq8cZ3LHNl61tR",
|
"setting_id": "aKOq8cZ3LHNl61tR",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.6 nozzle",
|
"Orca Arena X1 Carbon 0.6 nozzle"
|
||||||
"Orca Arena X1 0.6 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "ZcviTCabCemJLEEa",
|
"setting_id": "ZcviTCabCemJLEEa",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.8 nozzle",
|
"Orca Arena X1 Carbon 0.8 nozzle"
|
||||||
"Orca Arena X1 0.8 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
"setting_id": "tqiu1hNVhXEsBBig",
|
"setting_id": "tqiu1hNVhXEsBBig",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Orca Arena X1 Carbon 0.8 nozzle",
|
"Orca Arena X1 Carbon 0.8 nozzle"
|
||||||
"Orca Arena X1 0.8 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Prusa",
|
"name": "Prusa",
|
||||||
"version": "02.04.00.02",
|
"version": "02.04.00.03",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Prusa configurations",
|
"description": "Prusa configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -11,8 +11,6 @@
|
|||||||
"Prusa MK4S 0.3 nozzle",
|
"Prusa MK4S 0.3 nozzle",
|
||||||
"Prusa MK4S 0.4 nozzle",
|
"Prusa MK4S 0.4 nozzle",
|
||||||
"Prusa MK4S 0.5 nozzle",
|
"Prusa MK4S 0.5 nozzle",
|
||||||
"Prusa MK4S HF0.25 nozzle",
|
|
||||||
"Prusa MK4S HF0.3 nozzle",
|
|
||||||
"Prusa MK4S HF0.4 nozzle",
|
"Prusa MK4S HF0.4 nozzle",
|
||||||
"Prusa MK4S HF0.5 nozzle"
|
"Prusa MK4S HF0.5 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Wanhao France",
|
"name": "Wanhao France",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Wanhao France D12 configurations",
|
"description": "Wanhao France D12 configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -263,11 +263,11 @@
|
|||||||
"D12 500 PRO M2 DIRECT 0.4 nozzle",
|
"D12 500 PRO M2 DIRECT 0.4 nozzle",
|
||||||
"D12 500 PRO SMARTPAD DIRECT 0.4 nozzle",
|
"D12 500 PRO SMARTPAD DIRECT 0.4 nozzle",
|
||||||
"D12 230 PRO M2 MONO DUAL 0.4 nozzle",
|
"D12 230 PRO M2 MONO DUAL 0.4 nozzle",
|
||||||
"D12 230 PRO M2 MONO DUAL PoopTool 0.4 nozzle",
|
"D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool",
|
||||||
"D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle",
|
"D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle",
|
||||||
"D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle",
|
"D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle",
|
||||||
"D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle",
|
"D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle",
|
||||||
"D12 230 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle",
|
"D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool",
|
||||||
"D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle",
|
"D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle",
|
||||||
"D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle",
|
"D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle",
|
||||||
"D12 300 PRO M2 MONO DUAL 0.4 nozzle",
|
"D12 300 PRO M2 MONO DUAL 0.4 nozzle",
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user