Merge upstream/main into main
This commit is contained in:
commit
875d621764
10205 changed files with 1873899 additions and 1865698 deletions
275
.github/workflows/pr-label-bot.yml
vendored
Normal file
275
.github/workflows/pr-label-bot.yml
vendored
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
name: PR Label Bot
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
issue_comment:
|
||||
types:
|
||||
- created
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
request-label:
|
||||
if: github.event_name == 'pull_request_target' && github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && github.event.pull_request.author_association != 'MEMBER'
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Ask PR author for label
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
function isPermissionDenied(error) {
|
||||
return error && error.status === 403 && /Resource not accessible by integration/i.test(error.message || '');
|
||||
}
|
||||
|
||||
const allowedLabels = [
|
||||
'bug-fix',
|
||||
'enhancement',
|
||||
'Localization',
|
||||
'profile',
|
||||
'QoL',
|
||||
'UI/UX',
|
||||
'dependencies'
|
||||
];
|
||||
const pr = context.payload.pull_request;
|
||||
const labelsList = `${allowedLabels
|
||||
.slice(0, -1)
|
||||
.map((label) => `\`${label}\``)
|
||||
.join(', ')} and \`${allowedLabels[allowedLabels.length - 1]}\`.`;
|
||||
const examplesText = [
|
||||
'```',
|
||||
'/bot add-label bug-fix',
|
||||
'```',
|
||||
'```',
|
||||
'/bot add-label bug-fix, UI/UX',
|
||||
'```',
|
||||
'```',
|
||||
'/bot remove-label bug-fix, UI/UX',
|
||||
'```'
|
||||
].join('\n');
|
||||
|
||||
try {
|
||||
await github.rest.issues.createComment({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: pr.number,
|
||||
body:
|
||||
`Hi @${pr.user.login}, you can manage the labels for this PR by \`/bot add-label\` and \`/bot remove-label\`\n\n` +
|
||||
`Allowed labels are:\n${labelsList}\n\n` +
|
||||
`Examples:\n${examplesText}`
|
||||
});
|
||||
} catch (error) {
|
||||
if (isPermissionDenied(error)) {
|
||||
core.warning(
|
||||
'Skipping PR comment because token cannot write. Enable Actions write permissions, ' +
|
||||
'or run with a token that has issues:write and pull_requests:write.'
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
|
||||
apply-label:
|
||||
if: github.event_name == 'issue_comment'
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Apply label command from PR author
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
function isPermissionDenied(error) {
|
||||
return error && error.status === 403 && /Resource not accessible by integration/i.test(error.message || '');
|
||||
}
|
||||
|
||||
const allowedLabels = [
|
||||
'bug-fix',
|
||||
'enhancement',
|
||||
'Localization',
|
||||
'profile',
|
||||
'QoL',
|
||||
'UI/UX',
|
||||
'dependencies'
|
||||
];
|
||||
|
||||
const issue = context.payload.issue;
|
||||
if (!issue.pull_request) {
|
||||
core.info('Ignoring comment that is not on a pull request.');
|
||||
return;
|
||||
}
|
||||
|
||||
const body = (context.payload.comment.body || '').trim();
|
||||
const commandLine = body
|
||||
.split('\n')
|
||||
.map((line) => line.trim())
|
||||
.find((line) => /^\/bot\s+(add-label|remove-label)(?:\s*:\s*|\s+)/i.test(line));
|
||||
|
||||
if (!commandLine) {
|
||||
core.info('No /bot add-label or /bot remove-label command found.');
|
||||
return;
|
||||
}
|
||||
|
||||
const commandMatch = commandLine.match(/^\/bot\s+(add-label|remove-label)(?:\s*:\s*|\s+)(.+)\s*$/i);
|
||||
if (!commandMatch) {
|
||||
core.info('Label command format is invalid.');
|
||||
return;
|
||||
}
|
||||
|
||||
const action = commandMatch[1].toLowerCase() === 'add-label' ? 'add' : 'remove';
|
||||
let labelsExpr = (commandMatch[2] || '').trim();
|
||||
if (!labelsExpr) {
|
||||
core.info('Label command is missing label name.');
|
||||
return;
|
||||
}
|
||||
|
||||
if (labelsExpr.startsWith('[') && labelsExpr.endsWith(']')) {
|
||||
labelsExpr = labelsExpr.slice(1, -1).trim();
|
||||
}
|
||||
|
||||
const requestedRawLabels = labelsExpr
|
||||
.split(',')
|
||||
.map((part) => part.trim())
|
||||
.filter(Boolean);
|
||||
|
||||
if (!requestedRawLabels.length) {
|
||||
core.info('No labels were provided in the command.');
|
||||
return;
|
||||
}
|
||||
|
||||
const { data: pr } = await github.rest.pulls.get({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
pull_number: issue.number
|
||||
});
|
||||
|
||||
const commenter = context.payload.comment.user.login;
|
||||
if (commenter !== pr.user.login) {
|
||||
core.info('Ignoring command because commenter is not the PR author.');
|
||||
return;
|
||||
}
|
||||
|
||||
const labelsByLower = new Map(
|
||||
allowedLabels.map((label) => [label.toLowerCase(), label])
|
||||
);
|
||||
|
||||
const resolvedLabels = [];
|
||||
const invalidLabels = [];
|
||||
|
||||
for (const rawLabel of requestedRawLabels) {
|
||||
const resolved = labelsByLower.get(rawLabel.toLowerCase());
|
||||
if (resolved) {
|
||||
resolvedLabels.push(resolved);
|
||||
} else {
|
||||
invalidLabels.push(rawLabel);
|
||||
}
|
||||
}
|
||||
const uniqueRequestedLabels = [...new Set(resolvedLabels)];
|
||||
|
||||
if (action === 'add' && uniqueRequestedLabels.length) {
|
||||
try {
|
||||
await github.rest.issues.addLabels({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: issue.number,
|
||||
labels: uniqueRequestedLabels
|
||||
});
|
||||
} catch (error) {
|
||||
if (isPermissionDenied(error)) {
|
||||
core.warning(
|
||||
'Cannot add labels because token cannot write. Enable Actions write permissions, ' +
|
||||
'or run with a token that has issues:write and pull_requests:write.'
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
|
||||
core.info(`Added labels: ${uniqueRequestedLabels.join(', ')}`);
|
||||
}
|
||||
|
||||
if (action === 'remove' && uniqueRequestedLabels.length) {
|
||||
let removedCount = 0;
|
||||
try {
|
||||
for (const label of uniqueRequestedLabels) {
|
||||
try {
|
||||
await github.rest.issues.removeLabel({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: issue.number,
|
||||
name: label
|
||||
});
|
||||
removedCount += 1;
|
||||
} catch (error) {
|
||||
if (isPermissionDenied(error)) {
|
||||
core.warning(
|
||||
'Cannot remove labels because token cannot write. Enable Actions write permissions, ' +
|
||||
'or run with a token that has issues:write and pull_requests:write.'
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (error.status === 404) {
|
||||
core.info(`Label is not currently applied: ${label}`);
|
||||
continue;
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
core.info(`Removed labels count: ${removedCount}`);
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
if (!uniqueRequestedLabels.length) {
|
||||
core.info('No valid labels were provided in the command.');
|
||||
}
|
||||
|
||||
if (invalidLabels.length) {
|
||||
const allowedText = allowedLabels.map((label) => `\`${label}\``).join(', ');
|
||||
const invalidText = invalidLabels.map((label) => `\`${label}\``).join(', ');
|
||||
const validText = uniqueRequestedLabels.length
|
||||
? `\n\nProcessed valid label(s): ${uniqueRequestedLabels.map((label) => `\`${label}\``).join(', ')}`
|
||||
: '';
|
||||
|
||||
try {
|
||||
await github.rest.issues.createComment({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: issue.number,
|
||||
body:
|
||||
`@${commenter} invalid label(s): ${invalidText}.${validText}\n\n` +
|
||||
`Allowed labels: ${allowedText}\n\n` +
|
||||
`Use:\n` +
|
||||
`- \`/bot add-label label\`\n` +
|
||||
`- \`/bot remove-label label\`\n` +
|
||||
`- \`/bot add-label label1, label2\``
|
||||
});
|
||||
} catch (error) {
|
||||
if (isPermissionDenied(error)) {
|
||||
core.warning('Cannot post invalid-label feedback because token cannot write comments.');
|
||||
return;
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
const processedLabelsText = uniqueRequestedLabels.length ? uniqueRequestedLabels.join(', ') : '(none)';
|
||||
core.info(`Processed label command: ${action} ${processedLabelsText}`);
|
||||
|
|
@ -521,7 +521,7 @@ if [[ -n "${BUILD_DEPS}" ]] ; then
|
|||
fi
|
||||
|
||||
print_and_run cmake -S deps -B deps/$BUILD_DIR "${CMAKE_C_CXX_COMPILER_CLANG[@]}" "${CMAKE_LLD_LINKER_ARGS[@]}" -G Ninja "${COLORED_OUTPUT}" "${BUILD_ARGS[@]}"
|
||||
print_and_run cmake --build deps/$BUILD_DIR
|
||||
print_and_run cmake --build deps/$BUILD_DIR -j1
|
||||
fi
|
||||
|
||||
if [[ -n "${BUILD_ORCA}" ]] || [[ -n "${BUILD_TESTS}" ]] ; then
|
||||
|
|
|
|||
15
deps/CMakeLists.txt
vendored
15
deps/CMakeLists.txt
vendored
|
|
@ -166,11 +166,18 @@ function(orcaslicer_add_cmake_project projectname)
|
|||
endif ()
|
||||
endif ()
|
||||
|
||||
set(_gen "")
|
||||
set(_build_j "-j${NPROC}")
|
||||
if (MSVC)
|
||||
set(_gen CMAKE_GENERATOR "${DEP_MSVC_GEN}" CMAKE_GENERATOR_PLATFORM "${DEP_PLATFORM}")
|
||||
set(_build_j "/m")
|
||||
set(_gen CMAKE_GENERATOR "${DEP_MSVC_GEN}" CMAKE_GENERATOR_PLATFORM "${DEP_PLATFORM}")
|
||||
else()
|
||||
set(_gen "")
|
||||
endif()
|
||||
|
||||
if ($ENV{CMAKE_BUILD_PARALLEL_LEVEL})
|
||||
set(_build_j "") # assume environment will control --build parallel setting
|
||||
elseif(MSVC)
|
||||
set(_build_j "/m")
|
||||
else()
|
||||
set(_build_j "-j${NPROC}")
|
||||
endif ()
|
||||
|
||||
if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
||||
|
|
|
|||
2
deps/OpenCV/OpenCV.cmake
vendored
2
deps/OpenCV/OpenCV.cmake
vendored
|
|
@ -55,6 +55,8 @@ orcaslicer_add_cmake_project(OpenCV
|
|||
-DWITH_VTK=OFF
|
||||
-DWITH_JPEG=OFF
|
||||
-DWITH_WEBP=OFF
|
||||
-DWITH_TIFF=OFF
|
||||
-DBUILD_TIFF=OFF
|
||||
-DENABLE_PRECOMPILED_HEADERS=OFF
|
||||
-DINSTALL_TESTS=OFF
|
||||
-DINSTALL_C_EXAMPLES=OFF
|
||||
|
|
|
|||
1
deps/wxWidgets/wxWidgets.cmake
vendored
1
deps/wxWidgets/wxWidgets.cmake
vendored
|
|
@ -52,6 +52,7 @@ orcaslicer_add_cmake_project(
|
|||
-DwxUSE_ZLIB=sys
|
||||
-DwxUSE_LIBJPEG=sys
|
||||
-DwxUSE_LIBTIFF=OFF
|
||||
-DwxUSE_LIBWEBP=builtin
|
||||
-DwxUSE_EXPAT=sys
|
||||
-DwxUSE_NANOSVG=OFF
|
||||
)
|
||||
|
|
|
|||
|
|
@ -12999,6 +12999,18 @@ msgstr ""
|
|||
msgid "Travel speed of the first layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "First layer travel acceleration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Travel acceleration of first layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "First layer travel jerk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Travel jerk of first layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Number of slow layers"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -15193,6 +15193,18 @@ msgstr "Bewegung"
|
|||
msgid "Travel speed of the first layer."
|
||||
msgstr "Bewegungsgeschwindigkeit der ersten Schicht"
|
||||
|
||||
msgid "First layer travel acceleration"
|
||||
msgstr "Eilgang Beschleunigung"
|
||||
|
||||
msgid "Travel acceleration of first layer."
|
||||
msgstr "Eilgang Beschleunigung der ersten Schicht."
|
||||
|
||||
msgid "First layer travel jerk"
|
||||
msgstr "Eilgang Ruck"
|
||||
|
||||
msgid "Travel jerk of first layer."
|
||||
msgstr "Eilgang Ruck der ersten Schicht."
|
||||
|
||||
msgid "Number of slow layers"
|
||||
msgstr "Anzahl der langsamen Schichten"
|
||||
|
||||
|
|
|
|||
|
|
@ -13280,6 +13280,18 @@ msgstr ""
|
|||
msgid "Travel speed of the first layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "First layer travel acceleration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Travel acceleration of first layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "First layer travel jerk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Travel jerk of first layer."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Number of slow layers"
|
||||
msgstr "This is the number of top interface layers."
|
||||
|
|
|
|||
|
|
@ -14963,7 +14963,19 @@ msgid "First layer travel speed"
|
|||
msgstr "Első réteg mozgási sebessége"
|
||||
|
||||
msgid "Travel speed of the first layer."
|
||||
msgstr "Az első réteg utazási sebessége."
|
||||
msgstr "Az első réteg mozgási sebessége."
|
||||
|
||||
msgid "First layer travel acceleration"
|
||||
msgstr "Első réteg mozgási gyorsulása"
|
||||
|
||||
msgid "Travel acceleration of first layer."
|
||||
msgstr "Az első réteg mozgási gyorsulása."
|
||||
|
||||
msgid "First layer travel jerk"
|
||||
msgstr "Első réteg mozgási jerkje"
|
||||
|
||||
msgid "Travel jerk of first layer."
|
||||
msgstr "Az első réteg mozgási jerkje."
|
||||
|
||||
msgid "Number of slow layers"
|
||||
msgstr "Lassú rétegek száma"
|
||||
|
|
@ -22662,7 +22674,7 @@ msgstr ""
|
|||
"Mikor nyomtass nyitott ajtóval\n"
|
||||
"Tudtad, hogy a nyomtató ajtajának kinyitásával csökkentheted az extruder/"
|
||||
"fejegység eltömődésének valószínűségét, ha alacsonyabb hőmérsékletű "
|
||||
"filamentet nyomtatsz? További információ a Wikiben olvashatsz erről."
|
||||
"filamentet nyomtatsz? További információ erről a Wikiben található."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Avoid warping]
|
||||
msgid ""
|
||||
|
|
@ -22738,5 +22750,3 @@ msgstr ""
|
|||
#~ "maximális áramlás közül a kisebbik korlátozza. Kikapcsolva csak a "
|
||||
#~ "felhasználó által megadott maximális áramlás érvényesül."
|
||||
|
||||
#~ msgid "Travel speed of First layer."
|
||||
#~ msgstr "Az első réteg mozgási sebessége."
|
||||
|
|
|
|||
|
|
@ -4331,7 +4331,7 @@ msgstr ""
|
|||
"seam_slope_start_height precisa ser menor que layer_height.\n"
|
||||
"Redefinir para 0."
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Lock depth should smaller than skin depth.\n"
|
||||
"Reset to 50% of skin depth."
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1764,7 +1764,7 @@ msgid "Choose one file (GCODE/3MF):"
|
|||
msgstr "选择一个文件(GCODE/3MF):"
|
||||
|
||||
msgid "Ext"
|
||||
msgstr "分机"
|
||||
msgstr "Ext"
|
||||
|
||||
msgid "Some presets are modified."
|
||||
msgstr "预设已被修改。"
|
||||
|
|
@ -2854,7 +2854,7 @@ msgstr "内环"
|
|||
|
||||
#. TRN To be shown in the main menu View->Top
|
||||
msgid "Top"
|
||||
msgstr "上"
|
||||
msgstr "顶部"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
|
|
@ -3677,7 +3677,7 @@ msgstr "更新剩余容量"
|
|||
msgid ""
|
||||
"AMS will attempt to estimate the remaining capacity of the Bambu Lab "
|
||||
"filaments."
|
||||
msgstr "AMS 将尝试估计 Bambu Lab 细丝的剩余容量。"
|
||||
msgstr "AMS 将尝试估计 Bambu Lab 耗材丝的剩余容量。"
|
||||
|
||||
msgid "AMS filament backup"
|
||||
msgstr "AMS材料备份"
|
||||
|
|
@ -4813,7 +4813,7 @@ msgstr "当前切片结果的分组不是最佳的。"
|
|||
|
||||
#, boost-format
|
||||
msgid "Increase %1%g filament and %2% changes compared to optimal grouping."
|
||||
msgstr "与最佳分组相比,增加 %1%g 细丝和 %2% 变化。"
|
||||
msgstr "与最佳分组相比,增加 %1%g 耗材丝和 %2% 变化。"
|
||||
|
||||
#, boost-format
|
||||
msgid ""
|
||||
|
|
@ -5088,11 +5088,11 @@ msgstr "对齐到Y轴"
|
|||
|
||||
msgctxt "Camera"
|
||||
msgid "Left"
|
||||
msgstr "左边"
|
||||
msgstr "左"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgid "Right"
|
||||
msgstr "正确的"
|
||||
msgstr "右"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "添加"
|
||||
|
|
@ -5236,7 +5236,7 @@ msgstr "耗材丝 %s 放置在 %s 中,但生成的 G-code 路径超出了 %s
|
|||
msgid ""
|
||||
"Filaments %s are placed in the %s, but the generated G-code path exceeds the "
|
||||
"printable range of the %s."
|
||||
msgstr "细丝 %s 放置在 %s 中,但生成的 G-code 路径超出了 %s 的可打印范围。"
|
||||
msgstr "耗材丝 %s 放置在 %s 中,但生成的 G-code 路径超出了 %s 的可打印范围。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
|
|
@ -5248,7 +5248,7 @@ msgstr "耗材丝 %s 放置在 %s 中,但生成的 G-code 路径超出了 %s
|
|||
msgid ""
|
||||
"Filaments %s are placed in the %s, but the generated G-code path exceeds the "
|
||||
"printable height of the %s."
|
||||
msgstr "细丝 %s 放置在 %s 中,但生成的 G-code 路径超出了 %s 的可打印高度。"
|
||||
msgstr "耗材丝 %s 放置在 %s 中,但生成的 G-code 路径超出了 %s 的可打印高度。"
|
||||
|
||||
msgid "Open wiki for more information."
|
||||
msgstr "打开维基百科了解更多信息。"
|
||||
|
|
@ -5258,7 +5258,7 @@ msgstr "只有正在编辑的对象是可见的。"
|
|||
|
||||
#, c-format, boost-format
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr "细丝 %s 不能直接打印在该板的表面上。"
|
||||
msgstr "耗材 %s 不能直接打印在该板的表面上。"
|
||||
|
||||
msgid ""
|
||||
"PLA and PETG filaments detected in the mixture. Adjust parameters according "
|
||||
|
|
@ -5475,13 +5475,13 @@ msgstr "顶部视图"
|
|||
|
||||
#. TRN To be shown in the main menu View->Bottom
|
||||
msgid "Bottom"
|
||||
msgstr "下"
|
||||
msgstr "底部"
|
||||
|
||||
msgid "Bottom View"
|
||||
msgstr "底部视图"
|
||||
|
||||
msgid "Front"
|
||||
msgstr "前"
|
||||
msgstr "前面"
|
||||
|
||||
msgid "Front View"
|
||||
msgstr "前视图"
|
||||
|
|
@ -5726,13 +5726,13 @@ msgid "Pass 1"
|
|||
msgstr "粗调"
|
||||
|
||||
msgid "Flow ratio test - Pass 1"
|
||||
msgstr "流量比例测试 - 通过 1"
|
||||
msgstr "流量比例测试 - 粗调"
|
||||
|
||||
msgid "Pass 2"
|
||||
msgstr "细调"
|
||||
msgstr "微调"
|
||||
|
||||
msgid "Flow ratio test - Pass 2"
|
||||
msgstr "流量比例测试 - 通过 2"
|
||||
msgstr "流量比例测试 - 微调"
|
||||
|
||||
msgid "YOLO (Recommended)"
|
||||
msgstr "YOLO(推荐)"
|
||||
|
|
@ -5871,7 +5871,7 @@ msgid "The project is no longer available."
|
|||
msgstr "此项目不可用。"
|
||||
|
||||
msgid "Filament Settings"
|
||||
msgstr "打印丝设置"
|
||||
msgstr "材料设置"
|
||||
|
||||
msgid ""
|
||||
"Do you want to synchronize your personal data from Bambu Cloud?\n"
|
||||
|
|
@ -5880,7 +5880,7 @@ msgid ""
|
|||
"2. The Filament presets\n"
|
||||
"3. The Printer presets"
|
||||
msgstr ""
|
||||
"想从Bambu 云同步你的个人数据吗?\n"
|
||||
"想从 Bambu 云同步你的个人数据吗?\n"
|
||||
"包含如下信息:\n"
|
||||
"1. 工艺预设\n"
|
||||
"2. 打印丝预设\n"
|
||||
|
|
@ -5923,7 +5923,7 @@ msgid "Initializing..."
|
|||
msgstr "正在初始化……"
|
||||
|
||||
msgid "Connection Failed. Please check the network and try again"
|
||||
msgstr "链接失败。请检查网络后重试"
|
||||
msgstr "连接失败。请检查网络后重试"
|
||||
|
||||
msgid ""
|
||||
"Please check the network and try again. You can restart or update the "
|
||||
|
|
@ -6349,7 +6349,7 @@ msgid "Debug Info"
|
|||
msgstr "调试信息"
|
||||
|
||||
msgid "Filament loading..."
|
||||
msgstr "耗材丝进料..."
|
||||
msgstr "耗材丝进料中..."
|
||||
|
||||
msgid "No Storage"
|
||||
msgstr "无存储"
|
||||
|
|
@ -6855,7 +6855,7 @@ msgid "Nozzle Clumping Detection"
|
|||
msgstr "裹头检测"
|
||||
|
||||
msgid "Check if the nozzle is clumping by filaments or other foreign objects."
|
||||
msgstr "检查喷嘴是否被细丝或其他异物堵塞。"
|
||||
msgstr "检查喷嘴是否被耗材或其他异物堵塞。"
|
||||
|
||||
msgid "Detects air printing caused by nozzle clogging or filament grinding."
|
||||
msgstr "检测由于喷嘴堵塞或耗材丝研磨造成的空打。"
|
||||
|
|
@ -7304,8 +7304,8 @@ msgid ""
|
|||
"The object from file %s is too small, and maybe in meters or inches.\n"
|
||||
" Do you want to scale to millimeters?"
|
||||
msgstr ""
|
||||
"文件 %s 中对象的尺寸似乎是以米或者英寸为单位定义的。\n"
|
||||
"逆戟鲸切片器的内部单位为毫米。是否要转换成毫米?"
|
||||
"文件 %s 中对象的尺寸过小,似乎是以米(m)或者英寸(inch)为单位定义的。\n"
|
||||
"OrcaSlicer的内部单位为毫米(mm)。是否要转换成毫米(mm)?"
|
||||
|
||||
msgid "Object too small"
|
||||
msgstr "对象尺寸过小"
|
||||
|
|
@ -7547,7 +7547,7 @@ msgid ""
|
|||
msgstr "未提供校准加速度。使用默认加速度值"
|
||||
|
||||
msgid "mm/s²"
|
||||
msgstr "毫米/秒²"
|
||||
msgstr "mm/s²"
|
||||
|
||||
msgid "No speeds provided for calibration. Use default optimal speed "
|
||||
msgstr "未提供校准速度。使用默认最佳速度"
|
||||
|
|
@ -7609,10 +7609,10 @@ msgid "The current project has unsaved changes, save it before continue?"
|
|||
msgstr "当前项目包含未保存的修改,是否先保存?"
|
||||
|
||||
msgid "Number of copies:"
|
||||
msgstr "克隆数量:"
|
||||
msgstr "复制数量:"
|
||||
|
||||
msgid "Copies of the selected object"
|
||||
msgstr "所选对象的克隆数量"
|
||||
msgstr "所选对象的复制数量"
|
||||
|
||||
msgid "Save G-code file as:"
|
||||
msgstr "G-code文件另存为:"
|
||||
|
|
@ -7752,19 +7752,19 @@ msgstr "对象名字:%1%\n"
|
|||
|
||||
#, boost-format
|
||||
msgid "Size: %1% x %2% x %3% in\n"
|
||||
msgstr "大小:%1% x %2% x %3% 英寸\n"
|
||||
msgstr "大小:%1% x %2% x %3% in\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Size: %1% x %2% x %3% mm\n"
|
||||
msgstr "大小: %1% x %2% x %3% 毫米\n"
|
||||
msgstr "大小: %1% x %2% x %3% mm\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Volume: %1% in³\n"
|
||||
msgstr "体积: %1% 英寸³\n"
|
||||
msgstr "体积: %1% in³\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Volume: %1% mm³\n"
|
||||
msgstr "体积: %1% 毫米³\n"
|
||||
msgstr "体积: %1% mm³\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Triangles: %1%\n"
|
||||
|
|
@ -7813,7 +7813,7 @@ msgid "rear"
|
|||
msgstr "后部"
|
||||
|
||||
msgid "Switching the language requires application restart.\n"
|
||||
msgstr "切换语言要求重启应用程序。\n"
|
||||
msgstr "切换语言需要重启应用程序。\n"
|
||||
|
||||
msgid "Do you want to continue?"
|
||||
msgstr "是否继续?"
|
||||
|
|
@ -7852,7 +7852,7 @@ msgid "The period of backup in seconds."
|
|||
msgstr "备份的周期"
|
||||
|
||||
msgid "Bed Temperature Difference Warning"
|
||||
msgstr "床温差警告"
|
||||
msgstr "热床温度不同警告"
|
||||
|
||||
msgid ""
|
||||
"Using filaments with significantly different temperatures may cause:\n"
|
||||
|
|
@ -7895,10 +7895,10 @@ msgid "General"
|
|||
msgstr "常规"
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "公制"
|
||||
msgstr "公制(Metric)"
|
||||
|
||||
msgid "Imperial"
|
||||
msgstr "英制"
|
||||
msgstr "英制(Imperial)"
|
||||
|
||||
msgid "Units"
|
||||
msgstr "单位"
|
||||
|
|
@ -8027,7 +8027,7 @@ msgid "Optimizes filament area maximum height by chosen filament count."
|
|||
msgstr "根据选定的耗材丝数量优化耗材区域最大高度"
|
||||
|
||||
msgid "Features"
|
||||
msgstr "特征"
|
||||
msgstr "特性"
|
||||
|
||||
msgid "Multi device management"
|
||||
msgstr "多设备管理"
|
||||
|
|
@ -8422,13 +8422,13 @@ msgid "My Printer"
|
|||
msgstr "我的打印机"
|
||||
|
||||
msgid "Left filaments"
|
||||
msgstr "左细丝"
|
||||
msgstr "左耗材"
|
||||
|
||||
msgid "AMS filaments"
|
||||
msgstr "AMS 打印丝"
|
||||
|
||||
msgid "Right filaments"
|
||||
msgstr "右细丝"
|
||||
msgstr "右耗材"
|
||||
|
||||
msgid "Click to select filament color"
|
||||
msgstr "点击设置材料颜色"
|
||||
|
|
@ -8651,10 +8651,10 @@ msgid "Send print job"
|
|||
msgstr "发送打印作业"
|
||||
|
||||
msgid "On"
|
||||
msgstr "在"
|
||||
msgstr "开"
|
||||
|
||||
msgid "Not satisfied with the grouping of filaments? Regroup and slice ->"
|
||||
msgstr "对细丝的分组不满意?重组并切片 ->"
|
||||
msgstr "对耗材丝的分组不满意?重组并切片 ->"
|
||||
|
||||
msgid "Manually change external spool during printing for multi-color printing"
|
||||
msgstr "在打印过程中手动更换外部线轴以进行多色打印"
|
||||
|
|
@ -8807,7 +8807,7 @@ msgstr "名称长度超过限制。"
|
|||
|
||||
#, c-format, boost-format
|
||||
msgid "Cost %dg filament and %d changes more than optimal grouping."
|
||||
msgstr "成本 %dg 细丝和 %d 的变化超过最佳分组。"
|
||||
msgstr "成本 %dg 耗材和 %d 的变化超过最佳分组。"
|
||||
|
||||
msgid "nozzle"
|
||||
msgstr "喷嘴"
|
||||
|
|
@ -10094,7 +10094,7 @@ msgid "Append"
|
|||
msgstr "追加"
|
||||
|
||||
msgid "Append to existing filaments"
|
||||
msgstr "附加到现有细丝"
|
||||
msgstr "附加到现有耗材"
|
||||
|
||||
msgid "Reset mapped extruders."
|
||||
msgstr "重置匹配的耗材丝。"
|
||||
|
|
@ -10226,7 +10226,7 @@ msgid ""
|
|||
msgstr "仅同步耗材丝类型和颜色,不包括插槽信息。"
|
||||
|
||||
msgid "Ext spool"
|
||||
msgstr "外线轴"
|
||||
msgstr "外置耗材盘"
|
||||
|
||||
msgid ""
|
||||
"Please check whether the nozzle type of the device is the same as the preset "
|
||||
|
|
@ -10300,23 +10300,23 @@ msgid "For constant flow rate, hold %1% while dragging."
|
|||
msgstr "为保持恒定流量,拖动时按住%1%"
|
||||
|
||||
msgid "ms"
|
||||
msgstr "多发性硬化症"
|
||||
msgstr "ms"
|
||||
|
||||
msgid "Total ramming"
|
||||
msgstr "总顶压"
|
||||
msgstr "总冲刷量"
|
||||
|
||||
msgid "Volume"
|
||||
msgstr "体积"
|
||||
|
||||
msgid "Ramming line"
|
||||
msgstr "顶压线"
|
||||
msgstr "预冲刷线"
|
||||
|
||||
msgid ""
|
||||
"Orca would re-calculate your flushing volumes everytime the filaments color "
|
||||
"changed or filaments changed. You could disable the auto-calculate in Orca "
|
||||
"Slicer > Preferences"
|
||||
msgstr ""
|
||||
"每次细丝颜色发生变化或细丝发生变化时,Orca 都会重新计算您的冲洗量。您可以在 "
|
||||
"每次耗材颜色发生变化或耗材发生变化时,Orca 都会重新计算您的冲洗量。您可以在 "
|
||||
"Orca Slicer > 首选项中禁用自动计算"
|
||||
|
||||
msgid "Flushing volume (mm³) for each filament pair."
|
||||
|
|
@ -11832,7 +11832,7 @@ msgid ""
|
|||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"稍微减小该值(例如 0.9)以减少桥梁材料的用量,从而改善下垂。 实际使用的桥流量"
|
||||
"是通过将该值乘以细丝流量比以及对象的流量比(如果已设置)来计算的。"
|
||||
"是通过将该值乘以耗材流量比以及对象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Internal bridge flow ratio"
|
||||
msgstr "内部搭桥流量比例"
|
||||
|
|
@ -11847,7 +11847,7 @@ msgid ""
|
|||
"object's flow ratio."
|
||||
msgstr ""
|
||||
"该值控制内部桥接层的厚度。这是稀疏填充的第一层。稍微减小该值(例如 0.9)可改"
|
||||
"善稀疏填充的表面质量。 实际使用的内部桥流量是通过将该值乘以桥流量比、细丝流量"
|
||||
"善稀疏填充的表面质量。 实际使用的内部桥流量是通过将该值乘以桥流量比、耗材流量"
|
||||
"比以及对象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Top surface flow ratio"
|
||||
|
|
@ -11861,7 +11861,7 @@ msgid ""
|
|||
"with the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响顶部固体填充的材料量。您可以稍微减少它以获得光滑的表面光洁度。 实际"
|
||||
"使用的顶面流量是通过将该值乘以细丝流量比以及对象的流量比(如果已设置)来计算"
|
||||
"使用的顶面流量是通过将该值乘以耗材流量比以及对象的流量比(如果已设置)来计算"
|
||||
"的。"
|
||||
|
||||
msgid "Bottom surface flow ratio"
|
||||
|
|
@ -11904,7 +11904,7 @@ msgid ""
|
|||
"The actual outer wall flow used is calculated by multiplying this value by "
|
||||
"the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响外墙材料的用量。 实际使用的外壁流量是通过将该值乘以细丝流量比以及对"
|
||||
"该因素影响外墙材料的用量。 实际使用的外壁流量是通过将该值乘以耗材流量比以及对"
|
||||
"象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Inner wall flow ratio"
|
||||
|
|
@ -11916,7 +11916,7 @@ msgid ""
|
|||
"The actual inner wall flow used is calculated by multiplying this value by "
|
||||
"the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响内壁材料的用量。 实际使用的内壁流量是通过将该值乘以细丝流量比以及对"
|
||||
"该因素影响内壁材料的用量。 实际使用的内壁流量是通过将该值乘以耗材流量比以及对"
|
||||
"象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Overhang flow ratio"
|
||||
|
|
@ -11928,7 +11928,7 @@ msgid ""
|
|||
"The actual overhang flow used is calculated by multiplying this value by the "
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响悬垂材料的数量。 实际使用的悬垂流量是通过将该值乘以细丝流量比以及对"
|
||||
"该因素影响悬垂材料的数量。 实际使用的悬垂流量是通过将该值乘以耗材流量比以及对"
|
||||
"象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Sparse infill flow ratio"
|
||||
|
|
@ -11940,7 +11940,7 @@ msgid ""
|
|||
"The actual sparse infill flow used is calculated by multiplying this value "
|
||||
"by the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响稀疏填充的材料量。 实际使用的稀疏填充流量是通过将该值乘以细丝流量比"
|
||||
"该因素影响稀疏填充的材料量。 实际使用的稀疏填充流量是通过将该值乘以耗材流量比"
|
||||
"以及对象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Internal solid infill flow ratio"
|
||||
|
|
@ -11953,7 +11953,7 @@ msgid ""
|
|||
"value by the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响内部固体填充材料的数量。 实际使用的内部固体填充流量是通过将该值乘以"
|
||||
"细丝流量比以及对象的流量比(如果已设置)来计算的。"
|
||||
"耗材流量比以及对象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Gap fill flow ratio"
|
||||
msgstr "间隙填充流量比"
|
||||
|
|
@ -11964,11 +11964,11 @@ msgid ""
|
|||
"The actual gap filling flow used is calculated by multiplying this value by "
|
||||
"the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响填充间隙的材料量。 实际使用的间隙填充流量是通过将该值乘以细丝流量比"
|
||||
"该因素影响填充间隙的材料量。 实际使用的间隙填充流量是通过将该值乘以耗材流量比"
|
||||
"以及对象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Support flow ratio"
|
||||
msgstr "支持流量比"
|
||||
msgstr "支撑流量比"
|
||||
|
||||
msgid ""
|
||||
"This factor affects the amount of material for support.\n"
|
||||
|
|
@ -11976,11 +11976,11 @@ msgid ""
|
|||
"The actual support flow used is calculated by multiplying this value by the "
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响支撑材料的数量。 实际使用的支撑流量是通过将该值乘以细丝流量比以及对"
|
||||
"该因素影响支撑材料的数量。 实际使用的支撑流量是通过将该值乘以耗材流量比以及对"
|
||||
"象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Support interface flow ratio"
|
||||
msgstr "支持接口流量比例"
|
||||
msgstr "支撑面流量比例"
|
||||
|
||||
msgid ""
|
||||
"This factor affects the amount of material for the support interface.\n"
|
||||
|
|
@ -11988,7 +11988,7 @@ msgid ""
|
|||
"The actual support interface flow used is calculated by multiplying this "
|
||||
"value by the filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
"该因素影响支撑界面的材料量。 实际使用的支撑界面流量是通过将该值乘以细丝流量比"
|
||||
"该因素影响支撑界面的材料量。 实际使用的支撑界面流量是通过将该值乘以耗材流量比"
|
||||
"以及对象的流量比(如果已设置)来计算的。"
|
||||
|
||||
msgid "Precise wall"
|
||||
|
|
@ -13049,10 +13049,10 @@ msgid ""
|
|||
msgstr "打印此材料的所需的最小喷嘴硬度。零值表示不检查喷嘴硬度。"
|
||||
|
||||
msgid "Filament map to extruder"
|
||||
msgstr "耗材图至挤出机"
|
||||
msgstr "耗材映射到挤出机"
|
||||
|
||||
msgid "Filament map to extruder."
|
||||
msgstr "耗材图到挤出机。"
|
||||
msgstr "耗材映射到挤出机。"
|
||||
|
||||
msgid "Auto For Flush"
|
||||
msgstr "自动冲洗"
|
||||
|
|
@ -13851,7 +13851,7 @@ msgid ""
|
|||
"the ironing flow for each filament type. Too high value results in "
|
||||
"overextrusion on the surface."
|
||||
msgstr ""
|
||||
"针对熨烫流程的细丝特定覆盖。这使您可以为每种细丝类型定制熨烫流程。值太高会导"
|
||||
"针对熨烫流程的耗材特定覆盖。这使您可以为每种耗材类型定制熨烫流程。值太高会导"
|
||||
"致表面过度挤压。"
|
||||
|
||||
msgid "Ironing line spacing"
|
||||
|
|
@ -13861,7 +13861,7 @@ msgid ""
|
|||
"Filament-specific override for ironing line spacing. This allows you to "
|
||||
"customize the spacing between ironing lines for each filament type."
|
||||
msgstr ""
|
||||
"针对熨烫线间距的细丝特定覆盖。这使您可以自定义每种细丝类型的熨烫线之间的间"
|
||||
"针对熨烫线间距的耗材特定覆盖。这使您可以自定义每种耗材类型的熨烫线之间的间"
|
||||
"距。"
|
||||
|
||||
msgid "Ironing inset"
|
||||
|
|
@ -13871,7 +13871,7 @@ msgid ""
|
|||
"Filament-specific override for ironing inset. This allows you to customize "
|
||||
"the distance to keep from the edges when ironing for each filament type."
|
||||
msgstr ""
|
||||
"用于熨烫插入的细丝特定覆盖。这使您可以自定义熨烫每种细丝类型时与边缘保持的距"
|
||||
"用于熨烫插入的耗材丝特定覆盖。这使您可以自定义熨烫每种耗材丝类型时与边缘保持的距"
|
||||
"离。"
|
||||
|
||||
msgid "Ironing speed"
|
||||
|
|
@ -13881,7 +13881,7 @@ msgid ""
|
|||
"Filament-specific override for ironing speed. This allows you to customize "
|
||||
"the print speed of ironing lines for each filament type."
|
||||
msgstr ""
|
||||
"特定于耗材的熨烫速度优先。这允许您自定义每种细丝类型的熨烫线的打印速度。"
|
||||
"特定于耗材的熨烫速度优先。这允许您自定义每种耗材丝类型的熨烫线的打印速度。"
|
||||
|
||||
msgid ""
|
||||
"Randomly jitter while printing the wall, so that the surface has a rough "
|
||||
|
|
@ -13948,7 +13948,7 @@ msgid ""
|
|||
"displayed, and the model will not be sliced. You can choose this number "
|
||||
"until this error is repeated."
|
||||
msgstr ""
|
||||
"模糊皮肤生成模式。仅适用于阿拉克尼!\n"
|
||||
"模糊皮肤生成模式。仅适用于Arachne!\n"
|
||||
"位移:经典模式,通过将喷嘴从原始路径向侧面移动来形成图案。\n"
|
||||
"挤出:通过挤出塑料量而形成图案的模式。这是一种快速而直接的算法,没有不必要的"
|
||||
"喷嘴抖动,可以产生平滑的图案。但它对于在整个阵列中形成松散的墙壁更有用。\n"
|
||||
|
|
@ -14868,7 +14868,7 @@ msgstr ""
|
|||
"注意:此参数禁用圆弧拟合。"
|
||||
|
||||
msgid "mm³/s²"
|
||||
msgstr "毫米立方/秒平方"
|
||||
msgstr "mm³/s²"
|
||||
|
||||
msgid "Smoothing segment length"
|
||||
msgstr "平滑段长度"
|
||||
|
|
@ -15213,7 +15213,7 @@ msgstr "切料回抽距离"
|
|||
msgid ""
|
||||
"Experimental feature: Retraction length before cutting off during filament "
|
||||
"change."
|
||||
msgstr "实验性选项。在更换耗材丝时,切断前的回抽长度"
|
||||
msgstr "实验性选项:在更换耗材丝时,切断前的回抽长度"
|
||||
|
||||
msgid "Long retraction when extruder change"
|
||||
msgstr "更换挤出机时长回缩"
|
||||
|
|
@ -15768,7 +15768,7 @@ msgstr ""
|
|||
"不使用该值。"
|
||||
|
||||
msgid "∆℃"
|
||||
msgstr "℃"
|
||||
msgstr "∆℃"
|
||||
|
||||
msgid "Preheat time"
|
||||
msgstr "预热时间"
|
||||
|
|
@ -15860,7 +15860,7 @@ msgid "Enable filament ramming"
|
|||
msgstr "启用耗材尖端成型"
|
||||
|
||||
msgid "No sparse layers (beta)"
|
||||
msgstr "无稀疏层 (实验)"
|
||||
msgstr "无稀疏层 (实验功能)"
|
||||
|
||||
msgid ""
|
||||
"If enabled, the wipe tower will not be printed on layers with no tool "
|
||||
|
|
@ -19170,7 +19170,7 @@ msgid ""
|
|||
"Note: If the only preset under this filament is deleted, the filament will "
|
||||
"be deleted after exiting the dialog."
|
||||
msgstr ""
|
||||
"注意:如果在该耗材下仅有的预设被删除,那么在退出对话框后,该耗材将被删除。"
|
||||
"注意:如果在该耗材下仅有的预设被删除,在关闭对话框后,该耗材将被删除。"
|
||||
|
||||
msgid "Presets inherited by other presets cannot be deleted"
|
||||
msgstr "附属于其他预设的预设不能被删除。"
|
||||
|
|
@ -19341,7 +19341,7 @@ msgid "Success!"
|
|||
msgstr "成功!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr "您确定要注销吗?"
|
||||
msgstr "您确定要登出吗?"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr "在 设备 标签页中查看打印机主机的网页界面"
|
||||
|
|
@ -19760,7 +19760,7 @@ msgid ""
|
|||
"set the outer wall speed to be 40 to 60 mm/s when slicing."
|
||||
msgstr ""
|
||||
"为了使打印件获得更高的光泽度,请在使用前将耗材干燥,并在切片时将外壁速度设置"
|
||||
"为 40 至 60 毫米/秒。"
|
||||
"为 40 至 60 mm/s。"
|
||||
|
||||
msgid ""
|
||||
"This filament is only used to print models with a low density usually, and "
|
||||
|
|
@ -19793,7 +19793,7 @@ msgid ""
|
|||
"the AMS. Printing it is of many requirements, and to get better printing "
|
||||
"quality, please refer to this wiki: TPU printing guide."
|
||||
msgstr ""
|
||||
"该耗材具有足够高的硬度(约 67 D)并且与 AMS 兼容。打印此类耗材需要满足较多条"
|
||||
"该耗材具有足够高的硬度(约 67D)并且与 AMS 兼容。打印此类耗材需要满足较多条"
|
||||
"件,为了获得更好的打印质量,请参考这个英文wiki:TPU printing guide(“TPU打印"
|
||||
"指南”)"
|
||||
|
||||
|
|
@ -19884,7 +19884,7 @@ msgid "The number of printers in use simultaneously cannot be equal to 0."
|
|||
msgstr "同时使用的打印机数量不能等于0。"
|
||||
|
||||
msgid "Use External Spool"
|
||||
msgstr "使用外置线卷"
|
||||
msgstr "使用外置耗材盘"
|
||||
|
||||
msgid "Select Printers"
|
||||
msgstr "选择打印机"
|
||||
|
|
@ -20642,7 +20642,7 @@ msgid ""
|
|||
"Did you know that you can save wasted filament by flushing it into support/"
|
||||
"objects/infill during filament change?"
|
||||
msgstr ""
|
||||
"冲刷到支持/对象/填充中\n"
|
||||
"冲刷到支撑/对象/填充中\n"
|
||||
"你知道吗?你可以在换料时将它们冲入支撑/对象/填充,以节省浪费的料丝。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Improve strength]
|
||||
|
|
@ -20696,7 +20696,7 @@ msgstr ""
|
|||
#~ msgstr "检查新版本"
|
||||
|
||||
#~ msgid "Detect spaghetti failure(scattered lose filament)."
|
||||
#~ msgstr "检测炒面故障(散落的细丝)。"
|
||||
#~ msgstr "检测炒面故障(散落的耗材丝)。"
|
||||
|
||||
#~ msgid "Rotate of view"
|
||||
#~ msgstr "旋转视图"
|
||||
|
|
|
|||
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
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
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
|
|
@ -1,43 +1,43 @@
|
|||
{
|
||||
"version": "1.0.0.4",
|
||||
"high_temp_filament": [
|
||||
"ABS",
|
||||
"ASA",
|
||||
"ASA-CF",
|
||||
"PC",
|
||||
"PA",
|
||||
"PA-CF",
|
||||
"PA-GF",
|
||||
"PA6-CF",
|
||||
"PET-CF",
|
||||
"PPS",
|
||||
"PPS-CF",
|
||||
"PPA-CF",
|
||||
"PPA-GF",
|
||||
"ABS-GF",
|
||||
"ASA-AERO"
|
||||
],
|
||||
"low_temp_filament": [
|
||||
"PLA",
|
||||
"TPU",
|
||||
"TPU-AMS",
|
||||
"PLA-CF",
|
||||
"PLA-AERO",
|
||||
"PVA",
|
||||
"BVOH",
|
||||
"PCTG",
|
||||
"PETG",
|
||||
"PETG-CF",
|
||||
"SBS"
|
||||
],
|
||||
"high_low_compatible_filament":[
|
||||
"HIPS",
|
||||
"PE",
|
||||
"PP",
|
||||
"EVA",
|
||||
"PE-CF",
|
||||
"PP-CF",
|
||||
"PP-GF",
|
||||
"PHA"
|
||||
]
|
||||
}
|
||||
"version": "1.0.0.4",
|
||||
"high_temp_filament": [
|
||||
"ABS",
|
||||
"ASA",
|
||||
"ASA-CF",
|
||||
"PC",
|
||||
"PA",
|
||||
"PA-CF",
|
||||
"PA-GF",
|
||||
"PA6-CF",
|
||||
"PET-CF",
|
||||
"PPS",
|
||||
"PPS-CF",
|
||||
"PPA-CF",
|
||||
"PPA-GF",
|
||||
"ABS-GF",
|
||||
"ASA-AERO"
|
||||
],
|
||||
"low_temp_filament": [
|
||||
"PLA",
|
||||
"TPU",
|
||||
"TPU-AMS",
|
||||
"PLA-CF",
|
||||
"PLA-AERO",
|
||||
"PVA",
|
||||
"BVOH",
|
||||
"PCTG",
|
||||
"PETG",
|
||||
"PETG-CF",
|
||||
"SBS"
|
||||
],
|
||||
"high_low_compatible_filament": [
|
||||
"HIPS",
|
||||
"PE",
|
||||
"PP",
|
||||
"EVA",
|
||||
"PE-CF",
|
||||
"PP-CF",
|
||||
"PP-GF",
|
||||
"PHA"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,41 +1,41 @@
|
|||
{
|
||||
"incompatible_nozzles":{
|
||||
"Standard":{
|
||||
"0.2":[
|
||||
"Bambu PLA Marble",
|
||||
"Bambu PLA Sparkle",
|
||||
"Bambu PLA Wood",
|
||||
"Bambu PLA Galaxy",
|
||||
"Bambu PETG Translucent"
|
||||
],
|
||||
"0.4":[],
|
||||
"0.6":[
|
||||
"Bambu PLA Silk+",
|
||||
"Bambu PLA Silk",
|
||||
"Bambu PLA Aero",
|
||||
"Bambu ASA-Aero"
|
||||
],
|
||||
"0.8":[
|
||||
"Bambu PLA Silk+",
|
||||
"Bambu PLA Silk",
|
||||
"Bambu PLA Aero",
|
||||
"Bambu ASA-Aero"
|
||||
]
|
||||
},
|
||||
"High Flow":{
|
||||
"0.4":[
|
||||
"Bambu PLA-CF",
|
||||
"Bambu PETG-CF",
|
||||
"Bambu ASA-CF",
|
||||
"Bambu PAHT-CF",
|
||||
"Bambu PET-CF",
|
||||
"Bambu PA6-CF",
|
||||
"Bambu PA6-GF",
|
||||
"Bambu PPA-CF",
|
||||
"Bambu PPS-CF"
|
||||
],
|
||||
"0.6":[],
|
||||
"0.8":[]
|
||||
}
|
||||
}
|
||||
}
|
||||
"incompatible_nozzles": {
|
||||
"Standard": {
|
||||
"0.2": [
|
||||
"Bambu PLA Marble",
|
||||
"Bambu PLA Sparkle",
|
||||
"Bambu PLA Wood",
|
||||
"Bambu PLA Galaxy",
|
||||
"Bambu PETG Translucent"
|
||||
],
|
||||
"0.4": [],
|
||||
"0.6": [
|
||||
"Bambu PLA Silk+",
|
||||
"Bambu PLA Silk",
|
||||
"Bambu PLA Aero",
|
||||
"Bambu ASA-Aero"
|
||||
],
|
||||
"0.8": [
|
||||
"Bambu PLA Silk+",
|
||||
"Bambu PLA Silk",
|
||||
"Bambu PLA Aero",
|
||||
"Bambu ASA-Aero"
|
||||
]
|
||||
},
|
||||
"High Flow": {
|
||||
"0.4": [
|
||||
"Bambu PLA-CF",
|
||||
"Bambu PETG-CF",
|
||||
"Bambu ASA-CF",
|
||||
"Bambu PAHT-CF",
|
||||
"Bambu PET-CF",
|
||||
"Bambu PA6-CF",
|
||||
"Bambu PA6-GF",
|
||||
"Bambu PPA-CF",
|
||||
"Bambu PPS-CF"
|
||||
],
|
||||
"0.6": [],
|
||||
"0.8": []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"version": "1.0.0.3",
|
||||
"nozzle_hrc": {
|
||||
"hardened_steel": 55,
|
||||
"stainless_steel": 20,
|
||||
"tungsten_carbide": 85,
|
||||
"brass": 2,
|
||||
"E3D": 55,
|
||||
"undefine": 0
|
||||
}
|
||||
}
|
||||
"version": "1.0.0.3",
|
||||
"nozzle_hrc": {
|
||||
"hardened_steel": 55,
|
||||
"stainless_steel": 20,
|
||||
"tungsten_carbide": 85,
|
||||
"brass": 2,
|
||||
"E3D": 55,
|
||||
"undefine": 0
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,10 @@
|
|||
"display_name": "Bambu Lab X1 Carbon",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p", "1080p" ],
|
||||
"resolution_supported": [
|
||||
"720p",
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -13,7 +16,10 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/x1/maintenance/replace-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/x1/maintenance/replace-hotend"
|
||||
|
|
@ -50,15 +56,25 @@
|
|||
"support_ams_ext_mix_print": true
|
||||
},
|
||||
"model_id": "BL-P001",
|
||||
"compatible_machine": [ "BL-P002", "C11", "C12", "C13" ],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"compatible_machine": [
|
||||
"BL-P002",
|
||||
"C11",
|
||||
"C12",
|
||||
"C13"
|
||||
],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"support_wrapping_detection": false,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto",
|
||||
"printer_type": "3DPrinter-X1-Carbon",
|
||||
"printer_thumbnail_image": "printer_thumbnail_x1c",
|
||||
"printer_connect_help_image": "input_access_code_x1",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_xp"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_xp"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_x1",
|
||||
|
|
@ -101,4 +117,4 @@
|
|||
"support_user_preset": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,10 @@
|
|||
"display_name": "Bambu Lab X1",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p", "1080p" ],
|
||||
"resolution_supported": [
|
||||
"720p",
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -13,7 +16,10 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/x1/maintenance/replace-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/x1/maintenance/replace-hotend"
|
||||
|
|
@ -51,14 +57,24 @@
|
|||
},
|
||||
"model_id": "BL-P002",
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto",
|
||||
"compatible_machine": [ "BL-P001", "C11", "C12", "C13" ],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"compatible_machine": [
|
||||
"BL-P001",
|
||||
"C11",
|
||||
"C12",
|
||||
"C13"
|
||||
],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"printer_type": "3DPrinter-X1",
|
||||
"printer_thumbnail_image": "printer_thumbnail",
|
||||
"support_wrapping_detection": false,
|
||||
"printer_connect_help_image": "input_access_code_x1",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_xp"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_xp"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_x1",
|
||||
|
|
@ -101,4 +117,4 @@
|
|||
"support_user_preset": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,12 +3,17 @@
|
|||
"display_name": "Bambu Lab P1P",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p" ],
|
||||
"resolution_supported": [
|
||||
"720p"
|
||||
],
|
||||
"liveview": {
|
||||
"local": "local"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/p1/maintenance/complete-hot-end-assembly",
|
||||
"en": "https://wiki.bambulab.com/en/p1/maintenance/complete-hot-end-assembly"
|
||||
|
|
@ -47,14 +52,24 @@
|
|||
"model_id": "C11",
|
||||
"support_wrapping_detection": false,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto",
|
||||
"compatible_machine": [ "BL-P001", "BL-P002", "C12", "C13" ],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"compatible_machine": [
|
||||
"BL-P001",
|
||||
"BL-P002",
|
||||
"C12",
|
||||
"C13"
|
||||
],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"printer_type": "C11",
|
||||
"ftp_folder": "sdcard/",
|
||||
"printer_thumbnail_image": "printer_thumbnail_p1p",
|
||||
"printer_connect_help_image": "input_access_code_p1p",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_xp"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_xp"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_p1p",
|
||||
|
|
|
|||
|
|
@ -3,12 +3,17 @@
|
|||
"display_name": "Bambu Lab P1S",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p" ],
|
||||
"resolution_supported": [
|
||||
"720p"
|
||||
],
|
||||
"liveview": {
|
||||
"local": "local"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/p1/maintenance/complete-hot-end-assembly",
|
||||
"en": "https://wiki.bambulab.com/en/p1/maintenance/complete-hot-end-assembly"
|
||||
|
|
@ -47,14 +52,24 @@
|
|||
"model_id": "C12",
|
||||
"support_wrapping_detection": false,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto",
|
||||
"compatible_machine": [ "BL-P001", "BL-P002", "C11", "C13" ],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"compatible_machine": [
|
||||
"BL-P001",
|
||||
"BL-P002",
|
||||
"C11",
|
||||
"C13"
|
||||
],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"printer_type": "C12",
|
||||
"ftp_folder": "sdcard/",
|
||||
"printer_thumbnail_image": "printer_thumbnail_p1s",
|
||||
"printer_connect_help_image": "input_access_code_p1p",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_xp"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_xp"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_p1p",
|
||||
|
|
@ -69,7 +84,9 @@
|
|||
},
|
||||
"01.03.50.01": {
|
||||
"engineer": "00.06.03.51",
|
||||
"resolution_supported": ["720p"],
|
||||
"resolution_supported": [
|
||||
"720p"
|
||||
],
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"liveview": {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,10 @@
|
|||
"display_name": "Bambu Lab X1E",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p", "1080p" ],
|
||||
"resolution_supported": [
|
||||
"720p",
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -13,7 +16,10 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 320 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
320
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/x1/maintenance/replace-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/x1/maintenance/replace-hotend"
|
||||
|
|
@ -46,7 +52,10 @@
|
|||
"support_first_layer_inspect": true,
|
||||
"support_chamber": true,
|
||||
"support_chamber_temp_edit": true,
|
||||
"support_chamber_temp_edit_range": [0, 60],
|
||||
"support_chamber_temp_edit_range": [
|
||||
0,
|
||||
60
|
||||
],
|
||||
"support_extrusion_cali": false,
|
||||
"support_user_preset": false,
|
||||
"bed_temperature_limit": 110,
|
||||
|
|
@ -56,13 +65,23 @@
|
|||
"model_id": "C13",
|
||||
"support_wrapping_detection": false,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto",
|
||||
"compatible_machine": [ "BL-P001", "BL-P002", "C11", "C12" ],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"compatible_machine": [
|
||||
"BL-P001",
|
||||
"BL-P002",
|
||||
"C11",
|
||||
"C12"
|
||||
],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"printer_type": "C13",
|
||||
"printer_thumbnail_image": "printer_thumbnail_x1e",
|
||||
"printer_connect_help_image": "input_access_code_x1",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_xp"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_xp"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_x1",
|
||||
|
|
@ -74,4 +93,4 @@
|
|||
"01.05.06.06": {
|
||||
"rv2166": "00.00.21.20"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,13 +3,18 @@
|
|||
"display_name": "Bambu Lab A1 mini",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p" ],
|
||||
"resolution_supported": [
|
||||
"720p"
|
||||
],
|
||||
"liveview": {
|
||||
"local": "local",
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/a1-mini/maintenance/hotend-heating-assembly-replacement",
|
||||
"en": "https://wiki.bambulab.com/en/a1-mini/maintenance/hotend-heating-assembly-replacement"
|
||||
|
|
@ -48,13 +53,18 @@
|
|||
"support_wrapping_detection": false,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto_i3",
|
||||
"compatible_machine": [],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"printer_type": "N1",
|
||||
"ftp_folder": "sdcard/",
|
||||
"printer_thumbnail_image": "printer_thumbnail_n1",
|
||||
"printer_connect_help_image": "input_access_code_n1",
|
||||
"printer_use_ams_image": "extra_icon",
|
||||
"printer_ext_image": ["ext_image_n1"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_n1"
|
||||
],
|
||||
"use_ams_type": "f1",
|
||||
"printer_arch": "i3",
|
||||
"printer_series": "series_n",
|
||||
|
|
@ -73,4 +83,4 @@
|
|||
"support_user_preset": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,13 +3,18 @@
|
|||
"display_name": "Bambu Lab A1",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "720p" ],
|
||||
"resolution_supported": [
|
||||
"720p"
|
||||
],
|
||||
"liveview": {
|
||||
"local": "local",
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/a1-mini/maintenance/hotend-heating-assembly-replacement",
|
||||
"en": "https://wiki.bambulab.com/en/a1-mini/maintenance/hotend-heating-assembly-replacement"
|
||||
|
|
@ -46,7 +51,10 @@
|
|||
},
|
||||
"model_id": "N2S",
|
||||
"compatible_machine": [],
|
||||
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
|
||||
"auto_cali_not_support_filaments": [
|
||||
"GFU03",
|
||||
"GFU04"
|
||||
],
|
||||
"support_wrapping_detection": false,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto_i3",
|
||||
"printer_type": "N2S",
|
||||
|
|
@ -54,7 +62,9 @@
|
|||
"printer_thumbnail_image": "printer_thumbnail_n2s",
|
||||
"printer_connect_help_image": "input_access_code_n1",
|
||||
"printer_use_ams_image": "extra_icon",
|
||||
"printer_ext_image": ["ext_image_n2s"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_n2s"
|
||||
],
|
||||
"use_ams_type": "f1",
|
||||
"printer_arch": "i3",
|
||||
"printer_series": "series_n",
|
||||
|
|
@ -72,4 +82,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,9 @@
|
|||
"display_name": "Bambu Lab P2S",
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "1080p" ],
|
||||
"resolution_supported": [
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -14,12 +16,18 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 300 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
300
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/h2/maintenance/replace-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/h2/maintenance/replace-hotend"
|
||||
},
|
||||
"bed_temp_range": [ 0, 110 ],
|
||||
"bed_temp_range": [
|
||||
0,
|
||||
110
|
||||
],
|
||||
"support_motor_noise_cali": false,
|
||||
"support_tunnel_mqtt": true,
|
||||
"support_mqtt_alive": true,
|
||||
|
|
@ -56,22 +64,22 @@
|
|||
"support_user_preset": false,
|
||||
"support_ams_ext_mix_print": true
|
||||
},
|
||||
"fan" : {
|
||||
"0" :
|
||||
{
|
||||
"fan": {
|
||||
"0": {
|
||||
"description": "",
|
||||
"2": "Right(Aux)",
|
||||
"10": "Left(Aux)"
|
||||
},
|
||||
"1" :
|
||||
{
|
||||
"1": {
|
||||
"2": "Right(Filter)",
|
||||
"10": "Left(Aux)"
|
||||
},
|
||||
"special_cooling_text" : "Cooling mode is suitable for printing PLA/PETG/TPU materials."
|
||||
"special_cooling_text": "Cooling mode is suitable for printing PLA/PETG/TPU materials."
|
||||
},
|
||||
"model_id": "N7",
|
||||
"subseries": ["N7-V2"],
|
||||
"subseries": [
|
||||
"N7-V2"
|
||||
],
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto_n7",
|
||||
"support_wrapping_detection": true,
|
||||
"compatible_machine": [],
|
||||
|
|
@ -79,7 +87,9 @@
|
|||
"printer_thumbnail_image": "printer_thumbnail_N7",
|
||||
"printer_connect_help_image": "input_access_code_x1",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_n7"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_n7"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_x1",
|
||||
|
|
@ -88,4 +98,4 @@
|
|||
"enable_set_nozzle_info": false,
|
||||
"support_safety_options": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,11 +4,16 @@
|
|||
"print": {
|
||||
"2D": {
|
||||
"laser": {
|
||||
"power": [ 10, 40 ]
|
||||
"power": [
|
||||
10,
|
||||
40
|
||||
]
|
||||
}
|
||||
},
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "1080p" ],
|
||||
"resolution_supported": [
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -19,12 +24,18 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 350 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
350
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/h2/maintenance/replace-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/h2/maintenance/replace-hotend"
|
||||
},
|
||||
"bed_temp_range": [ 0, 120 ],
|
||||
"bed_temp_range": [
|
||||
0,
|
||||
120
|
||||
],
|
||||
"support_motor_noise_cali": false,
|
||||
"support_tunnel_mqtt": true,
|
||||
"support_mqtt_alive": true,
|
||||
|
|
@ -56,7 +67,10 @@
|
|||
"support_save_remote_print_file_to_storage": true,
|
||||
"support_chamber": true,
|
||||
"support_chamber_temp_edit": true,
|
||||
"support_chamber_temp_edit_range": [ 0, 65 ],
|
||||
"support_chamber_temp_edit_range": [
|
||||
0,
|
||||
65
|
||||
],
|
||||
"support_chamber_temp_switch_heating": 40,
|
||||
"support_extrusion_cali": false,
|
||||
"support_user_preset": false,
|
||||
|
|
@ -66,13 +80,22 @@
|
|||
"model_id": "O1D",
|
||||
"support_wrapping_detection": true,
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto_multi_extruders",
|
||||
"printer_modes": [ "fdm", "laser", "cut" ],
|
||||
"compatible_machine": ["O1E"],
|
||||
"printer_modes": [
|
||||
"fdm",
|
||||
"laser",
|
||||
"cut"
|
||||
],
|
||||
"compatible_machine": [
|
||||
"O1E"
|
||||
],
|
||||
"printer_type": "O1D",
|
||||
"printer_thumbnail_image": "printer_thumbnail_h2d",
|
||||
"printer_connect_help_image": "input_access_code_h2d",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_o_right", "ext_image_o_left"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_o_right",
|
||||
"ext_image_o_left"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_o",
|
||||
|
|
@ -81,4 +104,4 @@
|
|||
"enable_set_nozzle_info": false,
|
||||
"support_safety_options": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,11 +4,16 @@
|
|||
"print": {
|
||||
"2D": {
|
||||
"laser": {
|
||||
"power": [ 10, 40 ]
|
||||
"power": [
|
||||
10,
|
||||
40
|
||||
]
|
||||
}
|
||||
},
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "1080p" ],
|
||||
"resolution_supported": [
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -19,12 +24,18 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 350 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
350
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/h2/maintenance/replace-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/h2/maintenance/replace-hotend"
|
||||
},
|
||||
"bed_temp_range": [ 0, 120 ],
|
||||
"bed_temp_range": [
|
||||
0,
|
||||
120
|
||||
],
|
||||
"support_motor_noise_cali": false,
|
||||
"support_tunnel_mqtt": true,
|
||||
"support_mqtt_alive": true,
|
||||
|
|
@ -56,7 +67,10 @@
|
|||
"support_save_remote_print_file_to_storage": true,
|
||||
"support_chamber": true,
|
||||
"support_chamber_temp_edit": true,
|
||||
"support_chamber_temp_edit_range": [ 0, 65 ],
|
||||
"support_chamber_temp_edit_range": [
|
||||
0,
|
||||
65
|
||||
],
|
||||
"support_chamber_temp_switch_heating": 40,
|
||||
"support_extrusion_cali": false,
|
||||
"support_user_preset": false,
|
||||
|
|
@ -66,13 +80,22 @@
|
|||
"model_id": "O1E",
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto_multi_extruders",
|
||||
"support_wrapping_detection": true,
|
||||
"printer_modes": [ "fdm", "laser", "cut" ],
|
||||
"compatible_machine": ["O1D"],
|
||||
"printer_modes": [
|
||||
"fdm",
|
||||
"laser",
|
||||
"cut"
|
||||
],
|
||||
"compatible_machine": [
|
||||
"O1D"
|
||||
],
|
||||
"printer_type": "O1E",
|
||||
"printer_thumbnail_image": "printer_thumbnail_o1e",
|
||||
"printer_connect_help_image": "input_access_code_h2d",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_o_right", "ext_image_o_left"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_o_right",
|
||||
"ext_image_o_left"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_o",
|
||||
|
|
@ -81,4 +104,4 @@
|
|||
"enable_set_nozzle_info": false,
|
||||
"support_safety_options": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,11 +4,16 @@
|
|||
"print": {
|
||||
"2D": {
|
||||
"laser": {
|
||||
"power": [ 10, 40 ]
|
||||
"power": [
|
||||
10,
|
||||
40
|
||||
]
|
||||
}
|
||||
},
|
||||
"ipcam": {
|
||||
"resolution_supported": [ "1080p" ],
|
||||
"resolution_supported": [
|
||||
"1080p"
|
||||
],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "tutk"
|
||||
|
|
@ -19,12 +24,18 @@
|
|||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
"nozzle_temp_range": [ 0, 350 ],
|
||||
"nozzle_temp_range": [
|
||||
0,
|
||||
350
|
||||
],
|
||||
"nozzle_replace_wiki": {
|
||||
"zh": "https://wiki.bambulab.com/zh/h2s/maintenance/replace-silicone-sock-and-hotend",
|
||||
"en": "https://wiki.bambulab.com/en/h2s/maintenance/replace-silicone-sock-and-hotend"
|
||||
},
|
||||
"bed_temp_range": [ 0, 120 ],
|
||||
"bed_temp_range": [
|
||||
0,
|
||||
120
|
||||
],
|
||||
"support_motor_noise_cali": false,
|
||||
"support_tunnel_mqtt": true,
|
||||
"support_mqtt_alive": true,
|
||||
|
|
@ -55,7 +66,10 @@
|
|||
"support_first_layer_inspect": false,
|
||||
"support_save_remote_print_file_to_storage": true,
|
||||
"support_chamber_temp_edit": true,
|
||||
"support_chamber_temp_edit_range": [0, 65],
|
||||
"support_chamber_temp_edit_range": [
|
||||
0,
|
||||
65
|
||||
],
|
||||
"support_chamber_temp_switch_heating": 40,
|
||||
"support_extrusion_cali": false,
|
||||
"support_user_preset": false,
|
||||
|
|
@ -63,13 +77,19 @@
|
|||
},
|
||||
"model_id": "O1S",
|
||||
"auto_pa_cali_thumbnail_image": "fd_calibration_auto_single_o",
|
||||
"printer_modes": [ "fdm", "laser", "cut" ],
|
||||
"printer_modes": [
|
||||
"fdm",
|
||||
"laser",
|
||||
"cut"
|
||||
],
|
||||
"compatible_machine": [],
|
||||
"printer_type": "O1S",
|
||||
"printer_thumbnail_image": "printer_thumbnail_o1s",
|
||||
"printer_connect_help_image": "input_access_code_x1",
|
||||
"printer_use_ams_image": "ams_icon",
|
||||
"printer_ext_image": ["ext_image_o1s"],
|
||||
"printer_ext_image": [
|
||||
"ext_image_o1s"
|
||||
],
|
||||
"use_ams_type": "generic",
|
||||
"printer_arch": "core_xy",
|
||||
"printer_series": "series_o",
|
||||
|
|
@ -78,4 +98,4 @@
|
|||
"enable_set_nozzle_info": false,
|
||||
"support_safety_options": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,76 +1,82 @@
|
|||
{
|
||||
"whitelist": [
|
||||
],
|
||||
"blacklist": [
|
||||
{
|
||||
"type": "TPU",
|
||||
"action": "prohibition",
|
||||
"slot": "ams",
|
||||
"description": "TPU is not supported by AMS."
|
||||
},
|
||||
{
|
||||
"vendor": "Bambu Lab",
|
||||
"type": "PET-CF",
|
||||
"action": "prohibition",
|
||||
"slot": "ams",
|
||||
"description": "AMS does not support 'Bambu Lab PET-CF'."
|
||||
},
|
||||
{
|
||||
"type": "TPU",
|
||||
"action": "warning",
|
||||
"description": "Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer."
|
||||
},
|
||||
{
|
||||
"type": "TPU-AMS",
|
||||
"action": "warning",
|
||||
"description": "Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer."
|
||||
},
|
||||
{
|
||||
"type": "PVA",
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "Damp PVA will become flexible and get stuck inside AMS, please take care to dry it before use."
|
||||
},
|
||||
{
|
||||
"type": "PVA",
|
||||
"action": "warning",
|
||||
"slot": "ext",
|
||||
"description": "Damp PVA is flexible and may get stuck in extruder. Dry it before use."
|
||||
},
|
||||
{
|
||||
"type": "PPS-CF",
|
||||
"model_id":["O1S"],
|
||||
"action": "warning",
|
||||
"description": "PPS-CF is brittle and could break in bended PTFE tube above Toolhead.",
|
||||
"wiki": "https://e.bambulab.com/t?c=UC64kdlpHxN3Mb15"
|
||||
},
|
||||
{
|
||||
"type": "PPA-CF",
|
||||
"model_id":["O1S"],
|
||||
"action": "warning",
|
||||
"description": "PPA-CF is brittle and could break in bended PTFE tube above Toolhead.",
|
||||
"wiki": "https://e.bambulab.com/t?c=UC64kdlpHxN3Mb15"
|
||||
},
|
||||
{
|
||||
"type_suffix": "CF",
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "CF/GF filaments are hard and brittle, it's easy to break or get stuck in AMS, please use with caution."
|
||||
},
|
||||
{
|
||||
"type_suffix": "GF",
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "CF/GF filaments are hard and brittle, it's easy to break or get stuck in AMS, please use with caution."
|
||||
},
|
||||
{
|
||||
"vendor": "Bambu Lab",
|
||||
"type": "PLA",
|
||||
"name": "PLA Glow",
|
||||
"model_id":["N1","N2S"],
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "The rough surface of PLA Glow can accelerate wear on the AMS system, particularly on the internal components of the AMS Lite."
|
||||
}
|
||||
]
|
||||
"whitelist": [],
|
||||
"blacklist": [
|
||||
{
|
||||
"type": "TPU",
|
||||
"action": "prohibition",
|
||||
"slot": "ams",
|
||||
"description": "TPU is not supported by AMS."
|
||||
},
|
||||
{
|
||||
"vendor": "Bambu Lab",
|
||||
"type": "PET-CF",
|
||||
"action": "prohibition",
|
||||
"slot": "ams",
|
||||
"description": "AMS does not support 'Bambu Lab PET-CF'."
|
||||
},
|
||||
{
|
||||
"type": "TPU",
|
||||
"action": "warning",
|
||||
"description": "Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer."
|
||||
},
|
||||
{
|
||||
"type": "TPU-AMS",
|
||||
"action": "warning",
|
||||
"description": "Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer."
|
||||
},
|
||||
{
|
||||
"type": "PVA",
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "Damp PVA will become flexible and get stuck inside AMS, please take care to dry it before use."
|
||||
},
|
||||
{
|
||||
"type": "PVA",
|
||||
"action": "warning",
|
||||
"slot": "ext",
|
||||
"description": "Damp PVA is flexible and may get stuck in extruder. Dry it before use."
|
||||
},
|
||||
{
|
||||
"type": "PPS-CF",
|
||||
"model_id": [
|
||||
"O1S"
|
||||
],
|
||||
"action": "warning",
|
||||
"description": "PPS-CF is brittle and could break in bended PTFE tube above Toolhead.",
|
||||
"wiki": "https://e.bambulab.com/t?c=UC64kdlpHxN3Mb15"
|
||||
},
|
||||
{
|
||||
"type": "PPA-CF",
|
||||
"model_id": [
|
||||
"O1S"
|
||||
],
|
||||
"action": "warning",
|
||||
"description": "PPA-CF is brittle and could break in bended PTFE tube above Toolhead.",
|
||||
"wiki": "https://e.bambulab.com/t?c=UC64kdlpHxN3Mb15"
|
||||
},
|
||||
{
|
||||
"type_suffix": "CF",
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "CF/GF filaments are hard and brittle, it's easy to break or get stuck in AMS, please use with caution."
|
||||
},
|
||||
{
|
||||
"type_suffix": "GF",
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "CF/GF filaments are hard and brittle, it's easy to break or get stuck in AMS, please use with caution."
|
||||
},
|
||||
{
|
||||
"vendor": "Bambu Lab",
|
||||
"type": "PLA",
|
||||
"name": "PLA Glow",
|
||||
"model_id": [
|
||||
"N1",
|
||||
"N2S"
|
||||
],
|
||||
"action": "warning",
|
||||
"slot": "ams",
|
||||
"description": "The rough surface of PLA Glow can accelerate wear on the AMS system, particularly on the internal components of the AMS Lite."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,194 +1,194 @@
|
|||
{
|
||||
"name": "Afinia",
|
||||
"version": "02.03.02.60",
|
||||
"force_update": "0",
|
||||
"description": "Afinia configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Afinia H+1(HS)",
|
||||
"sub_path": "machine/Afinia H+1(HS).json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_common",
|
||||
"sub_path": "process/fdm_process_afinia_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.18_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.18_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.24_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.24_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.30_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.30_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.36_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.36_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.42_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.42_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_HS_common",
|
||||
"sub_path": "process/fdm_process_afinia_HS_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.12mm Fine @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.16mm Optimal @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.20mm Standard @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.24mm Draft @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Extra Draft @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.28mm Extra Draft @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.18_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.18_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.24_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.24_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.30_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.30_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.36_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.36_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.42_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.42_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "0.18mm Fine @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Standard @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Standard @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Strength @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.36mm Draft @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
{
|
||||
"name": "fdm_filament_common",
|
||||
"sub_path": "filament/fdm_filament_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_abs",
|
||||
"sub_path": "filament/fdm_filament_abs.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pla",
|
||||
"sub_path": "filament/fdm_filament_pla.json"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_afinia_common",
|
||||
"sub_path": "machine/fdm_afinia_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia H+1(HS) 0.4 nozzle",
|
||||
"sub_path": "machine/Afinia H+1(HS) 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "machine/Afinia H+1(HS) 0.6 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
"name": "Afinia",
|
||||
"version": "02.03.02.60",
|
||||
"force_update": "0",
|
||||
"description": "Afinia configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Afinia H+1(HS)",
|
||||
"sub_path": "machine/Afinia H+1(HS).json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_common",
|
||||
"sub_path": "process/fdm_process_afinia_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.18_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.18_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.24_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.24_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.30_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.30_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.36_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.36_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.42_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_afinia_0.42_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_HS_common",
|
||||
"sub_path": "process/fdm_process_afinia_HS_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.12mm Fine @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.16mm Optimal @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.20mm Standard @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.24mm Draft @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Extra Draft @Afinia H+1(HS)",
|
||||
"sub_path": "process/0.28mm Extra Draft @Afinia H+1(HS).json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.18_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.18_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.24_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.24_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.30_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.30_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.36_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.36_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_afinia_0.42_nozzle_0.6_HS",
|
||||
"sub_path": "process/fdm_process_afinia_0.42_nozzle_0.6_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "0.18mm Fine @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Standard @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Standard @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Strength @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.36mm Draft @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
{
|
||||
"name": "fdm_filament_common",
|
||||
"sub_path": "filament/fdm_filament_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_abs",
|
||||
"sub_path": "filament/fdm_filament_abs.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pla",
|
||||
"sub_path": "filament/fdm_filament_pla.json"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_afinia_common",
|
||||
"sub_path": "machine/fdm_afinia_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia H+1(HS) 0.4 nozzle",
|
||||
"sub_path": "machine/Afinia H+1(HS) 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia H+1(HS) 0.6 nozzle",
|
||||
"sub_path": "machine/Afinia H+1(HS) 0.6 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,37 +1,37 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "GFSB00",
|
||||
"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"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "GFSB00",
|
||||
"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,37 +1,37 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00_01",
|
||||
"setting_id": "GFSB00",
|
||||
"name": "Afinia ABS+@HS",
|
||||
"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 H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00_01",
|
||||
"setting_id": "GFSB00",
|
||||
"name": "Afinia ABS+@HS",
|
||||
"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 H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,31 +1,31 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "GFSB00",
|
||||
"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"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "GFSB00",
|
||||
"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,31 +1,31 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00_01",
|
||||
"setting_id": "GFSB00",
|
||||
"name": "Afinia ABS@HS",
|
||||
"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 H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00_01",
|
||||
"setting_id": "GFSB00",
|
||||
"name": "Afinia ABS@HS",
|
||||
"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 H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFA00",
|
||||
"setting_id": "GFSA00",
|
||||
"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"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFA00",
|
||||
"setting_id": "GFSA00",
|
||||
"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,34 +1,34 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFA00_01",
|
||||
"setting_id": "GFSA00",
|
||||
"name": "Afinia PLA@HS",
|
||||
"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 H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFA00_01",
|
||||
"setting_id": "GFSA00",
|
||||
"name": "Afinia PLA@HS",
|
||||
"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 H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Afinia TPU",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"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"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Afinia TPU",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"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,27 +1,27 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Afinia TPU@HS",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "GFU01_01",
|
||||
"instantiation": "true",
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.22"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"filament_cost": [
|
||||
"41.99"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Afinia TPU@HS",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "GFU01_01",
|
||||
"instantiation": "true",
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.22"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"filament_cost": [
|
||||
"41.99"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H+1(HS) 0.4 nozzle",
|
||||
"Afinia H+1(HS) 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,37 +1,37 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "GFSB00",
|
||||
"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"
|
||||
]
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "GFSB00",
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue