mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-04 08:04:05 +03:00
Compare commits
52 Commits
fix/profil
...
release/v2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19db9aa9c3 | ||
|
|
73aaeaa549 | ||
|
|
d1369e45c8 | ||
|
|
3808f95a26 | ||
|
|
2a1fdcc0b9 | ||
|
|
66d4850399 | ||
|
|
6d7eeb89dc | ||
|
|
8ccae50e1b | ||
|
|
148228f67c | ||
|
|
e3eca45f3d | ||
|
|
98831ac27f | ||
|
|
c7d1331991 | ||
|
|
f344cf78f3 | ||
|
|
0086ed0ddc | ||
|
|
3e9784321d | ||
|
|
451d2f946f | ||
|
|
a4546b2d05 | ||
|
|
b5143767f4 | ||
|
|
ceb63575a6 | ||
|
|
ae14fda37c | ||
|
|
698e8e297c | ||
|
|
97f196aa76 | ||
|
|
dbd9e12d5d | ||
|
|
02ea6a37a1 | ||
|
|
fd985c71c5 | ||
|
|
a16a28c5da | ||
|
|
96d46e7f82 | ||
|
|
85ae6156f0 | ||
|
|
a723c53ee0 | ||
|
|
b44a267d34 | ||
|
|
e34e9a19c4 | ||
|
|
b1e6c0a64c | ||
|
|
42392fa71e | ||
|
|
41b7a4c295 | ||
|
|
9c76d7d71c | ||
|
|
f9693c4c96 | ||
|
|
6d9eb1792f | ||
|
|
691d97867c | ||
|
|
da7e0540a9 | ||
|
|
70fd764e7d | ||
|
|
ed2e7d02d0 | ||
|
|
75cd880336 | ||
|
|
8e4b188473 | ||
|
|
fc9a8aa93f | ||
|
|
21f48a2654 | ||
|
|
548f291a81 | ||
|
|
bc3af3d00f | ||
|
|
269eb81028 | ||
|
|
08d4ae7dbd | ||
|
|
b1411e253f | ||
|
|
42cce5399c | ||
|
|
b17f5e3946 |
2
.github/workflows/check_profiles.yml
vendored
2
.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
|
||||
chmod +x ./OrcaSlicer_profile_validator
|
||||
|
||||
# Validate all system profiles.
|
||||
# validate profiles
|
||||
- name: validate system profiles
|
||||
id: validate_system
|
||||
continue-on-error: true
|
||||
|
||||
2
.github/workflows/publish_release.yml
vendored
2
.github/workflows/publish_release.yml
vendored
@@ -17,7 +17,7 @@ on:
|
||||
required: true
|
||||
type: string
|
||||
tag:
|
||||
description: 'Tag of the draft release to upload to (e.g. v2.4.0-beta)'
|
||||
description: 'Tag of the draft release to upload to (e.g. v2.4.0)'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
|
||||
1
deps/Boost/Boost.cmake
vendored
1
deps/Boost/Boost.cmake
vendored
@@ -25,7 +25,6 @@ if (MSVC AND DEP_DEBUG)
|
||||
endif ()
|
||||
|
||||
orcaslicer_add_cmake_project(Boost
|
||||
${_options}
|
||||
URL "https://github.com/boostorg/boost/releases/download/boost-1.84.0/boost-1.84.0.tar.gz"
|
||||
URL_HASH SHA256=4d27e9efed0f6f152dc28db6430b9d3dfb40c0345da7342eaa5a987dde57bd95
|
||||
LIST_SEPARATOR |
|
||||
|
||||
20
deps/CMakeLists.txt
vendored
20
deps/CMakeLists.txt
vendored
@@ -155,25 +155,17 @@ if (NOT _is_multi AND NOT CMAKE_BUILD_TYPE)
|
||||
endif ()
|
||||
|
||||
function(orcaslicer_add_cmake_project projectname)
|
||||
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND" "CMAKE_ARGS" ${ARGN})
|
||||
cmake_parse_arguments(P_ARGS "" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND" "CMAKE_ARGS" ${ARGN})
|
||||
|
||||
set(_configs_line -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE})
|
||||
if (_is_multi OR MSVC)
|
||||
if (P_ARGS_FORWARD_CONFIG)
|
||||
set(_configs_line -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE})
|
||||
elseif (ORCA_INCLUDE_DEBUG_INFO AND NOT DEP_DEBUG)
|
||||
if (ORCA_INCLUDE_DEBUG_INFO AND NOT DEP_DEBUG)
|
||||
set(_configs_line "-DCMAKE_C_FLAGS_RELEASE:STRING=${CMAKE_C_FLAGS_RELWITHDEBINFO} -DCMAKE_CXX_FLAGS_RELEASE:STRING=${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
|
||||
else ()
|
||||
set(_configs_line "")
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
if (P_ARGS_FORWARD_CONFIG)
|
||||
set(_target_config "$<CONFIG>")
|
||||
else()
|
||||
set(_target_config "Release")
|
||||
endif()
|
||||
|
||||
if (MSVC)
|
||||
set(_gen CMAKE_GENERATOR "${DEP_MSVC_GEN}" CMAKE_GENERATOR_PLATFORM "${DEP_PLATFORM}")
|
||||
else()
|
||||
@@ -216,8 +208,8 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
||||
${DEP_CMAKE_OPTS}
|
||||
${P_ARGS_CMAKE_ARGS}
|
||||
${P_ARGS_UNPARSED_ARGUMENTS}
|
||||
BUILD_COMMAND ${CMAKE_COMMAND} --build . --config ${_target_config} -- ${_build_j}
|
||||
INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config ${_target_config}
|
||||
BUILD_COMMAND ${CMAKE_COMMAND} --build . --config Release -- ${_build_j}
|
||||
INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config Release
|
||||
)
|
||||
|
||||
if (FLATPAK)
|
||||
@@ -259,8 +251,8 @@ else()
|
||||
${DEP_CMAKE_OPTS}
|
||||
${P_ARGS_CMAKE_ARGS}
|
||||
${P_ARGS_UNPARSED_ARGUMENTS}
|
||||
BUILD_COMMAND ${CMAKE_COMMAND} --build . --config ${_target_config} -- ${_build_j}
|
||||
INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config ${_target_config}
|
||||
BUILD_COMMAND ${CMAKE_COMMAND} --build . --config Release -- ${_build_j}
|
||||
INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config Release
|
||||
)
|
||||
|
||||
endif()
|
||||
|
||||
6
deps/Draco/Draco.cmake
vendored
6
deps/Draco/Draco.cmake
vendored
@@ -1,10 +1,4 @@
|
||||
set(_options "")
|
||||
if (MSVC AND DEP_DEBUG)
|
||||
set(_options "FORWARD_CONFIG")
|
||||
endif ()
|
||||
|
||||
orcaslicer_add_cmake_project(Draco
|
||||
${_options}
|
||||
URL https://github.com/google/draco/archive/refs/tags/1.5.7.zip
|
||||
URL_HASH SHA256=27b72ba2d5ff3d0a9814ad40d4cb88f8dc89a35491c0866d952473f8f9416b77
|
||||
)
|
||||
5
deps/OpenCV/OpenCV.cmake
vendored
5
deps/OpenCV/OpenCV.cmake
vendored
@@ -2,12 +2,8 @@
|
||||
# leaves ~200 unresolved ippicv* externals at link time on Windows ARM64.
|
||||
if (MSVC AND NOT "${DEPS_ARCH}" STREQUAL "arm64")
|
||||
set(_use_IPP "-DWITH_IPP=ON")
|
||||
if (DEP_DEBUG)
|
||||
set(_options "FORWARD_CONFIG")
|
||||
endif ()
|
||||
else ()
|
||||
set(_use_IPP "-DWITH_IPP=OFF")
|
||||
set(_options "")
|
||||
endif ()
|
||||
|
||||
if (IN_GIT_REPO)
|
||||
@@ -15,7 +11,6 @@ if (IN_GIT_REPO)
|
||||
endif ()
|
||||
|
||||
orcaslicer_add_cmake_project(OpenCV
|
||||
${_options}
|
||||
URL https://github.com/opencv/opencv/archive/refs/tags/4.6.0.tar.gz
|
||||
URL_HASH SHA256=1ec1cba65f9f20fe5a41fda1586e01c70ea0c9a6d7b67c9e13edf0cfe2239277
|
||||
PATCH_COMMAND git apply ${OpenCV_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-vs.patch ${CMAKE_CURRENT_LIST_DIR}/0002-clang19-macos.patch
|
||||
|
||||
@@ -1123,17 +1123,18 @@ private:
|
||||
|
||||
std::vector<RawShape> objs,excludes;
|
||||
for (const Item &item : items_) {
|
||||
if (item.isFixed())
|
||||
excludes.push_back(item.transformedShape());
|
||||
else
|
||||
objs.push_back(item.transformedShape());
|
||||
if (item.isFixed()) continue;
|
||||
objs.push_back(item.transformedShape());
|
||||
}
|
||||
if (objs.empty())
|
||||
return;
|
||||
// Without fixed items this inner-fit NFP can exceed clipper's range and crash MSVC.
|
||||
if (!excludes.empty())
|
||||
{ // find a best position inside NFP of fixed items (excluded regions), so the center of pile is cloest to bed center
|
||||
RawShape objs_convex_hull = sl::convexHull(objs);
|
||||
for (const Item &item : items_) {
|
||||
if (item.isFixed()) {
|
||||
excludes.push_back(item.transformedShape());
|
||||
}
|
||||
}
|
||||
|
||||
auto nfps = calcnfp(objs_convex_hull, excludes, bbin, Lvl<MaxNfpLevel::value>());
|
||||
if (nfps.empty()) {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -146,16 +146,16 @@ text = Fine-tuning for flow rate\nDid you know that flow rate can be fine-tuned
|
||||
text = Split your prints into plates\nDid you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts.
|
||||
|
||||
[hint:Speed up your print with Adaptive Layer Height]
|
||||
text = Speed up your print with Adaptive Layer Height\nDid you know that you can print a model even faster by using the Adaptive Layer Height option? Check it out!
|
||||
text = Speed up your print with Adaptive Layer Height\nDid you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!
|
||||
|
||||
[hint:Support painting]
|
||||
text = Support painting\nDid you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it.
|
||||
|
||||
[hint:Different types of supports]
|
||||
text = Different types of supports\nDid you know that you can choose from multiple types of supports? Tree supports work great for organic models while saving filament and improving print speed. Check them out!
|
||||
text = Different types of supports\nDid you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!
|
||||
|
||||
[hint:Printing Silk Filament]
|
||||
text = Printing Silk Filament\nDid you know that Silk filament needs special consideration to print successfully? A higher temperature and lower speed are always recommended for the best results.
|
||||
text = Printing Silk Filament\nDid you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results.
|
||||
|
||||
[hint:Brim for better adhesion]
|
||||
text = Brim for better adhesion\nDid you know that when printed models have a small contact interface with the printing surface, it's recommended to use a brim?
|
||||
@@ -167,13 +167,13 @@ text = Set parameters for multiple objects\nDid you know that you can set slicin
|
||||
text = Stack objects\nDid you know that you can stack objects as a whole one?
|
||||
|
||||
[hint:Flush into support/objects/infill]
|
||||
text = Flush into support/objects/infill\nDid you know that you can reduce wasted filament by flushing it into support/objects/infill during filament changes?
|
||||
text = Flush into support/objects/infill\nDid you know that you can reduce wasted filament by flushing it into support/objects/infill during filament change?
|
||||
|
||||
[hint:Improve strength]
|
||||
text = Improve strength\nDid you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?
|
||||
|
||||
[hint:When do you need to print with the printer door opened]
|
||||
text = When do you need to print with the printer door opened?\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature? There is more info about this in the Wiki.
|
||||
text = When do you need to print with the printer door opened?\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature? More info about this in the Wiki.
|
||||
|
||||
[hint:Avoid warping]
|
||||
text = Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping?
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.2992 1.42627C10.7774 1.42627 8.73315 3.47056 8.73315 5.99231C8.73315 8.51406 10.7774 10.5583 13.2992 10.5583C13.3609 10.5583 13.4223 10.5571 13.4834 10.5547C15.9197 10.4581 17.8652 8.45238 17.8652 5.99231C17.8652 3.47056 15.8209 1.42627 13.2992 1.42627ZM15.6185 11.0536C17.5346 10.1741 18.8652 8.23861 18.8652 5.99231C18.8652 2.91827 16.3732 0.42627 13.2992 0.42627C11.5793 0.42627 10.0417 1.2063 9.02067 2.43188H2.31853C1.93193 2.43188 1.61853 2.74528 1.61853 3.13188V12.4712C1.61853 12.6313 1.6723 12.7789 1.76278 12.8968C1.76671 13.0046 1.79621 13.1144 1.85576 13.2185L3.48408 16.0649C3.60875 16.2829 3.8406 16.4173 4.09168 16.4173H6.75859L7.97903 19.1586C8.22556 19.7123 9.01148 19.7123 9.25801 19.1586L10.4784 16.4173H13.1454C13.3965 16.4173 13.6283 16.2829 13.753 16.0649L15.3813 13.2185C15.4409 13.1144 15.4704 13.0046 15.4743 12.8968C15.5648 12.7789 15.6185 12.6313 15.6185 12.4712V11.0536ZM13.4429 11.5565C13.8469 11.5463 14.2403 11.493 14.6185 11.4011V12.1709H2.61853V3.43188H8.35573C7.95792 4.19837 7.73315 5.06909 7.73315 5.99231C7.73315 9.06635 10.2252 11.5583 13.2992 11.5583C13.3472 11.5583 13.3951 11.5577 13.4429 11.5565ZM2.98076 13.1712H14.2563L12.9714 15.4173H9.85194L9.84578 15.4173H7.39126L7.3851 15.4173H4.26569L2.98076 13.1712ZM9.38381 16.4173L8.61852 18.1363L7.85322 16.4173H9.38381ZM12.2021 3.36422C12.3973 3.55948 12.3973 3.87606 12.2021 4.07133L11.743 4.53041H16.0625C16.3386 4.53041 16.5625 4.75426 16.5625 5.03041C16.5625 5.30655 16.3386 5.53041 16.0625 5.53041H10.7773C10.2428 5.53041 9.97507 4.88412 10.353 4.50614L11.495 3.36422C11.6902 3.16896 12.0068 3.16896 12.2021 3.36422ZM14.3963 7.91305C14.2011 8.10831 14.2011 8.42489 14.3963 8.62015C14.5916 8.81542 14.9082 8.81542 15.1034 8.62015L16.2453 7.47823C16.6233 7.10026 16.3556 6.45397 15.8211 6.45397L10.5359 6.45397C10.2597 6.45397 10.0359 6.67783 10.0359 6.95397C10.0359 7.23011 10.2597 7.45397 10.5359 7.45397L14.8554 7.45397L14.3963 7.91305Z" fill="#262E30"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Afinia",
|
||||
"version": "02.04.00.02",
|
||||
"version": "02.04.00.01",
|
||||
"force_update": "0",
|
||||
"description": "Afinia configurations",
|
||||
"machine_model_list": [
|
||||
@@ -124,6 +124,14 @@
|
||||
"name": "fdm_filament_tpu",
|
||||
"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",
|
||||
"sub_path": "filament/Afinia ABS+@HS.json"
|
||||
@@ -132,18 +140,34 @@
|
||||
"name": "Afinia ABS@HS",
|
||||
"sub_path": "filament/Afinia ABS@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value ABS",
|
||||
"sub_path": "filament/Afinia Value ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value ABS@HS",
|
||||
"sub_path": "filament/Afinia Value ABS@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia PLA",
|
||||
"sub_path": "filament/Afinia PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia PLA@HS",
|
||||
"sub_path": "filament/Afinia PLA@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value PLA",
|
||||
"sub_path": "filament/Afinia Value PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value PLA@HS",
|
||||
"sub_path": "filament/Afinia Value PLA@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia TPU",
|
||||
"sub_path": "filament/Afinia TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia TPU@HS",
|
||||
"sub_path": "filament/Afinia TPU@HS.json"
|
||||
|
||||
37
resources/profiles/Afinia/filament/Afinia ABS+.json
Normal file
37
resources/profiles/Afinia/filament/Afinia ABS+.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
31
resources/profiles/Afinia/filament/Afinia ABS.json
Normal file
31
resources/profiles/Afinia/filament/Afinia ABS.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
34
resources/profiles/Afinia/filament/Afinia PLA.json
Normal file
34
resources/profiles/Afinia/filament/Afinia PLA.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
28
resources/profiles/Afinia/filament/Afinia TPU.json
Normal file
28
resources/profiles/Afinia/filament/Afinia TPU.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
37
resources/profiles/Afinia/filament/Afinia Value ABS.json
Normal file
37
resources/profiles/Afinia/filament/Afinia Value ABS.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
40
resources/profiles/Afinia/filament/Afinia Value PLA.json
Normal file
40
resources/profiles/Afinia/filament/Afinia Value PLA.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"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",
|
||||
"version": "02.04.00.02",
|
||||
"version": "02.04.00.01",
|
||||
"force_update": "0",
|
||||
"description": "Blocks configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -85,8 +85,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -85,8 +85,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -85,8 +85,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -91,8 +91,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -16,8 +16,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -16,8 +16,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -87,11 +87,14 @@
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS Pro S100 1.0 nozzle",
|
||||
"BLOCKS Pro S100 1.2 nozzle",
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -22,8 +22,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -45,11 +45,14 @@
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS Pro S100 1.0 nozzle",
|
||||
"BLOCKS Pro S100 1.2 nozzle",
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -16,8 +16,10 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -60,11 +60,14 @@
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS Pro S100 1.0 nozzle",
|
||||
"BLOCKS Pro S100 1.2 nozzle",
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "6",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "6",
|
||||
"top_shell_layers": "6",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "5",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "5",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.6 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "5",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "5",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.6 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"layer_height": "0.30",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.3",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"layer_height": "0.30",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.30",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.6 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.6 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "2",
|
||||
"layer_height": "0.40",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"layer_height": "0.40",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"layer_height": "0.50",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.50",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.2 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.50",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.60",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.60",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.2 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.70",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.2 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "3",
|
||||
"layer_height": "0.70",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"top_shell_layers": "2",
|
||||
"layer_height": "0.80",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 1.2 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,8 +9,11 @@
|
||||
"bridge_flow": "0.95",
|
||||
"brim_width": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.6 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.6 nozzle"
|
||||
],
|
||||
"print_sequence": "by layer",
|
||||
|
||||
@@ -5,8 +5,11 @@
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
],
|
||||
"sparse_infill_line_width": "0.82",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Chuanying",
|
||||
"url": "",
|
||||
"version": "02.04.00.02",
|
||||
"version": "02.04.00.01",
|
||||
"force_update": "0",
|
||||
"description": "Chuanying configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -19,7 +19,13 @@
|
||||
"compatible_printers": [
|
||||
"Chuanying X1 0.4 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_prints": [],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Comgrow",
|
||||
"version": "02.04.00.03",
|
||||
"version": "02.04.00.02",
|
||||
"force_update": "0",
|
||||
"description": "Comgrow configurations",
|
||||
"machine_model_list": [
|
||||
@@ -50,6 +50,10 @@
|
||||
"name": "0.20mm Standard @Comgrow T500 0.6",
|
||||
"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",
|
||||
"sub_path": "process/0.24mm Draft @Comgrow T500 0.4.json"
|
||||
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"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",
|
||||
"version": "02.03.02.75",
|
||||
"version": "02.03.02.74",
|
||||
"force_update": "0",
|
||||
"description": "Creality configurations",
|
||||
"machine_model_list": [
|
||||
@@ -4034,14 +4034,6 @@
|
||||
"name": "Creality Ender-5 Max 0.4 nozzle",
|
||||
"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",
|
||||
"sub_path": "machine/Creality Ender-5 Plus 0.4 nozzle.json"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user