mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 10:17:55 -06:00
Merge branch 'main' into dev/bbs-measure
This commit is contained in:
commit
8ce992b640
148 changed files with 3634 additions and 977 deletions
36
.github/workflows/build_all.yml
vendored
36
.github/workflows/build_all.yml
vendored
|
@ -60,21 +60,21 @@ jobs:
|
|||
arch: ${{ matrix.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
secrets: inherit
|
||||
# flatpak:
|
||||
# name: "Flatpak"
|
||||
# runs-on: ubuntu-latest
|
||||
# container:
|
||||
# image: bilelmoussaoui/flatpak-github-actions:gnome-45
|
||||
# options: --privileged
|
||||
# steps:
|
||||
# # maybe i'm too dumb and fucked up to do CI. OH WELL :D -ppd
|
||||
# - name: "Remove unneeded stuff to free disk space"
|
||||
# run:
|
||||
# sudo rm -rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY"
|
||||
# - uses: actions/checkout@v4
|
||||
# - uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||||
# with:
|
||||
# bundle: orcaslicer.flatpak
|
||||
# manifest-path: flatpak/io.github.softfever.OrcaSlicer.yml
|
||||
# cache-key: flatpak-builder-${{ github.sha }}
|
||||
# cache: false
|
||||
flatpak:
|
||||
name: "Flatpak"
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: bilelmoussaoui/flatpak-github-actions:gnome-46
|
||||
options: --privileged
|
||||
steps:
|
||||
# maybe i'm too dumb and fucked up to do CI. OH WELL :D -ppd
|
||||
- name: "Remove unneeded stuff to free disk space"
|
||||
run:
|
||||
sudo rm -rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY"
|
||||
- uses: actions/checkout@v4
|
||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||||
with:
|
||||
bundle: orcaslicer.flatpak
|
||||
manifest-path: flatpak/io.github.softfever.OrcaSlicer.yml
|
||||
cache-key: flatpak-builder-${{ github.sha }}
|
||||
cache: false
|
||||
|
|
|
@ -10,7 +10,7 @@ Join our Discord community here:<br>
|
|||
|
||||
<h3>🚨🚨🚨Important Security Alert🚨🚨🚨</h3>
|
||||
|
||||
Please be aware that "orcaslicer.net" is NOT an official website for OrcaSlicer and may be potentially malicious. This site appears to use AI-generated content, lacking genuine context, and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
Please be aware that "**orcaslicer.net**" or "**orcaslicer.info**" are NOT an official website for OrcaSlicer and may be potentially malicious. This site appears to use AI-generated content, lacking genuine context, and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
|
||||
The only official platforms for OrcaSlicer are our GitHub project page and the <a href="https://discord.gg/P4VE9UY9gJ">official Discord channel</a> .
|
||||
|
||||
|
@ -134,11 +134,6 @@ Thank you! :)
|
|||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://phrozen3d.com/">
|
||||
<img src="SoftFever_doc\sponsor_logos\Phrozen_Logo圓_.png" alt="Phrozen Technology" width="96" height="">
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://bigtree-tech.com/">
|
||||
<img src="SoftFever_doc\sponsor_logos\BigTreeTech.png" alt="BIGTREE TECH" width="96" height="">
|
||||
</a>
|
||||
|
|
8
deps/CMakeLists.txt
vendored
8
deps/CMakeLists.txt
vendored
|
@ -30,6 +30,10 @@ if (APPLE)
|
|||
|
||||
endif ()
|
||||
|
||||
if(POLICY CMP0135) # DOWNLOAD_EXTRACT_TIMESTAMP
|
||||
cmake_policy(SET CMP0135 NEW)
|
||||
endif()
|
||||
|
||||
project(OrcaSlicer-deps)
|
||||
|
||||
include(ExternalProject)
|
||||
|
@ -56,10 +60,6 @@ endif ()
|
|||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
option(DEP_WX_GTK3 "Build wxWidgets against GTK3" OFF)
|
||||
else()
|
||||
if(POLICY CMP0135) # DOWNLOAD_EXTRACT_TIMESTAMP
|
||||
cmake_policy(SET CMP0135 NEW)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(IS_CROSS_COMPILE FALSE)
|
||||
|
|
|
@ -6,10 +6,4 @@ grep -q org.freedesktop.Platform.GL.nvidia /.flatpak-info && export WEBKIT_DISAB
|
|||
# Work-around https://github.com/bambulab/BambuStudio/issues/3440
|
||||
export LC_ALL=C.UTF-8
|
||||
|
||||
if [ $BAMBU_STUDIO_DARK_THEME == true ]; then
|
||||
export GTK_THEME='Adwaita:dark'
|
||||
# echo "Message: $(date +%T): INFO: using dark theme variant"
|
||||
fi
|
||||
|
||||
exec /app/bin/orca-slicer "$@" &
|
||||
$(/app/bin/set-dark-theme-variant.py) &
|
||||
exec /app/bin/orca-slicer "$@"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app-id: io.github.softfever.OrcaSlicer
|
||||
runtime: org.gnome.Platform
|
||||
runtime-version: "45"
|
||||
runtime-version: "46"
|
||||
sdk: org.gnome.Sdk
|
||||
command: entrypoint
|
||||
separate-locales: true
|
||||
|
@ -14,11 +14,11 @@ finish-args:
|
|||
- --filesystem=xdg-run/gvfs
|
||||
- --filesystem=/run/media
|
||||
- --filesystem=/media
|
||||
- --filesystem=/run/spnav.sock:ro
|
||||
# Allow OrcaSlicer to talk to other instances
|
||||
- --talk-name=io.github.softfever.OrcaSlicer.InstanceCheck.*
|
||||
- --system-talk-name=org.freedesktop.UDisks2
|
||||
# set dark theme
|
||||
- --env=BAMBU_STUDIO_DARK_THEME=false
|
||||
- --env=SPNAV_SOCKET=/run/spnav.sock
|
||||
|
||||
modules:
|
||||
|
||||
|
@ -36,47 +36,6 @@ modules:
|
|||
url: https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.22.8.tar.xz
|
||||
sha256: e305b9f07f52743ca481da0a4e0c76c35efd60adaf1b0694eb3bb021e2137e39
|
||||
|
||||
# xprop, xlib is needed to manipulate the X11 window and set _GTK_THEME_VARIANT dark on X11
|
||||
# and paint the window dark when PRUSA_SLICER_DARK_THEME is true
|
||||
# see: entrypoint & set-dark-theme-variant.py (originated from spotify client flatpak)
|
||||
- name: xprop
|
||||
sources:
|
||||
- type: archive
|
||||
url: http://mirrors.ircam.fr/pub/x.org/individual/app/xprop-1.2.5.tar.gz
|
||||
sha256: b7bf6b6be6cf23e7966a153fc84d5901c14f01ee952fbd9d930aa48e2385d670
|
||||
- name: python-flit_core
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/c4/e6/c1ac50fe3eebb38a155155711e6e864e254ce4b6e17fe2429b4c4d5b9e80/flit_core-3.9.0.tar.gz
|
||||
sha256: 72ad266176c4a3fcfab5f2930d76896059851240570ce9a98733b658cb786eba
|
||||
- name: python-packaging
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz
|
||||
sha256: 026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002
|
||||
- name: python-setuptools_scm
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/57/38/930b1241372a9f266a7df2b184fb9d4f497c2cef2e016b014f82f541fe7c/setuptools_scm-6.0.1.tar.gz
|
||||
sha256: d1925a69cb07e9b29416a275b9fadb009a23c148ace905b2fb220649a6c18e92
|
||||
- name: python-xlib
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/86/f5/8c0653e5bb54e0cbdfe27bf32d41f27bc4e12faa8742778c17f2a71be2c0/python-xlib-0.33.tar.gz
|
||||
sha256: 55af7906a2c75ce6cb280a584776080602444f75815a7aff4d287bb2d7018b32
|
||||
|
||||
# For libOSMesa
|
||||
- name: mesa
|
||||
buildsystem: meson
|
||||
|
@ -122,6 +81,12 @@ modules:
|
|||
cleanup:
|
||||
- /
|
||||
|
||||
- name: libspnav
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://github.com/FreeSpacenav/libspnav/releases/download/v1.1/libspnav-1.1.tar.gz
|
||||
sha256: 04b297f68a10db4fa40edf68d7f823ba7b9d0442f2b665181889abe2cea42759
|
||||
|
||||
- name: orca_wxwidgets
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
|
@ -162,6 +127,8 @@ modules:
|
|||
url: https://github.com/SoftFever/Orca-deps-wxWidgets
|
||||
branch: master
|
||||
path: ../
|
||||
- type: patch
|
||||
path: patches/0001-Enable-using-a-dark-theme-when-Gnome-dark-style-is-s.patch
|
||||
cleanup:
|
||||
- "*.la"
|
||||
- "*.a"
|
||||
|
@ -323,7 +290,6 @@ modules:
|
|||
install -Dm644 ${FLATPAK_ID}.metainfo.xml /app/share/metainfo/${FLATPAK_ID}.metainfo.xml
|
||||
mv /app/share/applications/OrcaSlicer.desktop /app/share/applications/${FLATPAK_ID}.desktop
|
||||
desktop-file-edit --set-key=Exec --set-value="entrypoint %U" /app/share/applications/${FLATPAK_ID}.desktop
|
||||
install -Dm755 set-dark-theme-variant.py /app/bin
|
||||
install -Dm755 entrypoint /app/bin
|
||||
install -Dm755 umount /app/bin
|
||||
|
||||
|
@ -343,15 +309,7 @@ modules:
|
|||
- type: file
|
||||
path: io.github.softfever.OrcaSlicer.metainfo.xml
|
||||
|
||||
# script to set dark theme variant
|
||||
- type: file
|
||||
path: set-dark-theme-variant.py
|
||||
|
||||
# start-up script
|
||||
# README: workaround for the following issues, also enables dark theme variant:
|
||||
# SEE: https://github.com/flathub/com.bambulab.BambuStudio/issues/27
|
||||
# SEE: https://github.com/flathub/com.bambulab.BambuStudio/issues/3
|
||||
# SEE: https://github.com/prusa3d/PrusaSlicer/issues/2365
|
||||
- type: file
|
||||
path: entrypoint
|
||||
|
||||
|
|
|
@ -0,0 +1,158 @@
|
|||
From 221be0af1a0b5bcf05c59b3403f969643b42dbaf Mon Sep 17 00:00:00 2001
|
||||
From: Paul Cornett <paulcor@users.noreply.github.com>
|
||||
Date: Sat, 30 Sep 2023 16:42:58 -0700
|
||||
Subject: [PATCH] Enable using a dark theme when Gnome "dark style" is set
|
||||
|
||||
The dark style setting does not cause a dark theme to be used
|
||||
automatically, so request it explicitly.
|
||||
|
||||
Co-authored-by: Colin Kinloch
|
||||
---
|
||||
src/gtk/settings.cpp | 112 ++++++++++++++++++++++++++++++++++++++++++-
|
||||
1 file changed, 111 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/gtk/settings.cpp b/src/gtk/settings.cpp
|
||||
index 304724773711..74898d9bb953 100644
|
||||
--- a/src/gtk/settings.cpp
|
||||
+++ b/src/gtk/settings.cpp
|
||||
@@ -183,6 +183,64 @@ static void notify_gtk_font_name(GObject*, GParamSpec*, void*)
|
||||
}
|
||||
}
|
||||
|
||||
+static bool UpdatePreferDark(GVariant* value)
|
||||
+{
|
||||
+ // 0: No preference, 1: Prefer dark appearance, 2: Prefer light appearance
|
||||
+ gboolean preferDark = g_variant_get_uint32(value) == 1;
|
||||
+
|
||||
+ GtkSettings* settings = gtk_settings_get_default();
|
||||
+ char* themeName;
|
||||
+ gboolean preferDarkPrev;
|
||||
+ g_object_get(settings,
|
||||
+ "gtk-theme-name", &themeName,
|
||||
+ "gtk-application-prefer-dark-theme", &preferDarkPrev, nullptr);
|
||||
+
|
||||
+ // We don't need to enable prefer-dark if the theme is already dark
|
||||
+ if (strstr(themeName, "-dark") || strstr(themeName, "-Dark"))
|
||||
+ preferDark = false;
|
||||
+ g_free(themeName);
|
||||
+
|
||||
+ const bool changed = preferDark != preferDarkPrev;
|
||||
+ if (changed)
|
||||
+ {
|
||||
+ g_object_set(settings,
|
||||
+ "gtk-application-prefer-dark-theme", preferDark, nullptr);
|
||||
+ }
|
||||
+ return changed;
|
||||
+}
|
||||
+
|
||||
+// "g-signal" from GDBusProxy
|
||||
+extern "C" {
|
||||
+static void
|
||||
+proxy_g_signal(GDBusProxy*, const char*, const char* signal_name, GVariant* parameters, void*)
|
||||
+{
|
||||
+ if (strcmp(signal_name, "SettingChanged") != 0)
|
||||
+ return;
|
||||
+
|
||||
+ const char* nameSpace;
|
||||
+ const char* key;
|
||||
+ GVariant* value;
|
||||
+ g_variant_get(parameters, "(&s&sv)", &nameSpace, &key, &value);
|
||||
+ if (strcmp(nameSpace, "org.freedesktop.appearance") == 0 &&
|
||||
+ strcmp(key, "color-scheme") == 0)
|
||||
+ {
|
||||
+ if (UpdatePreferDark(value))
|
||||
+ {
|
||||
+ for (int i = wxSYS_COLOUR_MAX; i--;)
|
||||
+ gs_systemColorCache[i].UnRef();
|
||||
+
|
||||
+ for (auto* win: wxTopLevelWindows)
|
||||
+ {
|
||||
+ wxSysColourChangedEvent event;
|
||||
+ event.SetEventObject(win);
|
||||
+ win->HandleWindowEvent(event);
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ g_variant_unref(value);
|
||||
+}
|
||||
+}
|
||||
+
|
||||
// Some notes on using GtkStyleContext. Style information from a context
|
||||
// attached to a non-visible GtkWidget is not accurate. The context has an
|
||||
// internal visibility state, controlled by the widget, which it presumably
|
||||
@@ -1124,12 +1182,62 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
|
||||
class wxSystemSettingsModule: public wxModule
|
||||
{
|
||||
public:
|
||||
- virtual bool OnInit() wxOVERRIDE { return true; }
|
||||
+ virtual bool OnInit() wxOVERRIDE;
|
||||
virtual void OnExit() wxOVERRIDE;
|
||||
+
|
||||
+#ifdef __WXGTK3__
|
||||
+ GDBusProxy* m_proxy;
|
||||
+#endif
|
||||
wxDECLARE_DYNAMIC_CLASS(wxSystemSettingsModule);
|
||||
};
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule, wxModule);
|
||||
|
||||
+bool wxSystemSettingsModule::OnInit()
|
||||
+{
|
||||
+#ifdef __WXGTK3__
|
||||
+ // Gnome has gone to a dark style setting rather than a selectable dark
|
||||
+ // theme, available via GSettings as the 'color-scheme' key under the
|
||||
+ // 'org.gnome.desktop.interface' schema. It's also available via a "portal"
|
||||
+ // (https://docs.flatpak.org/en/latest/portal-api-reference.html), which
|
||||
+ // has the advantage of allowing the setting to be accessed from within a
|
||||
+ // virtualized environment such as Flatpak. Since the setting does not
|
||||
+ // change the theme, we propagate it to the GtkSettings
|
||||
+ // 'gtk-application-prefer-dark-theme' property to get a dark theme.
|
||||
+
|
||||
+ m_proxy = nullptr;
|
||||
+
|
||||
+ // GTK_THEME environment variable overrides other settings
|
||||
+ if (getenv("GTK_THEME") == nullptr)
|
||||
+ {
|
||||
+ m_proxy = g_dbus_proxy_new_for_bus_sync(
|
||||
+ G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, nullptr,
|
||||
+ "org.freedesktop.portal.Desktop",
|
||||
+ "/org/freedesktop/portal/desktop",
|
||||
+ "org.freedesktop.portal.Settings",
|
||||
+ nullptr, nullptr);
|
||||
+ }
|
||||
+ if (m_proxy)
|
||||
+ {
|
||||
+ g_signal_connect(m_proxy, "g-signal", G_CALLBACK(proxy_g_signal), nullptr);
|
||||
+
|
||||
+ GVariant* ret = g_dbus_proxy_call_sync(m_proxy, "Read",
|
||||
+ g_variant_new("(ss)", "org.freedesktop.appearance", "color-scheme"),
|
||||
+ G_DBUS_CALL_FLAGS_NONE, -1, nullptr, nullptr);
|
||||
+ if (ret)
|
||||
+ {
|
||||
+ GVariant* child;
|
||||
+ g_variant_get(ret, "(v)", &child);
|
||||
+ GVariant* value = g_variant_get_variant(child);
|
||||
+ UpdatePreferDark(value);
|
||||
+ g_variant_unref(value);
|
||||
+ g_variant_unref(child);
|
||||
+ g_variant_unref(ret);
|
||||
+ }
|
||||
+ }
|
||||
+#endif // __WXGTK3__
|
||||
+ return true;
|
||||
+}
|
||||
+
|
||||
void wxSystemSettingsModule::OnExit()
|
||||
{
|
||||
#ifdef __WXGTK3__
|
||||
@@ -1141,6 +1249,8 @@ void wxSystemSettingsModule::OnExit()
|
||||
g_signal_handlers_disconnect_by_func(settings,
|
||||
(void*)notify_gtk_font_name, NULL);
|
||||
}
|
||||
+ if (m_proxy)
|
||||
+ g_object_unref(m_proxy);
|
||||
#endif
|
||||
if (gs_tlw_parent)
|
||||
{
|
||||
--
|
||||
2.46.2
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import Xlib
|
||||
import Xlib.display
|
||||
import time
|
||||
import subprocess
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
disp = Xlib.display.Display()
|
||||
root = disp.screen().root
|
||||
|
||||
NET_CLIENT_LIST = disp.intern_atom('_NET_CLIENT_LIST')
|
||||
|
||||
|
||||
def set_theme_variant_by_window_id(id, variant):
|
||||
# Use subprocess to call
|
||||
# xprop and set the variant from id.
|
||||
try:
|
||||
s = subprocess.call(['xprop', '-f', '_GTK_THEME_VARIANT', '8u', '-set', '_GTK_THEME_VARIANT', variant, '-id', str(id)],
|
||||
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||
if s == 0:
|
||||
return True
|
||||
return False
|
||||
except Exception as ex:
|
||||
return False
|
||||
|
||||
|
||||
def set_theme_variant_from_win_id_collection(win_id_collection, variant):
|
||||
# Loop though all of the collected
|
||||
# window ids and set theme variant
|
||||
for win_id in win_id_collection:
|
||||
set_theme_variant_by_window_id(win_id, variant)
|
||||
|
||||
|
||||
def collection_win_id_from_wm_class_name(win_class_name):
|
||||
|
||||
collect = []
|
||||
|
||||
# Loop though all of the windows
|
||||
# and collect id's those that match
|
||||
# win_class: prusa-slicer
|
||||
for win_id in root.get_full_property(NET_CLIENT_LIST, Xlib.X.AnyPropertyType).value:
|
||||
try:
|
||||
win = disp.create_resource_object('window', win_id)
|
||||
if not win.get_wm_transient_for():
|
||||
win_class = win.get_wm_class()
|
||||
if win_id and win_class_name in win_class:
|
||||
collect.append(
|
||||
win_id) if win_id not in collect else collect
|
||||
except Xlib.error.BadWindow:
|
||||
pass
|
||||
|
||||
return collect
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
if os.environ.get('PRUSA_SLICER_DARK_THEME', 'false') != 'true':
|
||||
sys.exit(0)
|
||||
|
||||
# Listen for X Property Change events.
|
||||
root.change_attributes(event_mask=Xlib.X.PropertyChangeMask)
|
||||
# the class name of the slicer window
|
||||
win_class_name = 'prusa-slicer'
|
||||
# the variant to set
|
||||
variant = 'dark'
|
||||
|
||||
start = time.time()
|
||||
|
||||
while True:
|
||||
# collect all of the window ids
|
||||
collect = collection_win_id_from_wm_class_name(win_class_name)
|
||||
# give PrusaSlicer window 2 secs to
|
||||
# collect the wanted window ids
|
||||
# set the theme variant and exit
|
||||
if time.time() - start <= 2:
|
||||
# disp.next_event() blocks if no events are
|
||||
# queued. In combination with while True
|
||||
# it creates a very simple event loop.
|
||||
disp.next_event()
|
||||
set_theme_variant_from_win_id_collection(collect, variant)
|
||||
else:
|
||||
break
|
|
@ -8,7 +8,7 @@ msgstr ""
|
|||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
|
||||
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: cs_CZ\n"
|
||||
|
@ -16,7 +16,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
msgstr "Malování podpěr"
|
||||
|
@ -5999,6 +5999,7 @@ msgstr "Opravte je prosím na kartách parametrů"
|
|||
|
||||
msgid "The 3mf has following modified G-codes in filament or printer presets:"
|
||||
msgstr ""
|
||||
"3mf má následující úpravy G-kódu v předvolbách filamentu nebo tiskárny:"
|
||||
|
||||
msgid ""
|
||||
"Please confirm that these modified G-codes are safe to prevent any damage to "
|
||||
|
@ -6015,9 +6016,11 @@ msgid ""
|
|||
"Please confirm that the G-codes within these presets are safe to prevent any "
|
||||
"damage to the machine!"
|
||||
msgstr ""
|
||||
"Potvrďte prosím, že G-kód v těchto předvolbách je bezpečný, aby nedošlo k "
|
||||
"poškození stroje!"
|
||||
|
||||
msgid "Customized Preset"
|
||||
msgstr ""
|
||||
msgstr "Přizpůsobená Předvolba"
|
||||
|
||||
msgid "Name of components inside step file is not UTF8 format!"
|
||||
msgstr "Názvy součástí v souboru kroku nejsou ve formátu UTF8!"
|
||||
|
@ -7524,8 +7527,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Při nahrávání časosběru bez nástrojové hlavy se doporučuje přidat "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
|
@ -11203,10 +11206,10 @@ msgstr "Maximální otáčky ventilátoru ve vrstvě"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Otáčky ventilátoru se lineárně zvýší z nuly ve vrstvě "
|
||||
"\"close_fan_first_layers\" na maximum ve vrstvě \"full_fan_speed_layer\". "
|
||||
|
@ -12681,18 +12684,20 @@ msgid "Enabled"
|
|||
msgstr "Povoleno"
|
||||
|
||||
msgid "Skirt type"
|
||||
msgstr ""
|
||||
msgstr "Typ obrysu"
|
||||
|
||||
msgid ""
|
||||
"Combined - single skirt for all objects, Per object - individual object "
|
||||
"skirt."
|
||||
msgstr ""
|
||||
"Kombinovaný - jeden obrys pro všechny objekty, Individuální - každý objekt "
|
||||
"má vlastní obrys."
|
||||
|
||||
msgid "Combined"
|
||||
msgstr ""
|
||||
msgstr "Kombinovaný "
|
||||
|
||||
msgid "Per object"
|
||||
msgstr ""
|
||||
msgstr "Individuální "
|
||||
|
||||
msgid "Skirt loops"
|
||||
msgstr "Obrysové smyčky"
|
||||
|
@ -13315,8 +13320,8 @@ msgstr "Aktivovat řízení teploty"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
@ -15198,8 +15203,8 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
@ -16093,8 +16098,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Plochou na podložku\n"
|
||||
"Věděli jste, že můžete rychle nastavit orientaci modelu tak, aby jedna z "
|
||||
"jeho stěn spočívala na tiskovém podloží? Vyberte funkci \"Plochou na podložku"
|
||||
"\" nebo stiskněte klávesu <b>F</b>."
|
||||
"jeho stěn spočívala na tiskovém podloží? Vyberte funkci \"Plochou na "
|
||||
"podložku\" nebo stiskněte klávesu <b>F</b>."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Object List]
|
||||
msgid ""
|
||||
|
@ -16491,12 +16496,12 @@ msgstr ""
|
|||
#~ "Najdete podrobnosti o kalibraci průtoku dynamiky v naší wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Obvykle kalibrace není potřebná. Při spuštění tisku s jednobarevným/"
|
||||
#~ "materiálovým filamentem a zaškrtnutou volbou \"kalibrace průtoku dynamiky"
|
||||
#~ "\" v menu spuštění tisku, tiskárna bude postupovat podle staré metody a "
|
||||
#~ "zkalibruje filament před tiskem. Při spuštění tisku s vícebarevným/"
|
||||
#~ "materiálovým filamentem bude tiskárna při každé změně filamentu používat "
|
||||
#~ "výchozí kompenzační parametr pro filament, což má většinou dobrý "
|
||||
#~ "výsledek.\n"
|
||||
#~ "materiálovým filamentem a zaškrtnutou volbou \"kalibrace průtoku "
|
||||
#~ "dynamiky\" v menu spuštění tisku, tiskárna bude postupovat podle staré "
|
||||
#~ "metody a zkalibruje filament před tiskem. Při spuštění tisku s "
|
||||
#~ "vícebarevným/materiálovým filamentem bude tiskárna při každé změně "
|
||||
#~ "filamentu používat výchozí kompenzační parametr pro filament, což má "
|
||||
#~ "většinou dobrý výsledek.\n"
|
||||
#~ "\n"
|
||||
#~ "Všimněte si, že existují některé případy, které mohou způsobit, že "
|
||||
#~ "výsledek kalibrace nebude spolehlivý: použití texturované podložky pro "
|
||||
|
|
|
@ -5964,7 +5964,7 @@ msgid "Edit current plate name"
|
|||
msgstr "Modifier le nom du plateau actuel"
|
||||
|
||||
msgid "Move plate to the front"
|
||||
msgstr ""
|
||||
msgstr "Déplacer le plateau vers l’avant"
|
||||
|
||||
msgid "Customize current plate"
|
||||
msgstr "Personnaliser le plateau actuel"
|
||||
|
@ -7828,8 +7828,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
||||
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
||||
|
@ -7996,9 +7996,9 @@ msgid ""
|
|||
"Bed temperature when cool plate is installed. Value 0 means the filament "
|
||||
"does not support to print on the Cool Plate"
|
||||
msgstr ""
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate"
|
||||
"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être "
|
||||
"imprimé sur le plateau froid."
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool "
|
||||
"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas "
|
||||
"être imprimé sur le plateau froid."
|
||||
|
||||
msgid "Textured Cool plate"
|
||||
msgstr "Plaque Cool plate texturée"
|
||||
|
@ -10454,6 +10454,11 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Nombre de mm de dépassement nécessaire pour que l’inversion soit considérée "
|
||||
"comme utile. Il peut s’agir d’un pourcentage de la largeur du périmètre.\n"
|
||||
"La valeur 0 active l’inversion toutes les couches paires.\n"
|
||||
"Lorsque la paroi en surplomb n’est pas activée, cette option est ignorée et "
|
||||
"l’inversion se fait sur toutes les couches paires."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Classique"
|
||||
|
@ -12064,10 +12069,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
|
||||
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
|
||||
|
@ -14005,8 +14010,8 @@ msgid ""
|
|||
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
|
||||
"close all holes in the model."
|
||||
msgstr ""
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
|
||||
"Fermer les trous » pour fermer tous les trous du modèle."
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez "
|
||||
"« Fermer les trous » pour fermer tous les trous du modèle."
|
||||
|
||||
msgid "Regular"
|
||||
msgstr "Standard"
|
||||
|
@ -14432,8 +14437,8 @@ msgstr "Activer le contrôle de la température"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
@ -14876,8 +14881,8 @@ msgid ""
|
|||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked"
|
||||
msgstr ""
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option « "
|
||||
"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option "
|
||||
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
|
||||
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
|
||||
"imprimantes. L’option par défaut est cochée"
|
||||
|
@ -16537,8 +16542,8 @@ msgstr ""
|
|||
"Voulez-vous le réécrire ?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
||||
|
@ -18112,8 +18117,8 @@ msgstr ""
|
|||
#~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-"
|
||||
#~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une "
|
||||
#~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce "
|
||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option « "
|
||||
#~ "surfaces supérieures à une paroi » est activée."
|
||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option "
|
||||
#~ "« surfaces supérieures à une paroi » est activée."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
|
@ -19000,8 +19005,8 @@ msgstr ""
|
|||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||
#~ "+inférieure)."
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides "
|
||||
#~ "supérieure+inférieure)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||
|
|
|
@ -289,7 +289,7 @@ msgid "Dowel"
|
|||
msgstr "Dowel"
|
||||
|
||||
msgid "Snap"
|
||||
msgstr "Snap"
|
||||
msgstr "スナップ"
|
||||
|
||||
msgid "Prism"
|
||||
msgstr "プリズム"
|
||||
|
@ -374,7 +374,7 @@ msgid "Change cut mode"
|
|||
msgstr "カットモード変更"
|
||||
|
||||
msgid "Tolerance"
|
||||
msgstr "Tolerance"
|
||||
msgstr "公差"
|
||||
|
||||
msgid "Drag"
|
||||
msgstr "Drag"
|
||||
|
@ -383,13 +383,13 @@ msgid "Draw cut line"
|
|||
msgstr ""
|
||||
|
||||
msgid "Left click"
|
||||
msgstr "Left click"
|
||||
msgstr "左クリック"
|
||||
|
||||
msgid "Add connector"
|
||||
msgstr "Add connector"
|
||||
|
||||
msgid "Right click"
|
||||
msgstr "Right click"
|
||||
msgstr "右クリック"
|
||||
|
||||
msgid "Remove connector"
|
||||
msgstr "Remove connector"
|
||||
|
@ -468,13 +468,13 @@ msgid "Reset cutting plane and remove connectors"
|
|||
msgstr "カット面をリセットし、コネクターを削除"
|
||||
|
||||
msgid "Upper part"
|
||||
msgstr "Upper part"
|
||||
msgstr "上部パーツ"
|
||||
|
||||
msgid "Lower part"
|
||||
msgstr "Lower part"
|
||||
msgstr "下部パーツ"
|
||||
|
||||
msgid "Keep"
|
||||
msgstr "Keep"
|
||||
msgstr "残す"
|
||||
|
||||
msgid "Flip"
|
||||
msgstr "Flip"
|
||||
|
@ -1278,7 +1278,7 @@ msgid "Center of edge"
|
|||
msgstr "Center of edge"
|
||||
|
||||
msgid "Center of circle"
|
||||
msgstr "Center of circle"
|
||||
msgstr "円の中心"
|
||||
|
||||
msgid "ShiftLeft mouse button"
|
||||
msgstr ""
|
||||
|
@ -1466,7 +1466,7 @@ msgid "Choose one file (3mf):"
|
|||
msgstr "ファイルを選択 (3mf):"
|
||||
|
||||
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
|
||||
msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
|
||||
msgstr "1つ以上のファイルを選択してください (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
|
||||
|
||||
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):"
|
||||
msgstr "ファイルを選択 (3mf/step/stl/svg/obj/amf)"
|
||||
|
@ -1732,10 +1732,10 @@ msgid "Set as individual objects"
|
|||
msgstr "個別オブジェクトとして設定"
|
||||
|
||||
msgid "Fill bed with copies"
|
||||
msgstr "Fill bed with copies"
|
||||
msgstr "コピーでビルドプレートを埋める"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "選択したオブジェクトのコピーでビルドプレートの残りの領域を埋める"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "造形可能"
|
||||
|
@ -1744,7 +1744,7 @@ msgid "Fix model"
|
|||
msgstr "モデルを修復"
|
||||
|
||||
msgid "Export as one STL"
|
||||
msgstr "Export as one STL"
|
||||
msgstr "1つのSTLとしてエクスポート"
|
||||
|
||||
msgid "Export as STLs"
|
||||
msgstr "Export as STLs"
|
||||
|
@ -1916,10 +1916,10 @@ msgid "arrange current plate"
|
|||
msgstr "現在のプレートをレイアウト"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
msgstr "全て再読み込み"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgstr ""
|
||||
msgstr "全てディスクから再読み込み"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "自動回転"
|
||||
|
@ -2068,7 +2068,7 @@ msgstr ""
|
|||
"cut information first."
|
||||
|
||||
msgid "Delete all connectors"
|
||||
msgstr "Delete all connectors"
|
||||
msgstr "全てのコネクターを削除"
|
||||
|
||||
msgid "Deleting the last solid part is not allowed."
|
||||
msgstr "最後のソリッドパーツは削除できません。"
|
||||
|
@ -2205,13 +2205,13 @@ msgid "Mouse ear"
|
|||
msgstr ""
|
||||
|
||||
msgid "Outer brim only"
|
||||
msgstr "Outer brim only"
|
||||
msgstr "外側ブリムのみ"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Inner brim only"
|
||||
msgstr "内側ブリムのみ"
|
||||
|
||||
msgid "Outer and inner brim"
|
||||
msgstr "Outer and inner brim"
|
||||
msgstr "外側および内側ブリム"
|
||||
|
||||
msgid "No-brim"
|
||||
msgstr "ブリム無し"
|
||||
|
@ -2286,7 +2286,7 @@ msgid "Add Pause"
|
|||
msgstr "一時停止を追加"
|
||||
|
||||
msgid "Insert a pause command at the beginning of this layer."
|
||||
msgstr "Insert a pause command at the beginning of this layer."
|
||||
msgstr "このレイヤーの先頭にポーズコマンドを挿入"
|
||||
|
||||
msgid "Add Custom G-code"
|
||||
msgstr "カスタムG-codeを追加"
|
||||
|
@ -2298,13 +2298,13 @@ msgid "Add Custom Template"
|
|||
msgstr "カスタムテンプレートを追加"
|
||||
|
||||
msgid "Insert template custom G-code at the beginning of this layer."
|
||||
msgstr "Insert template custom G-code at the beginning of this layer."
|
||||
msgstr "このレイヤーの先頭にテンプレートカスタムGコードを挿入"
|
||||
|
||||
msgid "Filament "
|
||||
msgstr "フィラメント"
|
||||
|
||||
msgid "Change filament at the beginning of this layer."
|
||||
msgstr "Change filament at the beginning of this layer."
|
||||
msgstr "このレイヤーの先頭でフィラメントを交換"
|
||||
|
||||
msgid "Delete Pause"
|
||||
msgstr "Delete Pause"
|
||||
|
@ -2337,19 +2337,19 @@ msgid "code"
|
|||
msgstr "code"
|
||||
|
||||
msgid "Failed to connect to cloud service"
|
||||
msgstr "Failed to connect to cloud service"
|
||||
msgstr "クラウドサービスへの接続に失敗しました。"
|
||||
|
||||
msgid "Please click on the hyperlink above to view the cloud service status"
|
||||
msgstr "Please click on the hyperlink above to view the cloud service status"
|
||||
msgstr "クラウドサービスのステータスを確認するには、上記のハイパーリンクをクリックしてください。"
|
||||
|
||||
msgid "Failed to connect to the printer"
|
||||
msgstr "プリンターへ接続できませんでした"
|
||||
|
||||
msgid "Connection to printer failed"
|
||||
msgstr "Connection to printer failed"
|
||||
msgstr "プリンターへの接続に失敗しました。"
|
||||
|
||||
msgid "Please check the network connection of the printer and Orca."
|
||||
msgstr "Please check the network connection of the printer and Orca."
|
||||
msgstr "プリンターとOrcaのネットワーク接続を確認してください。"
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "接続中…"
|
||||
|
@ -8614,10 +8614,10 @@ msgid "Where to find your printer's IP and Access Code?"
|
|||
msgstr "どこでプリンターのIPアドレスとアクセスコードを確認できますか?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr "ステップ3: パケットロスとレイテンシを確認するために、IPアドレスに対してpingを実行します。"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
msgstr "テスト"
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP and Access Code Verified! You may close the window"
|
||||
|
@ -8887,13 +8887,13 @@ msgid "file open failed"
|
|||
msgstr "file open failed"
|
||||
|
||||
msgid "file create failed"
|
||||
msgstr "file create failed"
|
||||
msgstr "ファイルの作成に失敗しました"
|
||||
|
||||
msgid "file write failed"
|
||||
msgstr "file write failed"
|
||||
msgstr "ファイルの書き込みに失敗しました"
|
||||
|
||||
msgid "file read failed"
|
||||
msgstr "file read failed"
|
||||
msgstr "ファイルの読み込みに失敗しました"
|
||||
|
||||
msgid "file close failed"
|
||||
msgstr "file close failed"
|
||||
|
@ -9028,13 +9028,15 @@ msgid ""
|
|||
"Ooze prevention is only supported with the wipe tower when "
|
||||
"'single_extruder_multi_material' is off."
|
||||
msgstr ""
|
||||
"オーズ防止は、'single_extruder_multi_material'がオフの場合にのみ、 "
|
||||
"ワイプタワーと併用してサポートされます。"
|
||||
|
||||
msgid ""
|
||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
msgstr ""
|
||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
"プライムタワーは現在、Marlin、RepRap/Sprinter、RepRapFirmware、"
|
||||
"およびRepetierのGコード形式のみサポートされています。"
|
||||
|
||||
msgid "The prime tower is not supported in \"By object\" print."
|
||||
msgstr "オブジェクト順で造形する場合、プライムタワーを利用できません"
|
||||
|
@ -15371,10 +15373,10 @@ msgid "Could not connect to Prusa Connect"
|
|||
msgstr "Prusaコネクトに接続できませんでした"
|
||||
|
||||
msgid "Connection to Repetier works correctly."
|
||||
msgstr "Connection to Repetier is working correctly."
|
||||
msgstr "Repetierへの接続は正常に動作しています"
|
||||
|
||||
msgid "Could not connect to Repetier"
|
||||
msgstr "Could not connect to Repetier"
|
||||
msgstr "Repetierに接続できませんでした。"
|
||||
|
||||
msgid "Note: Repetier version at least 0.90.0 is required."
|
||||
msgstr "Note: Repetier version 0.90.0 or higher is required."
|
||||
|
@ -15437,8 +15439,8 @@ msgid ""
|
|||
"height, and results in slightly visible layer lines, but shorter printing "
|
||||
"time."
|
||||
msgstr ""
|
||||
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
|
||||
"height. This results in slightly visible layer lines but shorter print time."
|
||||
"0.2 mmノズルのデフォルトプロファイルと比較すると、レイヤー高さが大きくなっています。"
|
||||
"そのため、レイヤーラインがわずかに見えますが、印刷時間は短縮されます。"
|
||||
|
||||
msgid ""
|
||||
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
|
||||
|
|
|
@ -8,7 +8,7 @@ msgstr ""
|
|||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"PO-Revision-Date: 2024-10-26 10:01+0900\n"
|
||||
"PO-Revision-Date: 2024-11-06 21:10+0900\n"
|
||||
"Last-Translator: ElectricalBoy <15651807+ElectricalBoy@users.noreply.github."
|
||||
"com>\n"
|
||||
"Language-Team: crwusiz@gmail.com\n"
|
||||
|
@ -108,7 +108,7 @@ msgid "Support Generated"
|
|||
msgstr "지지대 생성됨"
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-면에 배치"
|
||||
msgstr "기즈모-면에 배치"
|
||||
|
||||
msgid "Lay on face"
|
||||
msgstr "바닥면 선택"
|
||||
|
@ -189,13 +189,13 @@ msgid "Move"
|
|||
msgstr "이동"
|
||||
|
||||
msgid "Gizmo-Move"
|
||||
msgstr "Gizmo-이동"
|
||||
msgstr "기즈모-이동"
|
||||
|
||||
msgid "Rotate"
|
||||
msgstr "회전"
|
||||
|
||||
msgid "Gizmo-Rotate"
|
||||
msgstr "Gizmo-회전"
|
||||
msgstr "기즈모-회전"
|
||||
|
||||
msgid "Optimize orientation"
|
||||
msgstr "방향 최적화"
|
||||
|
@ -207,7 +207,7 @@ msgid "Scale"
|
|||
msgstr "배율"
|
||||
|
||||
msgid "Gizmo-Scale"
|
||||
msgstr "Gizmo-배율"
|
||||
msgstr "기즈모-배율"
|
||||
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오."
|
||||
|
@ -280,7 +280,7 @@ msgid "Planar"
|
|||
msgstr "평면"
|
||||
|
||||
msgid "Dovetail"
|
||||
msgstr "도브테이"
|
||||
msgstr "도브테일"
|
||||
|
||||
msgid "Auto"
|
||||
msgstr "자동"
|
||||
|
@ -292,7 +292,7 @@ msgid "Plug"
|
|||
msgstr "플러그"
|
||||
|
||||
msgid "Dowel"
|
||||
msgstr "맞춤핀"
|
||||
msgstr "도웰"
|
||||
|
||||
msgid "Snap"
|
||||
msgstr "스냅"
|
||||
|
@ -301,7 +301,7 @@ msgid "Prism"
|
|||
msgstr "프리즘"
|
||||
|
||||
msgid "Frustum"
|
||||
msgstr "원뿔"
|
||||
msgstr "원뿔대"
|
||||
|
||||
msgid "Square"
|
||||
msgstr "사각형"
|
||||
|
@ -542,7 +542,7 @@ msgid "Delete connector"
|
|||
msgstr "커넥터 삭제"
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "메쉬 이름"
|
||||
msgstr "메시 이름"
|
||||
|
||||
msgid "Detail level"
|
||||
msgstr "세부 레벨"
|
||||
|
@ -1112,7 +1112,7 @@ msgid "Linear gradient"
|
|||
msgstr "선형 그래디언트"
|
||||
|
||||
msgid "Radial gradient"
|
||||
msgstr "방사형 그래디언트"
|
||||
msgstr "방사형 그라데이션"
|
||||
|
||||
msgid "Open filled path"
|
||||
msgstr "채워진 경로 열기"
|
||||
|
@ -1840,10 +1840,10 @@ msgid "Assemble the selected objects to an object with single part"
|
|||
msgstr "선택한 개체를 단일 부품이 있는 개체로 조립"
|
||||
|
||||
msgid "Mesh boolean"
|
||||
msgstr "메쉬 부울"
|
||||
msgstr "메시 합집합/차집합/교집합"
|
||||
|
||||
msgid "Mesh boolean operations including union and subtraction"
|
||||
msgstr "합집합과 차집합을 포함한 메쉬 부울 연산"
|
||||
msgstr "합집합과 차집합을 포함한 메시 부울 연산"
|
||||
|
||||
msgid "Along X axis"
|
||||
msgstr "X축"
|
||||
|
@ -3054,7 +3054,7 @@ msgstr ""
|
|||
"로 이동합니다"
|
||||
|
||||
msgid "Air Printing Detection"
|
||||
msgstr "에어 프린팅 감지"
|
||||
msgstr "허공 출력 감지"
|
||||
|
||||
msgid ""
|
||||
"Detects clogging and filament grinding, halting printing immediately to "
|
||||
|
@ -3136,7 +3136,7 @@ msgid "Stack overflow"
|
|||
msgstr "스택 오버플로"
|
||||
|
||||
msgid "Running post-processing scripts"
|
||||
msgstr "사후 처리 스크립트 실행중"
|
||||
msgstr "후처리 스크립트 실행중"
|
||||
|
||||
msgid "Successfully executed post-processing script"
|
||||
msgstr "성공적으로 실행된 후처리 스크립트"
|
||||
|
@ -3284,13 +3284,13 @@ msgid "syncing"
|
|||
msgstr "동기화"
|
||||
|
||||
msgid "Printing Finish"
|
||||
msgstr "인쇄 완료"
|
||||
msgstr "출력 완료"
|
||||
|
||||
msgid "Printing Failed"
|
||||
msgstr "인쇄 실패"
|
||||
msgstr "출력 실패"
|
||||
|
||||
msgid "Printing Pause"
|
||||
msgstr "인쇄 일시중지"
|
||||
msgstr "출력 일시중지"
|
||||
|
||||
msgid "Prepare"
|
||||
msgstr "준비 하기"
|
||||
|
@ -3314,10 +3314,10 @@ msgid "Sending Failed"
|
|||
msgstr "전송 실패"
|
||||
|
||||
msgid "Print Success"
|
||||
msgstr "인쇄 성공"
|
||||
msgstr "출력 성공"
|
||||
|
||||
msgid "Print Failed"
|
||||
msgstr "인쇄 실패"
|
||||
msgstr "출력 실패"
|
||||
|
||||
msgid "Removed"
|
||||
msgstr "삭제됨"
|
||||
|
@ -3356,7 +3356,7 @@ msgid "Abnormal print file data. Please slice again"
|
|||
msgstr "비정상적인 출력 파일 데이터입니다. 다시 슬라이스하세요"
|
||||
|
||||
msgid "There is no device available to send printing."
|
||||
msgstr "인쇄를 전송할 수 있는 장치가 없습니다."
|
||||
msgstr "출력을 전송할 수 있는 장치가 없습니다."
|
||||
|
||||
msgid "The number of printers in use simultaneously cannot be equal to 0."
|
||||
msgstr "동시에 사용 중인 프린터의 수는 0과 같을 수 없습니다."
|
||||
|
@ -3374,7 +3374,7 @@ msgid "Ams Status"
|
|||
msgstr "AMS 상태"
|
||||
|
||||
msgid "Printing Options"
|
||||
msgstr "인쇄 옵션"
|
||||
msgstr "출력 옵션"
|
||||
|
||||
msgid "Bed Leveling"
|
||||
msgstr "베드 레벨링"
|
||||
|
@ -4386,7 +4386,7 @@ msgid "Go Live"
|
|||
msgstr "실시간"
|
||||
|
||||
msgid "Liveview Retry"
|
||||
msgstr "라이브뷰 재시도"
|
||||
msgstr "실시간 화면보기 재시도"
|
||||
|
||||
msgid "Resolution"
|
||||
msgstr "해상도"
|
||||
|
@ -6282,8 +6282,8 @@ msgid ""
|
|||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be kept. You may fix the meshes and try again."
|
||||
msgstr ""
|
||||
"모델 메쉬에 대해 부울 연산을 수행할 수 없습니다. 긍정적인 부분만 유지됩니다. "
|
||||
"메쉬를 수정하고 재시도해 볼 수 있습니다."
|
||||
"모델 메시에 대해 부울 연산을 수행할 수 없습니다. 긍정적인 부분만 유지됩니다. "
|
||||
"메시를 수정하고 재시도해 볼 수 있습니다."
|
||||
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" is empty."
|
||||
|
@ -6305,7 +6305,7 @@ msgid ""
|
|||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"모델 메쉬에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다."
|
||||
"모델 메시에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다."
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to store original SVGs with their local paths into the "
|
||||
|
@ -6562,10 +6562,10 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel."
|
|||
msgstr "활성화되면 마우스 휠을 사용하여 확대/축소 방향을 반대로 바꿉니다."
|
||||
|
||||
msgid "Show splash screen"
|
||||
msgstr "스플래시 화면 표시"
|
||||
msgstr "시작 화면 표시"
|
||||
|
||||
msgid "Show the splash screen during startup."
|
||||
msgstr "시작하는 동안 스플래시 화면을 표시합니다."
|
||||
msgstr "시작 화면을 표시합니다."
|
||||
|
||||
msgid "Show \"Tip of the day\" notification after start"
|
||||
msgstr "시작 후 \"오늘의 팁\" 알림 표시"
|
||||
|
@ -6782,7 +6782,7 @@ msgid "debug save button"
|
|||
msgstr "디버그 저장 버튼"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgstr "디버그 세팅 저장"
|
||||
msgstr "디버그 설정 저장"
|
||||
|
||||
msgid "DEBUG settings have saved successfully!"
|
||||
msgstr "디버그 설정이 성공적으로 저장되었습니다!"
|
||||
|
@ -6830,7 +6830,7 @@ msgid "Create printer"
|
|||
msgstr "프린터 생성"
|
||||
|
||||
msgid "The selected preset is null!"
|
||||
msgstr "선택한 사전 설정의 값이 존재하지 않습니다!(null)"
|
||||
msgstr "선택한 사전 설정의 값이 존재하지 않습니다!"
|
||||
|
||||
msgid "End"
|
||||
msgstr "끝"
|
||||
|
@ -7249,7 +7249,7 @@ msgid "Get ticket from device timeout"
|
|||
msgstr "기기에서 티켓 가져오는데 시간 초과"
|
||||
|
||||
msgid "Get ticket from server timeout"
|
||||
msgstr "서버에서 티켓 가져오는데 시간 초과"
|
||||
msgstr "서버에서 티켓 가져오기 시간 초과"
|
||||
|
||||
msgid "Failed to post ticket to server"
|
||||
msgstr "서버에 티켓게시 실패"
|
||||
|
@ -7295,7 +7295,7 @@ msgid "Check the reason"
|
|||
msgstr "이유 확인"
|
||||
|
||||
msgid "Read and accept"
|
||||
msgstr "읽고 수락"
|
||||
msgstr "읽고 동의하기"
|
||||
|
||||
msgid "Terms and Conditions"
|
||||
msgstr "이용약관"
|
||||
|
@ -7496,13 +7496,13 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 닦기 타워\"를 추가하는 것이 좋"
|
||||
"습니다\n"
|
||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 "
|
||||
"좋습니다\n"
|
||||
"빌드 플레이트의 빈 위치를 마우스 오른쪽 버튼으로 클릭하고 \"기본 모델 추가\"-"
|
||||
"> \"타임랩스 닦기 타워\"를 선택합니다."
|
||||
"> \"타임랩스 프라임 타워\"를 선택합니다."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "선 너비"
|
||||
|
@ -7594,7 +7594,7 @@ msgid "G-code output"
|
|||
msgstr "G코드 출력"
|
||||
|
||||
msgid "Post-processing Scripts"
|
||||
msgstr "사후 처리 스크립트"
|
||||
msgstr "후처리 스크립트"
|
||||
|
||||
msgid "Notes"
|
||||
msgstr "메모"
|
||||
|
@ -7667,7 +7667,7 @@ msgid ""
|
|||
"does not support to print on the Textured Cool Plate"
|
||||
msgstr ""
|
||||
"쿨 플레이트가 설치되었을 때의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 "
|
||||
"플레이트에서 인쇄를 지원하지 않음을 의미합니다"
|
||||
"플레이트에서 출력를 지원하지 않음을 의미합니다"
|
||||
|
||||
msgid "Engineering plate"
|
||||
msgstr "엔지니어링 플레이트"
|
||||
|
@ -7753,7 +7753,7 @@ msgid "Filament end G-code"
|
|||
msgstr "필라멘트 종료 G코드"
|
||||
|
||||
msgid "Wipe tower parameters"
|
||||
msgstr "닦기 타워 매개변수"
|
||||
msgstr "프라임 타워 매개변수"
|
||||
|
||||
msgid "Toolchange parameters with single extruder MM printers"
|
||||
msgstr "다중 재료 프린터의 단일 압출기 툴 체인지 매개변수"
|
||||
|
@ -7785,7 +7785,7 @@ msgid "Extruder Clearance"
|
|||
msgstr "압출기 회피"
|
||||
|
||||
msgid "Adaptive bed mesh"
|
||||
msgstr "적응형 베드 메쉬"
|
||||
msgstr "적응형 베드 메시"
|
||||
|
||||
msgid "Accessory"
|
||||
msgstr "악세서리"
|
||||
|
@ -7858,7 +7858,7 @@ msgid "Nozzle diameter"
|
|||
msgstr "노즐 직경"
|
||||
|
||||
msgid "Wipe tower"
|
||||
msgstr "닦기 타워"
|
||||
msgstr "프라임 타워"
|
||||
|
||||
msgid "Single extruder multi-material parameters"
|
||||
msgstr "단일 압출기 다중 재료 매개변수"
|
||||
|
@ -7889,7 +7889,7 @@ msgstr ""
|
|||
"펌웨어 후퇴를 활성화하기 위해 비활성화하겠습니까?"
|
||||
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "펌웨어 후퇴"
|
||||
msgstr "펌웨어 리트렉션"
|
||||
|
||||
msgid "Detached"
|
||||
msgstr "분리됨"
|
||||
|
@ -8869,7 +8869,7 @@ msgid ""
|
|||
"Maybe parts of the object at these height are too thin, or the object has "
|
||||
"faulty mesh"
|
||||
msgstr ""
|
||||
"이 높이에 있는 개체의 일부가 너무 얇거나 개체에 결함이 있는 메쉬가 있을 수 있"
|
||||
"이 높이에 있는 개체의 일부가 너무 얇거나 개체에 결함이 있는 메시가 있을 수 있"
|
||||
"습니다"
|
||||
|
||||
msgid "No object can be printed. Maybe too small"
|
||||
|
@ -8878,7 +8878,7 @@ msgstr "개체를 출력할 수 없습니다. 너무 작을 수 있습니다"
|
|||
msgid ""
|
||||
"Your print is very close to the priming regions. Make sure there is no "
|
||||
"collision."
|
||||
msgstr "인쇄물이 프라이밍 영역에 매우 가깝습니다. 충돌이 없는지 확인합니다."
|
||||
msgstr "출력물이 프라이밍 영역에 매우 가깝습니다. 충돌이 없는지 확인합니다."
|
||||
|
||||
msgid ""
|
||||
"Failed to generate gcode for invalid custom G-code.\n"
|
||||
|
@ -9137,14 +9137,14 @@ msgid ""
|
|||
"The Wipe Tower is currently only supported with the relative extruder "
|
||||
"addressing (use_relative_e_distances=1)."
|
||||
msgstr ""
|
||||
"닦기 타워는 현재 관련 압출기에서만 지원됩니다.주소 지정"
|
||||
"프라임 타워는 현재 관련 압출기에서만 지원됩니다.주소 지정"
|
||||
"(use_relative_e_distances=1)."
|
||||
|
||||
msgid ""
|
||||
"Ooze prevention is only supported with the wipe tower when "
|
||||
"'single_extruder_multi_material' is off."
|
||||
msgstr ""
|
||||
"오수 방지는 'single_extruder_multi_material'이 꺼져 있을 때만 와이프 타워에"
|
||||
"유출 방지는 'single_extruder_multi_material'이 꺼져 있을 때만 와이프 타워에"
|
||||
"서 지원됩니다."
|
||||
|
||||
msgid ""
|
||||
|
@ -9504,7 +9504,7 @@ msgid ""
|
|||
"filament does not support to print on the Textured Cool Plate"
|
||||
msgstr ""
|
||||
"초기 레이어를 제외한 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 "
|
||||
"플레이트에서 인쇄를 지원하지 않음을 의미합니다"
|
||||
"플레이트에서 출력를 지원하지 않음을 의미합니다"
|
||||
|
||||
msgid ""
|
||||
"Bed temperature for layers except the initial one. Value 0 means the "
|
||||
|
@ -9544,7 +9544,7 @@ msgid ""
|
|||
"Bed temperature of the initial layer. Value 0 means the filament does not "
|
||||
"support to print on the Textured Cool Plate"
|
||||
msgstr ""
|
||||
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 인쇄"
|
||||
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 출력"
|
||||
"할 수 없음을 의미합니다"
|
||||
|
||||
msgid ""
|
||||
|
@ -9915,7 +9915,7 @@ msgstr ""
|
|||
"데 도움이 될 수 있습니다.\n"
|
||||
"\n"
|
||||
"이 설정이 가장 효과적이려면 모든 내부 벽이 돌출 정도에 관계없이 균일한 레이어"
|
||||
"에서 교대로 인쇄되도록 역방향 임계값을 0으로 설정하는 것이 좋습니다."
|
||||
"에서 교대로 출력되도록 역방향 임계값을 0으로 설정하는 것이 좋습니다."
|
||||
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "브릿지 카운터보어 구멍"
|
||||
|
@ -9934,7 +9934,7 @@ msgstr ""
|
|||
"3. 희생 레이어: 전체 희생 브릿지 레이어가 생성됩니다."
|
||||
|
||||
msgid "Partially bridged"
|
||||
msgstr "부분적으로 브릿지"
|
||||
msgstr "부분적 브릿지"
|
||||
|
||||
msgid "Sacrificial layer"
|
||||
msgstr "희생층"
|
||||
|
@ -9953,6 +9953,11 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"반전이 유용한 것으로 간주되려면 오버행이 몇 mm가 되어야 합니다. 둘레 폭을 % o"
|
||||
"으로 설정할 수 있습니다.\n"
|
||||
"값이 0이면 모든 짝수 레이어에 관계없이 반전이 활성화됩니다.\n"
|
||||
"돌출 벽 감지가 활성화되지 않은 경우 이 옵션은 무시되고 모든 짝수 레이어에서 "
|
||||
"반전이 수행됩니다."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "클래식 모드"
|
||||
|
@ -9967,7 +9972,7 @@ msgid "Enable this option to slow printing down for different overhang degree"
|
|||
msgstr "돌출부 정도에 따라 출력 속도를 낮추려면 이 옵션을 활성화합니다"
|
||||
|
||||
msgid "Slow down for curled perimeters"
|
||||
msgstr "꺾여 있는 둘레에서 감속"
|
||||
msgstr "구부러진 둘레에서 감속"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
|
@ -9989,13 +9994,13 @@ msgid ""
|
|||
"overhanging, with no wall supporting them from underneath, the 100% overhang "
|
||||
"speed will be applied."
|
||||
msgstr ""
|
||||
"주변이 위쪽으로 말릴 수 있는 영역에서 인쇄 속도를 늦추려면 이 옵션을 활성화합"
|
||||
"니다. 예를 들어 벤치 선체 전면과 같이 날카로운 모서리에 돌출부를 인쇄할 때 추"
|
||||
"주변이 위쪽으로 말릴 수 있는 영역에서 출력 속도를 늦추려면 이 옵션을 활성화합"
|
||||
"니다. 예를 들어 벤치 선체 전면과 같이 날카로운 모서리에 돌출부를 출력할 때 추"
|
||||
"가 속도 저하가 적용되어 여러 레이어에 걸쳐 합성되는 말림을 줄입니다.\n"
|
||||
"\n"
|
||||
" 프린터 냉각 성능이 충분히 강력하거나 인쇄 속도가 느려 주변 말림이 발생하지 "
|
||||
"않는 한 일반적으로 이 옵션을 켜는 것이 좋습니다. 높은 외부 주변 속도로 인쇄하"
|
||||
"는 경우 이 매개변수는 인쇄 속도의 큰 차이로 인해 속도가 느려질 때 약간의 아티"
|
||||
" 프린터 냉각 성능이 충분히 강력하거나 출력 속도가 느려 주변 말림이 발생하지 "
|
||||
"않는 한 일반적으로 이 옵션을 켜는 것이 좋습니다. 높은 외부 주변 속도로 출력하"
|
||||
"는 경우 이 매개변수는 출력 속도의 큰 차이로 인해 속도가 느려질 때 약간의 아티"
|
||||
"팩트가 발생할 수 있습니다. 아티팩트가 발견되면 압력 진행이 올바르게 조정되었"
|
||||
"는지 확인하십시오.\n"
|
||||
"\n"
|
||||
|
@ -10020,7 +10025,7 @@ msgstr ""
|
|||
"외부에서 볼 수 있는 브릿지 돌출 속도입니다. \n"
|
||||
"\n"
|
||||
"또한, 구부러진 둘레에 대한 속도 저하가 비활성화되거나 클래식 오버행 모드가 활"
|
||||
"성화된 경우 브릿지의 일부이든 오버행이든 상관없이 오버행 벽의 인쇄 속도는 "
|
||||
"성화된 경우 브릿지의 일부이든 오버행이든 상관없이 오버행 벽의 출력 속도는 "
|
||||
"13% 미만으로 지원됩니다."
|
||||
|
||||
msgid "mm/s"
|
||||
|
@ -10259,14 +10264,14 @@ msgstr ""
|
|||
"이는 데 도움이 될 수 있습니다.\n"
|
||||
"\n"
|
||||
"기본적으로 작은 내부 브릿지는 필터링되고 내부 솔리드 채우기는 희박한 채우기 "
|
||||
"위에 직접 인쇄됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 크게 "
|
||||
"저하시키지 않고 인쇄 속도를 높입니다. \n"
|
||||
"위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 크게 "
|
||||
"저하시키지 않고 출력 속도를 높입니다. \n"
|
||||
"\n"
|
||||
"그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡선 모"
|
||||
"델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습니다.\n"
|
||||
"\n"
|
||||
"이 옵션을 비활성화하면 약간 지원되지 않는 내부 솔리드 채우기 위에 내부 브릿"
|
||||
"지 레이어가 인쇄됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 제"
|
||||
"지 레이어가 출력됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 제"
|
||||
"어합니다.\n"
|
||||
"\n"
|
||||
"필터 - 이 옵션을 활성화합니다. 이는 기본 동작이며 대부분의 경우 잘 작동합니"
|
||||
|
@ -10492,11 +10497,11 @@ msgid ""
|
|||
"external surface finish. It can also cause the infill to shine through the "
|
||||
"external surfaces of the part."
|
||||
msgstr ""
|
||||
"벽/채우기 순서. 확인란을 선택 취소하면 벽이 먼저 인쇄되며 이는 대부분의 경우 "
|
||||
"벽/채우기 순서. 확인란을 선택 취소하면 벽이 먼저 출력되며 이는 대부분의 경우 "
|
||||
"가장 잘 작동합니다.\n"
|
||||
"\n"
|
||||
"충전재를 먼저 인쇄하면 벽에 접착할 인접 충전재가 있으므로 돌출부가 심한 경우 "
|
||||
"도움이 될 수 있습니다. 그러나 충전재는 인쇄된 벽이 부착된 부분을 약간 밀어내"
|
||||
"충전재를 먼저 출력하면 벽에 접착할 인접 충전재가 있으므로 돌출부가 심한 경우 "
|
||||
"도움이 될 수 있습니다. 그러나 충전재는 출력된 벽이 부착된 부분을 약간 밀어내"
|
||||
"어 외부 표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛"
|
||||
"날 수도 있습니다."
|
||||
|
||||
|
@ -10556,7 +10561,7 @@ msgid "The height of nozzle tip."
|
|||
msgstr "노즐 팁의 높이."
|
||||
|
||||
msgid "Bed mesh min"
|
||||
msgstr "배드 메쉬 최소"
|
||||
msgstr "배드 메시 최소"
|
||||
|
||||
msgid ""
|
||||
"This option sets the min point for the allowed bed mesh area. Due to the "
|
||||
|
@ -10568,9 +10573,9 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (-99999, -99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"이 옵션은 허용되는 배드 메쉬 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"이 옵션은 허용되는 배드 메시 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절"
|
||||
"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니"
|
||||
"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 "
|
||||
|
@ -10578,7 +10583,7 @@ msgstr ""
|
|||
"을 의미합니다."
|
||||
|
||||
msgid "Bed mesh max"
|
||||
msgstr "배드 메쉬 최대"
|
||||
msgstr "배드 메시 최대"
|
||||
|
||||
msgid ""
|
||||
"This option sets the max point for the allowed bed mesh area. Due to the "
|
||||
|
@ -10590,9 +10595,9 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (99999, 99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"이 옵션은 허용되는 침대 메쉬 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"이 옵션은 허용되는 침대 메시 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절"
|
||||
"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니"
|
||||
"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 "
|
||||
|
@ -10610,7 +10615,7 @@ msgstr ""
|
|||
"며 X와 Y 모두에 대한 기본값은 50mm입니다."
|
||||
|
||||
msgid "Mesh margin"
|
||||
msgstr "메쉬 공간"
|
||||
msgstr "메시 공간"
|
||||
|
||||
msgid ""
|
||||
"This option determines the additional distance by which the adaptive bed "
|
||||
|
@ -10696,16 +10701,16 @@ msgid ""
|
|||
"and for when tool changing.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"인쇄 속도가 증가하고(노즐을 통한 체적 흐름이 증가함) 가속도가 증가함에 따라 "
|
||||
"출력 속도가 증가하고(노즐을 통한 체적 흐름이 증가함) 가속도가 증가함에 따라 "
|
||||
"일반적으로 유효 PA 값이 감소하는 것으로 관찰되었습니다. 이는 단일 PA 값이 모"
|
||||
"든 기능에 대해 항상 100% 최적인 것은 아니며 일반적으로 유속과 가속도가 낮은 "
|
||||
"기능에 너무 많은 돌출을 일으키지 않고 더 빠른 기능에 간격을 유발하지 않는 절"
|
||||
"충 값이 사용된다는 것을 의미합니다.\n"
|
||||
"\n"
|
||||
"이 기능은 인쇄 중인 체적 흐름 속도와 가속도에 따라 프린터 압출 시스템의 반응"
|
||||
"이 기능은 출력 중인 체적 흐름 속도와 가속도에 따라 프린터 압출 시스템의 반응"
|
||||
"을 모델링하여 이러한 제한 사항을 해결하는 것을 목표로 합니다. 내부적으로는 주"
|
||||
"어진 체적 흐름 속도 및 가속도에 대해 필요한 압력 전진을 추정할 수 있는 적합 "
|
||||
"모델을 생성하며, 이는 현재 인쇄 조건에 따라 프린터로 방출됩니다.\n"
|
||||
"모델을 생성하며, 이는 현재 출력 조건에 따라 프린터로 방출됩니다.\n"
|
||||
"\n"
|
||||
"활성화되면 위의 압력 전진 값이 무시됩니다. 그러나 대체 수단으로 사용하거나 도"
|
||||
"구를 변경할 때 위의 합리적인 기본값을 사용하는 것이 좋습니다.\n"
|
||||
|
@ -10752,15 +10757,15 @@ msgstr ""
|
|||
"\n"
|
||||
"교정 방법:\n"
|
||||
"1. 가속도 값당 최소 3개 속도에 대해 압력 전진 테스트를 실행합니다. 최소한 외"
|
||||
"부 둘레의 속도, 내부 둘레의 속도 및 프로필의 가장 빠른 기능 인쇄 속도(일반적"
|
||||
"부 둘레의 속도, 내부 둘레의 속도 및 프로필의 가장 빠른 기능 출력 속도(일반적"
|
||||
"으로 희박하거나 단단한 충전재)에 대해 테스트를 실행하는 것이 좋습니다. 그런 "
|
||||
"다음 가장 느리고 가장 빠른 인쇄 가속을 위해 동일한 속도로 실행하고 Klipper 입"
|
||||
"다음 가장 느리고 가장 빠른 출력 가속을 위해 동일한 속도로 실행하고 Klipper 입"
|
||||
"력 셰이퍼에서 제공하는 권장 최대 가속보다 빠르지 않게 실행하십시오.\n"
|
||||
"2. 각 체적 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 "
|
||||
"드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 "
|
||||
"번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA "
|
||||
"값은 체적 유량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르"
|
||||
"게 작동하는지 확인하십시오. 인쇄 속도가 느리고 가속도가 낮을수록 허용되는 PA "
|
||||
"게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA "
|
||||
"값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하"
|
||||
"십시오.3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필"
|
||||
"라멘트 프로필을 저장하세요.\n"
|
||||
|
@ -10792,7 +10797,7 @@ msgstr ""
|
|||
"브릿지의 압력 전진 값입니다. 비활성화하려면 0으로 설정합니다. \n"
|
||||
"\n"
|
||||
" 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나"
|
||||
"는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 인쇄할 때 노즐의 압력 강하로 "
|
||||
"는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 "
|
||||
"인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
|
||||
|
||||
msgid ""
|
||||
|
@ -10830,7 +10835,7 @@ msgstr ""
|
|||
"활성화되면 최소 레이어 시간을 충족하기 위한 외벽의 출력 속도 감속을 적용하지 "
|
||||
"않습니다. 이 기능은 아래의 경우에 도움이 될 수 있습니다:\n"
|
||||
"\n"
|
||||
"1. 유광 필라멘트로 인쇄할 때 일정한 광택을 유지하기 위한 경우 \n"
|
||||
"1. 유광 필라멘트로 출력할 때 일정한 광택을 유지하기 위한 경우 \n"
|
||||
"2. 외벽 출력 속도의 변화로 인한 외벽의 Z밴딩처럼 보이는 형상이 생성되는 것을 "
|
||||
"방지하기 위한 경우 \n"
|
||||
"3. 외벽을 VFA를 발생시키는 속도로 출력하는 것을 방지하기 위한 경우\n"
|
||||
|
@ -10906,7 +10911,7 @@ msgstr ""
|
|||
"의 경우 일반적으로 0입니다. 통계용으로만 사용됩니다"
|
||||
|
||||
msgid "Tool change time"
|
||||
msgstr "툴 체이진 시가"
|
||||
msgstr "툴 체인지 시간"
|
||||
|
||||
msgid ""
|
||||
"Time taken to switch tools. It's usually applicable for tool changers or "
|
||||
|
@ -10976,7 +10981,7 @@ msgid "Loading speed"
|
|||
msgstr "압출 속도"
|
||||
|
||||
msgid "Speed used for loading the filament on the wipe tower."
|
||||
msgstr "닦기 타워에 필라멘트를 압출하는 데 사용되는 속도입니다."
|
||||
msgstr "프라임 타워에 필라멘트를 압출하는 데 사용되는 속도입니다."
|
||||
|
||||
msgid "Loading speed at the start"
|
||||
msgstr "시작 시 압출 속도"
|
||||
|
@ -10991,8 +10996,8 @@ msgid ""
|
|||
"Speed used for unloading the filament on the wipe tower (does not affect "
|
||||
"initial part of unloading just after ramming)."
|
||||
msgstr ""
|
||||
"닦기 타워에 필라멘트를 빼는 데 사용되는 속도(래밍 직후 빼기 초기 부분에는 영"
|
||||
"향을 미치지 않음)"
|
||||
"프라임 타워에 필라멘트를 빼는 데 사용되는 속도(래밍 직후 빼기 초기 부분에는 "
|
||||
"영향을 미치지 않음)"
|
||||
|
||||
msgid "Unloading speed at the start"
|
||||
msgstr "시작시 언로드 속도"
|
||||
|
@ -11048,7 +11053,7 @@ msgid "Cooling moves are gradually accelerating beginning at this speed."
|
|||
msgstr "이 속도부터 냉각 동작이 점차 가속됩니다."
|
||||
|
||||
msgid "Minimal purge on wipe tower"
|
||||
msgstr "닦기 타워의 최소 청소"
|
||||
msgstr "프라임 타워의 최소 청소"
|
||||
|
||||
msgid ""
|
||||
"After a tool change, the exact position of the newly loaded filament inside "
|
||||
|
@ -11057,10 +11062,10 @@ msgid ""
|
|||
"object, Orca Slicer will always prime this amount of material into the wipe "
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
"툴 교환 후 노즐 내부에 새로 로드된 필라멘트의 정확한 위치를 알 수 없으며 필라"
|
||||
"멘트 압력이 아직 안정적이지 않을 수 있습니다. 프린트 헤드를 채우기 또는 희생 "
|
||||
"개체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 닦기 타워로 프라이밍하"
|
||||
"여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다."
|
||||
"툴 체인지 후 노즐 내부에 새로 로드된 필라멘트의 정확한 위치를 알 수 없으며 필"
|
||||
"라멘트 압력이 아직 안정적이지 않을 수 있습니다. 프린트 헤드를 채우기 또는 희"
|
||||
"생 개체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 프라임 타워로 프라"
|
||||
"이밍하여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다."
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "마지막 냉각 이동 속도"
|
||||
|
@ -11087,9 +11092,9 @@ msgid ""
|
|||
"the toolchange. This option is only used when the wipe tower is enabled."
|
||||
msgstr ""
|
||||
"다중 압출기 프린터를 사용할 때 래밍을 수행합니다(예: 프린터 설정에서 '단일 압"
|
||||
"출기 다중 재료'가 선택 취소된 경우). 활성화하면 툴 체인지 직전 닦기 타워에 소"
|
||||
"량의 필라멘트가 빠르게 압출됩니다. 이 옵션은 닦기 타워가 활성화된 경우에만 사"
|
||||
"용됩니다."
|
||||
"출기 다중 재료'가 선택 취소된 경우). 활성화하면 툴 체인지 직전 프라임 타워에 "
|
||||
"소량의 필라멘트가 빠르게 압출됩니다. 이 옵션은 프라임 타워가 활성화된 경우에"
|
||||
"만 사용됩니다."
|
||||
|
||||
msgid "Multi-tool ramming volume"
|
||||
msgstr "다중 압출기 래밍 부피"
|
||||
|
@ -11423,10 +11428,10 @@ msgstr "팬 최대 속도 레이어"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
|
||||
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
||||
|
@ -11499,7 +11504,7 @@ msgid ""
|
|||
"(in mm). This setting applies to top, bottom and solid infill and, if using "
|
||||
"the classic perimeter generator, to wall gap fill. "
|
||||
msgstr ""
|
||||
"지정된 임계값(mm 단위)보다 길이가 작은 간격 채우기를 인쇄하지 마십시오. 이 설"
|
||||
"지정된 임계값(mm 단위)보다 길이가 작은 간격 채우기를 출력하지 마십시오. 이 설"
|
||||
"정은 상단, 하단 및 솔리드 채우기에 적용되며, 클래식 주변 생성기를 사용하는 경"
|
||||
"우 벽 간격 채우기에 적용됩니다. "
|
||||
|
||||
|
@ -11574,13 +11579,13 @@ msgid "Undefine"
|
|||
msgstr "알 수 없음"
|
||||
|
||||
msgid "Hardened steel"
|
||||
msgstr "경화강 노즐"
|
||||
msgstr "경화강"
|
||||
|
||||
msgid "Stainless steel"
|
||||
msgstr "스테인레스강 노즐"
|
||||
msgstr "스테인레스 스틸"
|
||||
|
||||
msgid "Brass"
|
||||
msgstr "황동 노즐"
|
||||
msgstr "황동"
|
||||
|
||||
msgid "Nozzle HRC"
|
||||
msgstr "노즐 록웰 경도"
|
||||
|
@ -11776,7 +11781,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"결합된 희소 채우기의 최대 레이어 높이입니다. \n"
|
||||
"\n"
|
||||
"노즐 직경(인쇄 시간을 최대로 줄이기 위해)을 사용하려면 0 또는 100%로 설정하"
|
||||
"노즐 직경(출력 시간을 최대로 줄이기 위해)을 사용하려면 0 또는 100%로 설정하"
|
||||
"고 희박한 채우기 강도를 최대화하려면 ~80% 값으로 설정합니다.\n"
|
||||
"\n"
|
||||
"채우기가 결합되는 레이어 수는 이 값을 레이어 높이로 나누고 가장 가까운 소수"
|
||||
|
@ -11809,7 +11814,7 @@ msgstr ""
|
|||
"압출 및 축적 가능성을 최소화하려면 이 값을 ~10-15%로 설정하십시오."
|
||||
|
||||
msgid "Top/Bottom solid infill/wall overlap"
|
||||
msgstr "상단/하단 솔리드 채우기/벽 겹침"
|
||||
msgstr "상하단 솔리드 채우기/벽 겹침"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
|
@ -11866,9 +11871,9 @@ msgid ""
|
|||
"filaments touch. This improves the adhesion between filaments, especially "
|
||||
"models printed in different materials."
|
||||
msgstr ""
|
||||
"서로 다른 필라멘트가 접촉하는 곳에 맞물리는 구조의 (인터로킹) 빔을 생성합니"
|
||||
"다. 이 기능은 필라멘트 간의 결합력을 향상시키며, 서로 다른 재료로 출력한 모델"
|
||||
"에 특히 유용합니다."
|
||||
"서로 다른 필라멘트가 접촉하는 곳에 맞물리는 구조의 인터로킹 빔을 생성합니다. "
|
||||
"이 기능은 필라멘트 간의 결합력을 향상시키며, 서로 다른 재료로 출력한 모델에 "
|
||||
"특히 유용합니다."
|
||||
|
||||
msgid "Interlocking beam width"
|
||||
msgstr "인터로킹 빔 너비"
|
||||
|
@ -12407,7 +12412,7 @@ msgstr ""
|
|||
"100%% 돌출부의 경우 브릿지 속도가 사용됩니다."
|
||||
|
||||
msgid "Filament to print walls"
|
||||
msgstr "벽을 인쇄하는 필라멘트"
|
||||
msgstr "벽을 출력하는 필라멘트"
|
||||
|
||||
msgid ""
|
||||
"Line width of inner wall. If expressed as a %, it will be computed over the "
|
||||
|
@ -12564,7 +12569,7 @@ msgstr "절단 시 후퇴 거리"
|
|||
msgid ""
|
||||
"Experimental feature.Retraction length before cutting off during filament "
|
||||
"change"
|
||||
msgstr "실험적 특징.필라멘트 교환시 절단 전 후퇴길이"
|
||||
msgstr "실험적 기능. 필라멘트 교체 시 절단 전 후퇴 길이"
|
||||
|
||||
msgid "Z hop when retract"
|
||||
msgstr "후퇴 시 Z 올리기"
|
||||
|
@ -12692,7 +12697,7 @@ msgstr ""
|
|||
"니다"
|
||||
|
||||
msgid "Use firmware retraction"
|
||||
msgstr "펌웨어 후퇴 사용"
|
||||
msgstr "펌웨어 리트렉션 사용"
|
||||
|
||||
msgid ""
|
||||
"This experimental setting uses G10 and G11 commands to have the firmware "
|
||||
|
@ -12948,7 +12953,7 @@ msgstr ""
|
|||
"사용합니다"
|
||||
|
||||
msgid "Draft shield"
|
||||
msgstr "드래프트 쉴드"
|
||||
msgstr "드래프트 실드"
|
||||
|
||||
msgid ""
|
||||
"A draft shield is useful to protect an ABS or ASA print from warping and "
|
||||
|
@ -12961,13 +12966,13 @@ msgid ""
|
|||
"distance from the object. Therefore, if brims are active it may intersect "
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
"드래프트 쉴드는 바람으로 인해 ABS 또는 ASA 인쇄물이 뒤틀리거나 인쇄 베드에서 "
|
||||
"드래프트 실드는 바람으로 인해 ABS 또는 ASA 출력물이 뒤틀리거나 출력 베드에서 "
|
||||
"분리되는 것을 방지하는 데 유용합니다. 일반적으로 오픈 프레임 프린터, 즉 인클"
|
||||
"로저가 없는 경우에만 필요합니다. \n"
|
||||
"\n"
|
||||
"활성화 = 스커트가 가장 높은 인쇄물의 높이와 같습니다. 그렇지 않으면 '스커트 "
|
||||
"활성화 = 스커트가 가장 높은 출력물의 높이와 같습니다. 그렇지 않으면 '스커트 "
|
||||
"높이'가 사용됩니다.\n"
|
||||
"참고: 드래프트 쉴드가 활성화되면 스커트는 개체로부터 스커트 거리에 인쇄됩니"
|
||||
"참고: 드래프트 실드가 활성화되면 스커트는 개체로부터 스커트 거리에 출력됩니"
|
||||
"다. 따라서 챙이 활성화된 경우 챙과 교차할 수 있습니다. 이를 방지하려면 스커"
|
||||
"트 거리 값을 늘리십시오.\n"
|
||||
|
||||
|
@ -13015,10 +13020,10 @@ msgid ""
|
|||
"Final number of loops is not taling into account whli arranging or "
|
||||
"validating objects distance. Increase loop number in such case. "
|
||||
msgstr ""
|
||||
"스커트를 인쇄할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성화"
|
||||
"스커트를 출력할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성화"
|
||||
"되었음을 의미합니다.\n"
|
||||
"\n"
|
||||
"프린터가 프라임 라인 없이 인쇄하도록 설정된 경우 0이 아닌 값을 사용하는 것이 "
|
||||
"프린터가 프라임 라인 없이 출력하도록 설정된 경우 0이 아닌 값을 사용하는 것이 "
|
||||
"유용합니다.\n"
|
||||
"루프의 최종 수는 객체 거리를 정렬하거나 검증하는 동안 고려되지 않습니다. 그러"
|
||||
"한 경우에는 루프 수를 늘리십시오. "
|
||||
|
@ -13042,7 +13047,7 @@ msgid "Solid infill"
|
|||
msgstr "솔리드 채우기"
|
||||
|
||||
msgid "Filament to print solid infill"
|
||||
msgstr "솔리드 인필을 인쇄하는 필라멘트"
|
||||
msgstr "솔리드 인필을 출력하는 필라멘트"
|
||||
|
||||
msgid ""
|
||||
"Line width of internal solid infill. If expressed as a %, it will be "
|
||||
|
@ -13184,9 +13189,9 @@ msgid ""
|
|||
"print the wipe tower. User is responsible for ensuring there is no collision "
|
||||
"with the print."
|
||||
msgstr ""
|
||||
"활성화되면 툴 체인지 없이 레이어에 닦기 타워가 출력되지 않습니다. 툴 체인지"
|
||||
"가 있는 레이어에서는 압출기가 아래쪽으로 이동하여 닦기 타워를 출력합니다. 출"
|
||||
"력물과의 충돌이 없는지 확인하는 것은 사용자의 책임입니다."
|
||||
"활성화되면 툴 체인지 없이 레이어에 프라임 타워가 출력되지 않습니다. 툴 체인지"
|
||||
"가 있는 레이어에서는 압출기가 아래쪽으로 이동하여 프라임 타워를 출력합니다. "
|
||||
"출력물과의 충돌이 없는지 확인하는 것은 사용자의 책임입니다."
|
||||
|
||||
msgid "Prime all printing extruders"
|
||||
msgstr "모든 활성화된 압출기 프라이밍"
|
||||
|
@ -13206,7 +13211,7 @@ msgid ""
|
|||
"triangle mesh slicing. The gap closing operation may reduce the final print "
|
||||
"resolution, therefore it is advisable to keep the value reasonably low."
|
||||
msgstr ""
|
||||
"간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메쉬 슬라이싱 중에 채워집니다. 간"
|
||||
"간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬라이싱 중에 채워집니다. 간"
|
||||
"격 채우기 작업은 최종 출력 해상도를 감소시킬 수 있으므로 값을 합리적으로 낮"
|
||||
"게 유지하는 것이 좋습니다."
|
||||
|
||||
|
@ -13493,7 +13498,7 @@ msgstr ""
|
|||
"다."
|
||||
|
||||
msgid "Preferred Branch Angle"
|
||||
msgstr "선호 가지 각도"
|
||||
msgstr "선호하는 가지 각도"
|
||||
|
||||
#. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle"
|
||||
msgid ""
|
||||
|
@ -13612,8 +13617,8 @@ msgstr "온도 제어 활성화"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
@ -13624,7 +13629,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"자동화된 챔버 온도 제어를 위해 이 옵션을 활성화합니다. 이 옵션은 "
|
||||
"\"machine_start_gcode\" 이전에 M191 명령 내보내기를 활성화합니다.\n"
|
||||
" 챔버 온도를 설정하고 온도에 도달할 때까지 기다립니다. 또한 인쇄가 끝나면 챔"
|
||||
" 챔버 온도를 설정하고 온도에 도달할 때까지 기다립니다. 또한 출력가 끝나면 챔"
|
||||
"버 히터를 끄는 M141 명령을 내보냅니다(있는 경우). \n"
|
||||
"\n"
|
||||
"이 옵션은 매크로를 통해 또는 기본적으로 M191 및 M141 명령을 지원하는 펌웨어"
|
||||
|
@ -13661,11 +13666,11 @@ msgstr ""
|
|||
"기 막힘을 방지하기 위해 챔버 온도가 낮아야 하므로 이 옵션을 비활성화(0으로 설"
|
||||
"정)해야 합니다.\n"
|
||||
"\n"
|
||||
"활성화된 경우 이 매개변수는 원하는 챔버 온도를 인쇄 시작 매크로 또는 "
|
||||
"활성화된 경우 이 매개변수는 원하는 챔버 온도를 출력 시작 매크로 또는 "
|
||||
"PRINT_START(기타 변수) CHAMBER_TEMP=[chamber_temp]와 같은 열 흡수 매크로에 전"
|
||||
"달하는 데 사용할 수 있는 Chamber_temp라는 G코드 변수도 설정합니다. 이는 프린"
|
||||
"터가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 인"
|
||||
"쇄 시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다."
|
||||
"터가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 출"
|
||||
"력 시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다."
|
||||
|
||||
msgid "Nozzle temperature for layers after the initial one"
|
||||
msgstr "초기 레이어 이후의 노즐 온도"
|
||||
|
@ -13767,8 +13772,8 @@ msgid ""
|
|||
"stabilize the chamber pressure inside the nozzle, in order to avoid "
|
||||
"appearance defects when printing objects."
|
||||
msgstr ""
|
||||
"닦기 타워는 개체를 출력할 때 외관 결함을 방지하기 위해 노즐의 잔류물을 청소하"
|
||||
"고 노즐 내부의 압력을 안정화하는 데 사용할 수 있습니다."
|
||||
"프라임 타워는 개체를 출력할 때 외관 결함을 방지하기 위해 노즐의 잔류물을 청소"
|
||||
"하고 노즐 내부의 압력을 안정화하는 데 사용할 수 있습니다."
|
||||
|
||||
msgid "Purging volumes"
|
||||
msgstr "버리기 볼륨"
|
||||
|
@ -13792,10 +13797,10 @@ msgid "Width of prime tower"
|
|||
msgstr "프라임 타워의 너비"
|
||||
|
||||
msgid "Wipe tower rotation angle"
|
||||
msgstr "닦기 타워 회전 각도"
|
||||
msgstr "프라임 타워 회전 각도"
|
||||
|
||||
msgid "Wipe tower rotation angle with respect to x-axis."
|
||||
msgstr "X축 기준의 닦기 타워 회전 각도."
|
||||
msgstr "X축 기준의 프라임 타워 회전 각도."
|
||||
|
||||
msgid "Stabilization cone apex angle"
|
||||
msgstr "안정화 원뿔 정점 각도"
|
||||
|
@ -13804,11 +13809,11 @@ msgid ""
|
|||
"Angle at the apex of the cone that is used to stabilize the wipe tower. "
|
||||
"Larger angle means wider base."
|
||||
msgstr ""
|
||||
"닦기 타워를 안정화하는 데 사용되는 원뿔 꼭대기의 각도입니다. 각도가 클수록 베"
|
||||
"이스가 넓어집니다."
|
||||
"프라임 타워를 안정화하는 데 사용되는 원뿔 꼭대기의 각도입니다. 각도가 클수록 "
|
||||
"베이스가 넓어집니다."
|
||||
|
||||
msgid "Maximum wipe tower print speed"
|
||||
msgstr "최대 와이프 타워 인쇄 속도"
|
||||
msgstr "프라임 타워 최대 속도"
|
||||
|
||||
msgid ""
|
||||
"The maximum print speed when purging in the wipe tower and printing the wipe "
|
||||
|
@ -13831,11 +13836,11 @@ msgid ""
|
|||
"For the wipe tower external perimeters the internal perimeter speed is used "
|
||||
"regardless of this setting."
|
||||
msgstr ""
|
||||
"와이프 타워에서 퍼징하고 와이프 타워 희박 레이어를 인쇄할 때 최대 인쇄 속도입"
|
||||
"와이프 타워에서 퍼징하고 와이프 타워 희박 레이어를 출력할 때 최대 출력 속도입"
|
||||
"니다. 퍼징 시 희소 충전 속도 또는 필라멘트 최대 체적 속도에서 계산된 속도가 "
|
||||
"더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n"
|
||||
"\n"
|
||||
"희소 레이어를 인쇄할 때 내부 주변 속도 또는 필라멘트 최대 체적 속도에서 계산"
|
||||
"희소 레이어를 출력할 때 내부 주변 속도 또는 필라멘트 최대 체적 속도에서 계산"
|
||||
"된 속도가 더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n"
|
||||
"\n"
|
||||
"이 속도를 높이면 타워의 안정성에 영향을 줄 수 있을 뿐만 아니라 노즐이 와이프 "
|
||||
|
@ -13851,8 +13856,8 @@ msgid ""
|
|||
"The extruder to use when printing perimeter of the wipe tower. Set to 0 to "
|
||||
"use the one that is available (non-soluble would be preferred)."
|
||||
msgstr ""
|
||||
"닦기 타워의 둘레를 출력할 때 사용하는 압출기입니다. 사용 가능한 압출기를 사용"
|
||||
"하려면 0으로 설정하세요(비가용성 재료가 적절함)."
|
||||
"프라임 타워의 둘레를 출력할 때 사용하는 압출기입니다. 사용 가능한 압출기를 사"
|
||||
"용하려면 0으로 설정하세요(비가용성 재료가 적절함)."
|
||||
|
||||
msgid "Purging volumes - load/unload volumes"
|
||||
msgstr "제거 부피 - 넣기/빼기 부피"
|
||||
|
@ -13862,7 +13867,7 @@ msgid ""
|
|||
"wipe tower. These values are used to simplify creation of the full purging "
|
||||
"volumes below."
|
||||
msgstr ""
|
||||
"이 벡터는 닦기 타워에서 사용되는 각 툴을 교체하는 데 필요한 부피을 저장합니"
|
||||
"이 벡터는 프라임 타워에서 사용되는 각 툴을 교체하는 데 필요한 부피을 저장합니"
|
||||
"다. 이러한 값은 아래의 전체 청소 부피 생성을 단순화하는 데 사용됩니다."
|
||||
|
||||
msgid ""
|
||||
|
@ -13901,10 +13906,10 @@ msgid "Maximal distance between supports on sparse infill sections."
|
|||
msgstr "드문 채우기 부분의 지지대 사이의 최대 거리."
|
||||
|
||||
msgid "Wipe tower purge lines spacing"
|
||||
msgstr "닦기 타워 청소 선 간격"
|
||||
msgstr "프라임 타워 청소 선 간격"
|
||||
|
||||
msgid "Spacing of purge lines on the wipe tower."
|
||||
msgstr "닦기 타워의 청소 선 간격입니다."
|
||||
msgstr "프라임 타워의 청소 선 간격입니다."
|
||||
|
||||
msgid "Extra flow for purging"
|
||||
msgstr "퍼지를 위한 추가 흐름"
|
||||
|
@ -13925,7 +13930,7 @@ msgid ""
|
|||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"도구가 현재 다중 도구 설정에서 사용되지 않을 때의 노즐 온도. 이는 인쇄 설정에"
|
||||
"도구가 현재 다중 도구 설정에서 사용되지 않을 때의 노즐 온도. 이는 출력 설정에"
|
||||
"서 '얼룩 방지'가 활성화된 경우에만 사용됩니다. 비활성화하려면 0으로 설정합니"
|
||||
"다."
|
||||
|
||||
|
@ -14318,7 +14323,7 @@ msgid "Has single extruder MM priming"
|
|||
msgstr "단일 압출기 MM 프라이밍 있음"
|
||||
|
||||
msgid "Are the extra multi-material priming regions used in this print?"
|
||||
msgstr "이 인쇄물에 추가 다중 재료 프라이밍 영역이 사용됩니까?"
|
||||
msgstr "이 출력물에 추가 다중 재료 프라이밍 영역이 사용됩니까?"
|
||||
|
||||
msgid "Volume per extruder"
|
||||
msgstr "압출기당 부피"
|
||||
|
@ -14550,7 +14555,7 @@ msgid "Optimizing toolpath"
|
|||
msgstr "툴 경로 최적화"
|
||||
|
||||
msgid "Slicing mesh"
|
||||
msgstr "슬라이싱 메쉬"
|
||||
msgstr "슬라이싱 메시"
|
||||
|
||||
msgid ""
|
||||
"No layers were detected. You might want to repair your STL file(s) or check "
|
||||
|
@ -14985,7 +14990,7 @@ msgid "Please find the best line on your plate"
|
|||
msgstr "당신의 플레이트에서 가장 좋은 선을 찾아보세요"
|
||||
|
||||
msgid "Please find the corner with perfect degree of extrusion"
|
||||
msgstr "사출 품질이 제일 좋은 모서리를 찾아보세요"
|
||||
msgstr "완벽한 돌출 정도를 가진 코너를 찾아주세요."
|
||||
|
||||
msgid "Input Value"
|
||||
msgstr "입력값"
|
||||
|
@ -15354,7 +15359,7 @@ msgid "ID"
|
|||
msgstr "아이디"
|
||||
|
||||
msgid "Progress"
|
||||
msgstr "진행률"
|
||||
msgstr "진행 상황"
|
||||
|
||||
msgid "Host"
|
||||
msgstr "호스트"
|
||||
|
@ -15388,7 +15393,7 @@ msgid "Unable to perform boolean operation on selected parts"
|
|||
msgstr "선택한 부품에서 부울 연산을 수행할 수 없습니다"
|
||||
|
||||
msgid "Mesh Boolean"
|
||||
msgstr "메쉬 부울"
|
||||
msgstr "메시 합집합/차집합/교집합"
|
||||
|
||||
msgid "Union"
|
||||
msgstr "합집합"
|
||||
|
@ -15566,8 +15571,8 @@ msgstr ""
|
|||
"다시 작성하시겠습니까?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||
|
@ -16630,7 +16635,7 @@ msgid ""
|
|||
"Simplify mesh feature? Right-click the model and select Simplify model."
|
||||
msgstr ""
|
||||
"모델 단순화\n"
|
||||
"메쉬 단순화 기능을 사용하여 메쉬의 삼각형 수를 줄일 수 있다는 것을 알고 계셨"
|
||||
"메시 단순화 기능을 사용하여 메시의 삼각형 수를 줄일 수 있다는 것을 알고 계셨"
|
||||
"나요? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택하세요."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Slicing Parameter Table]
|
||||
|
@ -17626,8 +17631,8 @@ msgstr ""
|
|||
#~ msgstr "드문 레이어 없음(실험적)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||
|
|
|
@ -13,7 +13,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||
"|| n%100>14) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
"X-Generator: Poedit 3.4.2\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
msgstr "Malowanie podpór"
|
||||
|
@ -740,7 +740,7 @@ msgstr "Pole do wprowadzania tekstu nie może być puste."
|
|||
|
||||
msgid "Text contains character glyph (represented by '?') unknown by font."
|
||||
msgstr ""
|
||||
"Tekst zawiera znak znaków (reprezentowany przez '?') nieznany dla czcionki."
|
||||
"Tekst zawiera glif znaku (reprezentowany przez \"?\") nieznany czcionce."
|
||||
|
||||
msgid "Text input doesn't show font skew."
|
||||
msgstr "Wprowadzanie tekstu nie pokazuje nachylenia czcionki."
|
||||
|
@ -2501,8 +2501,8 @@ msgid ""
|
|||
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
|
||||
"load or unload filaments."
|
||||
msgstr ""
|
||||
"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Rozładuj"
|
||||
"\" ,aby automatycznie załadować lub wyładować filamenty."
|
||||
"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub "
|
||||
"\"Rozładuj\" ,aby automatycznie załadować lub wyładować filamenty."
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Edytuj"
|
||||
|
@ -7715,8 +7715,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie "
|
||||
"\"Timelaps - Wieża Czyszcząca\" \n"
|
||||
|
@ -9778,10 +9778,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Unikaj ruchów nad obrysami-\n"
|
||||
"Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli "
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami"
|
||||
"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować "
|
||||
"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu "
|
||||
"bezpośredniego."
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad "
|
||||
"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można "
|
||||
"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z "
|
||||
"długości ruchu bezpośredniego."
|
||||
|
||||
msgid "mm or %"
|
||||
msgstr "mm lub %"
|
||||
|
@ -10195,7 +10195,7 @@ msgstr ""
|
|||
"można zakotwiczyć mostów. "
|
||||
|
||||
msgid "Reverse on even"
|
||||
msgstr "Odwróć na parzystych"
|
||||
msgstr "Znień kierunek na parzystych"
|
||||
|
||||
msgid "Overhang reversal"
|
||||
msgstr "Przeciwny kierunek przy nawisach"
|
||||
|
@ -10232,7 +10232,7 @@ msgid ""
|
|||
"Reverse Threshold to 0 so that all internal walls print in alternating "
|
||||
"directions on even layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
"Zastosuj logikę odwracania obwodów tylko do obwodów wewnętrznych.\n"
|
||||
"Zastosuj logikę zmiany kierunku tylko do obwodów wewnętrznych.\n"
|
||||
"\n"
|
||||
"Ten parametr znacznie redukuje napięcia działające na elementy, ponieważ są "
|
||||
"one teraz rozłożone w różnych kierunkach. Powinno to zmniejszyć "
|
||||
|
@ -10243,7 +10243,7 @@ msgstr ""
|
|||
"podpartych obszarach.\n"
|
||||
"\n"
|
||||
"Aby ten parametr był jak najskuteczniejszy, zaleca się ustawienie progu "
|
||||
"odwrócenia na 0, aby wszystkie wewnętrzne ściany były drukowane w "
|
||||
"zmiany kierunku na 0, aby wszystkie wewnętrzne ściany były drukowane w "
|
||||
"naprzemiennych kierunkach na warstwach parzystych, niezależnie od ich "
|
||||
"stopnia nawisu."
|
||||
|
||||
|
@ -10271,10 +10271,10 @@ msgid "Sacrificial layer"
|
|||
msgstr "Warstwa pomocnicza"
|
||||
|
||||
msgid "Reverse threshold"
|
||||
msgstr "Próg odwrócenia"
|
||||
msgstr "Próg zmiany kierunku"
|
||||
|
||||
msgid "Overhang reversal threshold"
|
||||
msgstr "Próg odwrócenia przy nawisach"
|
||||
msgstr "Próg zmiany kierunku przy nawisach"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
|
@ -10284,6 +10284,13 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Minimalna długość nawisu (w mm), przy której zmiana kierunku jest uznawana "
|
||||
"za użyteczną. Może być również wyrażona jako % szerokości obrysu.\n"
|
||||
"Wartość 0 powoduje zmianę kierunku na każdej parzystej warstwie, niezależnie "
|
||||
"od innych ustawień.\n"
|
||||
"\n"
|
||||
"Jeśli opcja wykrywanie ściany nawisu jest wyłączona, to ustawienie jest "
|
||||
"pomijane, a zmiana kierunku następuje na każdej parzystej warstwie."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Tryb klasyczny"
|
||||
|
@ -10352,6 +10359,12 @@ msgid ""
|
|||
"are supported by less than 13%, whether they are part of a bridge or an "
|
||||
"overhang."
|
||||
msgstr ""
|
||||
"Szybkość druku zewnętrznych widocznych obrysów mostu.\n"
|
||||
"\n"
|
||||
"Ponadto, jeśli opcja zwalniania na łukach jest wyłączona lub włączony jest "
|
||||
"klasyczny tryb druku nawisów, to szybkość druku ścian nawisu, które mają "
|
||||
"wsparcie mniejsze niż 13%, będzie taka sama, niezależnie od tego, czy są "
|
||||
"częścią mostu, czy nawisu."
|
||||
|
||||
msgid "mm/s"
|
||||
msgstr "mm/s"
|
||||
|
@ -10879,7 +10892,7 @@ msgstr ""
|
|||
"Kierunek, w którym wytłaczane są pętle ścian, patrząc z góry.\n"
|
||||
"\n"
|
||||
"Domyślnie wszystkie ściany są wytłaczane w kierunku przeciwnym do ruchu "
|
||||
"wskazówek zegara, chyba że opcja Odwróć na parzystych jest włączona. "
|
||||
"wskazówek zegara, chyba że opcja Zmień kierunek na parzystych jest włączona. "
|
||||
"Ustawienie tej opcji na coś innego niż Auto wymusi kierunek ściany, "
|
||||
"niezależnie od ustawienia Odwróć na parzystych.\n"
|
||||
"\n"
|
||||
|
@ -11848,10 +11861,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
||||
"\"close_fan_the_first_x_layers\" do maksymalnej na warstwie "
|
||||
|
@ -13749,10 +13762,10 @@ msgid ""
|
|||
"triangle mesh slicing. The gap closing operation may reduce the final print "
|
||||
"resolution, therefore it is advisable to keep the value reasonably low."
|
||||
msgstr ""
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar"
|
||||
"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć "
|
||||
"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na "
|
||||
"rozsądnie niskim poziomie."
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania "
|
||||
"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może "
|
||||
"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej "
|
||||
"wartości na rozsądnie niskim poziomie."
|
||||
|
||||
msgid "Slicing Mode"
|
||||
msgstr "Tryb cięcia"
|
||||
|
@ -14176,8 +14189,8 @@ msgstr "Aktywuj kontrolę temperatury"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
@ -14435,9 +14448,9 @@ msgid ""
|
|||
"The extruder to use when printing perimeter of the wipe tower. Set to 0 to "
|
||||
"use the one that is available (non-soluble would be preferred)."
|
||||
msgstr ""
|
||||
"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na \"Domyślny"
|
||||
"\", aby użyć tego, który jest dostępny (preferowany jest ten, w którym "
|
||||
"załadowany jest filament nierozpuszczalny)."
|
||||
"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na "
|
||||
"\"Domyślny\", aby użyć tego, który jest dostępny (preferowany jest ten, w "
|
||||
"którym załadowany jest filament nierozpuszczalny)."
|
||||
|
||||
msgid "Purging volumes - load/unload volumes"
|
||||
msgstr "Objętości czyszczenia - objętości ładowania/rozładowania"
|
||||
|
@ -16227,8 +16240,8 @@ msgstr ""
|
|||
"Czy chcesz go zastąpić?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, "
|
||||
|
@ -17262,8 +17275,8 @@ msgid ""
|
|||
"the surface quality of your overhangs?"
|
||||
msgstr ""
|
||||
"Odwróć na nieparzystych\n"
|
||||
"Czy wiesz, że funkcja <b>Odwróć na nieparzystych</b> może znacząco poprawić "
|
||||
"jakość powierzchni twoich występów?"
|
||||
"Czy wiesz, że funkcja <b>Zmień kierunek na nieparzystych</b> może znacząco "
|
||||
"poprawić jakość powierzchni twoich występów?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Cut Tool]
|
||||
msgid ""
|
||||
|
@ -17691,8 +17704,8 @@ msgstr ""
|
|||
#~ "(działają one jak rodzaj bariery).\n"
|
||||
#~ "\n"
|
||||
#~ "Nie spowoduje to również zmiany ustawień wentylatora w początkowym G-"
|
||||
#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-code"
|
||||
#~ "\".\n"
|
||||
#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-"
|
||||
#~ "code\".\n"
|
||||
#~ "\n"
|
||||
#~ "Ustaw 0, aby wyłączyć tę funkcję."
|
||||
|
||||
|
@ -17807,8 +17820,8 @@ msgstr ""
|
|||
#~ "\n"
|
||||
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
|
||||
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing"
|
||||
#~ "\".\n"
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt "
|
||||
#~ "\"pillowing\".\n"
|
||||
#~ "\n"
|
||||
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
|
||||
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
|
||||
|
@ -19175,8 +19188,8 @@ msgstr ""
|
|||
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
||||
#~ "print the object without elevation."
|
||||
#~ msgstr ""
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
|
||||
#~ "\", aby wydrukować model bez podniesienia."
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
|
||||
#~ "modelu\", aby wydrukować model bez podniesienia."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The endings of the support pillars will be deployed on the gap between "
|
||||
|
|
|
@ -5,18 +5,18 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.2.0-beta2\n"
|
||||
"Project-Id-Version: OrcaSlicer V2.2.0 Official Release\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"PO-Revision-Date: 2024-09-25 22:36+0700\n"
|
||||
"PO-Revision-Date: 2024-11-30 20:56+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Andylg <andylg@yandex.ru>\n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
|
@ -101,8 +101,9 @@ msgstr "Позволяет рисовать на выбранных гранях
|
|||
msgid "Highlight faces according to overhang angle."
|
||||
msgstr "Выделение граней по углу свеса."
|
||||
|
||||
# это в рисование поддержки идет после - Выделение граней по углу свеса.
|
||||
msgid "No auto support"
|
||||
msgstr "Откл. автоподдержку"
|
||||
msgstr "Автоподдержка отключена."
|
||||
|
||||
msgid "Support Generated"
|
||||
msgstr "Поддержка сгенерирована"
|
||||
|
@ -361,17 +362,17 @@ msgid ""
|
|||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
msgstr ""
|
||||
"Нажмите, чтобы перевернуть секущую плоскость\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость"
|
||||
"Нажмите, чтобы перевернуть секущую плоскость.\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость."
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane\n"
|
||||
"Right-click a part to assign it to the other side"
|
||||
msgstr ""
|
||||
"Нажмите, чтобы перевернуть секущую плоскость\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость\n"
|
||||
"Правая кнопка мыши на части модели для переназначения стороны"
|
||||
"Нажмите, чтобы перевернуть секущую плоскость.\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость.\n"
|
||||
"Для переназначения стороны части модели используйте правую кнопку мыши."
|
||||
|
||||
msgid "Move cut plane"
|
||||
msgstr "Перемещение секущей плоскости"
|
||||
|
@ -507,16 +508,16 @@ msgstr "Обнаружены недопустимые соединения"
|
|||
#, c-format, boost-format
|
||||
msgid "%1$d connector is out of cut contour"
|
||||
msgid_plural "%1$d connectors are out of cut contour"
|
||||
msgstr[0] "%1$d соединение выходит за контур модели"
|
||||
msgstr[1] "%1$d соединения выходит за контур модели"
|
||||
msgstr[2] "%1$d соединений выходит за контур модели"
|
||||
msgstr[0] "%1$d соединение выходит за контур модели."
|
||||
msgstr[1] "%1$d соединения выходит за контур модели."
|
||||
msgstr[2] "%1$d соединений выходит за контур модели."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%1$d connector is out of object"
|
||||
msgid_plural "%1$d connectors are out of object"
|
||||
msgstr[0] "%1$d соединение находится за пределами модели"
|
||||
msgstr[1] "%1$d соединения находится за пределами модели"
|
||||
msgstr[2] "%1$d соединений находится за пределами модели"
|
||||
msgstr[0] "%1$d соединение находится за пределами модели."
|
||||
msgstr[1] "%1$d соединения находится за пределами модели."
|
||||
msgstr[2] "%1$d соединений находится за пределами модели."
|
||||
|
||||
msgid "Some connectors are overlapped"
|
||||
msgstr "Имеются пересекающие соединения"
|
||||
|
@ -605,7 +606,6 @@ msgstr "Показывать каркас"
|
|||
msgid "%1%"
|
||||
msgstr "%1%"
|
||||
|
||||
# ???
|
||||
msgid "Can't apply when process preview."
|
||||
msgstr "Невозможно применить при предпросмотре нарезки."
|
||||
|
||||
|
@ -1247,10 +1247,10 @@ msgstr ""
|
|||
"Блокировка/разблокировка угла поворота при перетаскивании над поверхностью."
|
||||
|
||||
msgid "Mirror vertically"
|
||||
msgstr "Зеркалировать по вертикали"
|
||||
msgstr "Отзеркалить по вертикали"
|
||||
|
||||
msgid "Mirror horizontally"
|
||||
msgstr "Зеркалировать по горизонтали"
|
||||
msgstr "Отзеркалить по горизонтали"
|
||||
|
||||
#. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else).
|
||||
msgid "Change SVG Type"
|
||||
|
@ -2446,11 +2446,11 @@ msgstr "Автодозаправка"
|
|||
msgid "AMS not connected"
|
||||
msgstr "АСПП не подключена"
|
||||
|
||||
# ???? кнопка в интерфейсе? Extrude - Выдавить - Load
|
||||
# ??? кнопка в интерфейсе? Extrude - Выдавить - Load
|
||||
msgid "Load"
|
||||
msgstr "Выдавить"
|
||||
|
||||
# ???? кнопка в интерфейсе? retract - Втянуть - Unload (Выгрузить, Вырузка)
|
||||
# ??? кнопка в интерфейсе? retract - Втянуть - Unload (Выгрузить, Вырузка)
|
||||
msgid "Unload"
|
||||
msgstr "Втянуть"
|
||||
|
||||
|
@ -2483,6 +2483,7 @@ msgstr "Отменить калибровку"
|
|||
msgid "Idling..."
|
||||
msgstr "Простой..."
|
||||
|
||||
# При выгрузке/загрузке прутка справа отображается процесс
|
||||
msgid "Heat the nozzle"
|
||||
msgstr "Нагрев сопла"
|
||||
|
||||
|
@ -3877,6 +3878,7 @@ msgstr "Пауза при неисправности температуры ст
|
|||
msgid "Filament unloading"
|
||||
msgstr "Выгрузка прутка"
|
||||
|
||||
# ???
|
||||
msgid "Skip step pause"
|
||||
msgstr "Пропуск команды паузы"
|
||||
|
||||
|
@ -3889,6 +3891,7 @@ msgstr "Калибровка шума двигателя"
|
|||
msgid "Paused due to AMS lost"
|
||||
msgstr "Печать приостановлена из-за потери связи с АСПП"
|
||||
|
||||
# ??? Печать приостановлена из-за низкой скорости вентилятора радиатора головы
|
||||
msgid "Paused due to low speed of the heat break fan"
|
||||
msgstr ""
|
||||
"Печать приостановлена из-за низкой скорости вентилятора обдува радиатора "
|
||||
|
@ -4610,7 +4613,7 @@ msgstr "Авторизация"
|
|||
msgid "Preview"
|
||||
msgstr "Предпросмотр нарезки"
|
||||
|
||||
# ??? Управ. принтерами, Управ. устройствами, менеджер устройств, Диспетчер устройств, Принтеры
|
||||
# ??? Управ. принтерами, менеджер принтеров, Диспетчер принтеров
|
||||
msgid "Multi-device"
|
||||
msgstr "Принтеры"
|
||||
|
||||
|
@ -5070,7 +5073,7 @@ msgid "File is missing"
|
|||
msgstr "Файл отсутствует"
|
||||
|
||||
msgid "The project is no longer available."
|
||||
msgstr "Проект больше не доступен."
|
||||
msgstr "Проект больше недоступен."
|
||||
|
||||
msgid "Filament Settings"
|
||||
msgstr "Настройки прутка"
|
||||
|
@ -5152,7 +5155,7 @@ msgstr ""
|
|||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "Принтер вышел из системы и не может подключиться."
|
||||
|
||||
# ??? Трансляция, видеотрансляция остановлена
|
||||
# ??? видеотрансляция остановлена
|
||||
msgid "Stopped."
|
||||
msgstr "Трансляция с камеры остановлена."
|
||||
|
||||
|
@ -5784,8 +5787,8 @@ msgstr "Безопасное извлечение устройства."
|
|||
msgid "%1$d Object has custom supports."
|
||||
msgid_plural "%1$d Objects have custom supports."
|
||||
msgstr[0] "%1$d модель имеет пользовательскую поддержку."
|
||||
msgstr[1] "%1$d модели имеют пользовательские поддержки."
|
||||
msgstr[2] "%1$d моделей имеют пользовательские поддержки."
|
||||
msgstr[1] "%1$d модели имеют пользовательскую поддержку."
|
||||
msgstr[2] "%1$d моделей имеют пользовательскую поддержку."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%1$d Object has color painting."
|
||||
|
@ -5958,7 +5961,7 @@ msgid "View all object's settings"
|
|||
msgstr "Просмотр всех настроек модели"
|
||||
|
||||
msgid "Material settings"
|
||||
msgstr "Параметры материала"
|
||||
msgstr "Настройки материала"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "Удалить текущую печатную пластину (кроме последней)"
|
||||
|
@ -6120,7 +6123,7 @@ msgid ""
|
|||
"nozzle hardness of the printer. Please replace the hardened nozzle or "
|
||||
"filament, otherwise, the nozzle will be attrited or damaged."
|
||||
msgstr ""
|
||||
"Твердость сопла, установленного по умолчанию, не достаточна для печати "
|
||||
"Твердость сопла, установленного по умолчанию, недостаточна для печати "
|
||||
"данной пластиковой нитью. Замените сопло на закалённое или смените "
|
||||
"пластиковую нить. В противном случае сопло будет изношено или повреждено."
|
||||
|
||||
|
@ -6510,15 +6513,17 @@ msgid ""
|
|||
"will be kept. You may fix the meshes and try again."
|
||||
msgstr ""
|
||||
"Невозможно выполнить булеву операцию над сетками модели. Будут сохранены "
|
||||
"только положительные части. Вы можете исправить сетки и попробовать снова."
|
||||
"только положительные части. Попробуйте починить сетку модели и попробовать "
|
||||
"снова."
|
||||
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" is empty."
|
||||
msgstr "Причина: часть \"%1%\" пустая."
|
||||
|
||||
# ??? не формирует объем, не имеет замкнутой геометрии
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" does not bound a volume."
|
||||
msgstr "Причина: часть \"%1%\" не ограничивает объём."
|
||||
msgstr "Причина: часть \"%1%\" не формирует замкнутый объём."
|
||||
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" has self intersection."
|
||||
|
@ -6532,6 +6537,8 @@ msgid ""
|
|||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"Невозможно выполнить булеву операцию над сетками модели. Будут "
|
||||
"экспортированы только положительные части."
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to store original SVGs with their local paths into the "
|
||||
|
@ -7091,14 +7098,13 @@ msgstr "Создать принтер"
|
|||
msgid "The selected preset is null!"
|
||||
msgstr "Выбранный профиль пуст!"
|
||||
|
||||
# ?????? В двух местах - в одном месте кнопка в другом Конечный слой
|
||||
# ?????? В двух местах - в одном месте кнопка в другом Конечный слой. В V2.2.0beta2 пока не исправлено
|
||||
msgid "End"
|
||||
msgstr "End"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr "Настройка"
|
||||
|
||||
# ??? layer?
|
||||
msgid "Other layer filament sequence"
|
||||
msgstr "Последовательность прутков на других слоях"
|
||||
|
||||
|
@ -7801,8 +7807,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"При записи таймлапса без видимости головы рекомендуется добавить «Черновая "
|
||||
"башня таймлапса». \n"
|
||||
|
@ -7956,7 +7962,7 @@ msgid "Flow ratio and Pressure Advance"
|
|||
msgstr "Коэффициент потока и Pressure Advance"
|
||||
|
||||
msgid "Print chamber temperature"
|
||||
msgstr "Температура в камере"
|
||||
msgstr "Температура в термокамере при печати"
|
||||
|
||||
msgid "Print temperature"
|
||||
msgstr "Температура печати"
|
||||
|
@ -8061,7 +8067,7 @@ msgstr ""
|
|||
"расчётное время печати слоя меньше установленного значения."
|
||||
|
||||
msgid "Auxiliary part cooling fan"
|
||||
msgstr "Вспомогательный вентилятор для охлаждения моделей"
|
||||
msgstr "Вспомогательный вентилятор модели"
|
||||
|
||||
msgid "Exhaust fan"
|
||||
msgstr "Вытяжной вентилятор"
|
||||
|
@ -8192,10 +8198,6 @@ msgstr "Диаметр сопла"
|
|||
msgid "Wipe tower"
|
||||
msgstr "Черновая башня"
|
||||
|
||||
# ????2 Параметры замены материала в одноэкструдерном ММ принтере
|
||||
# ???? Параметры экструдера в одноэкструдерном мультиматериальном принтере
|
||||
# ???? Параметры для экструдера в одноэкструдерном мультиматериальном принтере
|
||||
# ???? Параметры для одноэкструдерной мультиматериальном печати
|
||||
msgid "Single extruder multi-material parameters"
|
||||
msgstr "Параметры одноэкструдерного мультиматериального принтера"
|
||||
|
||||
|
@ -8772,7 +8774,9 @@ msgid ""
|
|||
"objects, it just orientates the selected ones.Otherwise, it will orientates "
|
||||
"all objects in the current disk."
|
||||
msgstr ""
|
||||
"Автоориентация моделей (ориентация выбранного, иначе всего на текущем столе)"
|
||||
"Автоориентация выбранных или всех моделей. Если выбраны отдельные модели, "
|
||||
"ориентация будет применена только к ним; в противном случае ко всем моделям "
|
||||
"на текущем столе."
|
||||
|
||||
msgid "Shift+Tab"
|
||||
msgstr "Shift+Tab"
|
||||
|
@ -8940,10 +8944,10 @@ msgid "Select the object/part and press space to change the name"
|
|||
msgstr "Выберите модель/часть и нажмите пробел, чтобы изменить имя"
|
||||
|
||||
msgid "Mouse click"
|
||||
msgstr "Щелчок кнопкой мыши"
|
||||
msgstr "Левая кнопка мыши"
|
||||
|
||||
msgid "Select the object/part and mouse click to change the name"
|
||||
msgstr "Выберите модель/часть и нажмите клавишу мыши, чтобы изменить имя"
|
||||
msgstr "Выберите модель/часть и нажмите левую клавишу мыши, чтобы изменить имя"
|
||||
|
||||
msgid "Objects List"
|
||||
msgstr "Список моделей"
|
||||
|
@ -10133,7 +10137,6 @@ msgstr ""
|
|||
msgid "Cooling overhang threshold"
|
||||
msgstr "Порог включения обдува на нависаниях"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
|
@ -10394,6 +10397,7 @@ msgstr "Порог для реверса"
|
|||
msgid "Overhang reversal threshold"
|
||||
msgstr "Порог разворота на свесах"
|
||||
|
||||
# ?????
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Number of mm the overhang need to be for the reversal to be considered "
|
||||
|
@ -10402,6 +10406,14 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Величина свеса периметра при которой она считается достаточной для активации "
|
||||
"функции реверса печати нависаний. Может быть в мм или в % от ширины "
|
||||
"периметра.\n"
|
||||
"При нуле разворот будет на каждом чётном слое, независимо от величина "
|
||||
"свеса.\n"
|
||||
"Если «Определять нависающие периметры» не включено, этот параметр "
|
||||
"игнорируется, и разворот происходит на каждом чётном слое без "
|
||||
"исключений."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Классический режим"
|
||||
|
@ -10928,7 +10940,7 @@ msgid ""
|
|||
"\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Последовательность печати внутреннего/внешнего периметров.\n"
|
||||
"Последовательность печати внутреннего и внешнего периметров.\n"
|
||||
"\n"
|
||||
"Используйте порядок печати периметров «Внутренний/Внешний» для получения "
|
||||
"наилучших нависаний. Однако этот вариант приводит к небольшому снижению "
|
||||
|
@ -11117,7 +11129,6 @@ msgstr ""
|
|||
"Используется только в качестве визуальной помощи в пользовательском "
|
||||
"интерфейсе"
|
||||
|
||||
# ??? Смещение экструдера по осям X/Y
|
||||
msgid "Extruder offset"
|
||||
msgstr "Смещение координат экструдера"
|
||||
|
||||
|
@ -11834,8 +11845,8 @@ msgstr ""
|
|||
"две ближайшие линии заполнения с коротким отрезком периметра. Если не "
|
||||
"найдено такого отрезка периметра короче этого параметра, линия заполнения "
|
||||
"соединяется с отрезком периметра только с одной стороны, а длина отрезка "
|
||||
"периметра ограничена значением «Длина привязок разреженного "
|
||||
"заполнения» (infill_anchor), но не больше этого параметра.\n"
|
||||
"периметра ограничена значением «Длина привязок разреженного заполнения» "
|
||||
"(infill_anchor), но не больше этого параметра.\n"
|
||||
"Если установить 0, то будет использоваться старый алгоритм для соединения "
|
||||
"заполнения, который даёт такой же результат, как и при значениях 1000 и 0."
|
||||
|
||||
|
@ -11900,7 +11911,7 @@ msgstr "Вкл. ограничение ускорения зигзагов"
|
|||
|
||||
msgid "Klipper's max_accel_to_decel will be adjusted automatically"
|
||||
msgstr ""
|
||||
"Значение ограничение ускорения зигзагов (max_accel_to_decel) в Klipper будет "
|
||||
"Значение Klipper-а ограничение ускорения зигзагов (max_accel_to_decel) будет "
|
||||
"скорректировано автоматически.\n"
|
||||
"\n"
|
||||
"Параметр предназначен для ограничения влияния экстремальных переходов от "
|
||||
|
@ -11914,8 +11925,8 @@ msgstr "Ограничение ускорение зигзагов"
|
|||
msgid ""
|
||||
"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration"
|
||||
msgstr ""
|
||||
"Значение ограничение ускорения зигзагов (max_accel_to_decel) в Klipper будет "
|
||||
"скорректировано на заданный процент ускорения."
|
||||
"Значение Klipper-а ограничение ускорения зигзагов (max_accel_to_decel) будет "
|
||||
"скорректировано на данный процент ускорения."
|
||||
|
||||
msgid "Jerk of outer walls"
|
||||
msgstr "Рывок для внешних периметров."
|
||||
|
@ -11990,17 +12001,17 @@ msgstr "Полная скорость вентилятора на слое"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Скорость вентилятора будет нарастать линейно от нуля на слое "
|
||||
"\"close_fan_the_first_x_layers\" до максимума на слое \"full_fan_speed_layer"
|
||||
"\". Значение \"full_fan_speed_layer\" будет игнорироваться, если оно меньше "
|
||||
"значения \"close_fan_the_first_x_layers\", в этом случае вентилятор будет "
|
||||
"работать на максимально допустимой скорости на слое "
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" до максимума на слое "
|
||||
"\"full_fan_speed_layer\". Значение \"full_fan_speed_layer\" будет "
|
||||
"игнорироваться, если оно меньше значения \"close_fan_the_first_x_layers\", в "
|
||||
"этом случае вентилятор будет работать на максимально допустимой скорости на "
|
||||
"слое \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "слой"
|
||||
|
@ -12088,7 +12099,7 @@ msgid ""
|
|||
"printed more slowly"
|
||||
msgstr ""
|
||||
"Скорость заполнения пробелов. Пробелы обычно имеют неравномерную ширину "
|
||||
"линии и должен печататься медленнее."
|
||||
"линии и должны печататься медленнее."
|
||||
|
||||
msgid "Precise Z height"
|
||||
msgstr "Точная высота по Z"
|
||||
|
@ -12311,7 +12322,7 @@ msgstr "Включите, если хотите использовать нес
|
|||
|
||||
# ?????? Название моделей
|
||||
msgid "Label objects"
|
||||
msgstr "Помечать объекты"
|
||||
msgstr "Помечать модели"
|
||||
|
||||
# ??????
|
||||
msgid ""
|
||||
|
@ -12321,7 +12332,8 @@ msgid ""
|
|||
"setup and Wipe into Object / Wipe into Infill."
|
||||
msgstr ""
|
||||
"Отвечает за присвоение уникальных меток или названий каждой модели или "
|
||||
"элементу, что позволяет отменять печать любого из них по вашему выбору."
|
||||
"элементу, что позволяет отменять печать любого из них по вашему выбору.\n"
|
||||
"\n"
|
||||
"Включите эту опцию, чтобы добавить комментарии в G-код с указанием того, к "
|
||||
"какой модели он принадлежит, что полезно для плагина Octoprint CancelObject. "
|
||||
"Эта настройка не совместима с настройкой «Одноэкструдерный "
|
||||
|
@ -12329,11 +12341,11 @@ msgstr ""
|
|||
"модели»."
|
||||
|
||||
msgid "Exclude objects"
|
||||
msgstr "Исключить модели"
|
||||
msgstr "Исключение моделей"
|
||||
|
||||
msgid "Enable this option to add EXCLUDE OBJECT command in g-code"
|
||||
msgstr ""
|
||||
"Включите эту опцию, чтобы добавить команду EXCLUDE OBJECT (исключения "
|
||||
"Включите эту опцию, чтобы добавить команду EXCLUDE OBJECT (исключение "
|
||||
"моделей) в G-код для принтера с прошивкой Klipper."
|
||||
|
||||
msgid "Verbose G-code"
|
||||
|
@ -13151,7 +13163,7 @@ msgstr "Расширение первого слоя"
|
|||
msgid "Expand the first raft or support layer to improve bed plate adhesion"
|
||||
msgstr ""
|
||||
"Расширение первого слоя подложки или поддержки в плоскости XY для улучшения "
|
||||
"адгезии с материалами склонными к отлипанию и закручиванию."
|
||||
"адгезии при печати материалами склонными к отлипанию и закручиванию."
|
||||
|
||||
msgid "Raft layers"
|
||||
msgstr "Слоёв в подложке"
|
||||
|
@ -13542,7 +13554,7 @@ msgid ""
|
|||
"scarf."
|
||||
msgstr ""
|
||||
"Длина клиновидного шва. Установка этого параметра на ноль фактически "
|
||||
"отключает шарф."
|
||||
"отключает клиновидный шов."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Шагов клиновидного шва"
|
||||
|
@ -13816,9 +13828,9 @@ msgid ""
|
|||
"zero value."
|
||||
msgstr ""
|
||||
"Разница температур, которая будет применяться, когда экструдер не активен. "
|
||||
"Значение не используется, если для параметра «Температура "
|
||||
"ожидания» ('idle_temperature') в настройках пластиковой нити установлено "
|
||||
"ненулевое значение."
|
||||
"Значение не используется, если для параметра «Температура ожидания» "
|
||||
"('idle_temperature') в настройках пластиковой нити установлено ненулевое "
|
||||
"значение."
|
||||
|
||||
msgid "Preheat time"
|
||||
msgstr "Время преднагрева"
|
||||
|
@ -14375,8 +14387,8 @@ msgstr "Вкл. контроль температуры"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
@ -14832,9 +14844,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Движок классического генератора периметров создаёт их с постоянной шириной "
|
||||
"экструзии, а для очень тонких участков используется параметр «Заполнять "
|
||||
"щели». Движок Arachne же создаёт периметры с переменной шириной экструзии, "
|
||||
"что позволяет печатать без щелей, лучше пропечатывать мелкие элементы (при "
|
||||
"условии, что у вас правильно откалиброван LA/PA)."
|
||||
"щели».\n"
|
||||
"\n"
|
||||
"Движок Arachne же создаёт периметры с переменной шириной экструзии, что "
|
||||
"позволяет печатать без щелей, лучше пропечатывать мелкие элементы (при "
|
||||
"условии, что у вас правильно откалиброван LA/PA). Этот параметр также влияет "
|
||||
"на концентрическое заполнение."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Классический"
|
||||
|
@ -16288,8 +16303,9 @@ msgstr "Пересечение"
|
|||
msgid "Source Volume"
|
||||
msgstr "Исходный объём"
|
||||
|
||||
# ???
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
msgstr "Объём инструмента"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr "Главный"
|
||||
|
@ -16455,8 +16471,8 @@ msgstr ""
|
|||
"Хотите перезаписать его?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n"
|
||||
|
@ -17439,7 +17455,7 @@ msgid ""
|
|||
"Auxiliary fan\n"
|
||||
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
|
||||
msgstr ""
|
||||
"Вспомогательный вентилятор для охлаждения моделей\n"
|
||||
"Вспомогательный вентилятор модели\n"
|
||||
"Знаете ли вы, что OrcaSlicer поддерживает управление вспомогательным "
|
||||
"вентилятором для охлаждения моделей?"
|
||||
|
||||
|
|
|
@ -4625,7 +4625,7 @@ msgstr "Вигляд зверху"
|
|||
|
||||
#. TRN To be shown in the main menu View->Bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Ніз"
|
||||
msgstr "Низ"
|
||||
|
||||
msgid "Bottom View"
|
||||
msgstr "Вигляд знизу"
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,6 +4,10 @@
|
|||
"force_update": "0",
|
||||
"description": "Comgrow configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Comgrow T300",
|
||||
"sub_path": "machine/Comgrow T300.json"
|
||||
},
|
||||
{
|
||||
"name": "Comgrow T500",
|
||||
"sub_path": "machine/Comgrow T500.json"
|
||||
|
@ -18,6 +22,10 @@
|
|||
"name": "fdm_process_comgrow_common",
|
||||
"sub_path": "process/fdm_process_comgrow_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Optimal @Comgrow T300 - official",
|
||||
"sub_path": "process/0.20mm Optimal @Comgrow T300 0.4 - official.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Comgrow T500",
|
||||
"sub_path": "process/0.16mm Opitmal @Comgrow T500 0.6.json"
|
||||
|
@ -100,6 +108,10 @@
|
|||
{
|
||||
"name": "Comgrow Generic ABS",
|
||||
"sub_path": "filament/Comgrow Generic ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Comgrow T300 PLA",
|
||||
"sub_path": "filament/Comgrow T300 PLA.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
|
@ -111,6 +123,10 @@
|
|||
"name": "fdm_comgrow_common",
|
||||
"sub_path": "machine/fdm_comgrow_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Comgrow T300 0.4 nozzle",
|
||||
"sub_path": "machine/Comgrow T300 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Comgrow T500 0.4 nozzle",
|
||||
"sub_path": "machine/Comgrow T500 0.4 nozzle.json"
|
||||
|
|
BIN
resources/profiles/Comgrow/Comgrow T300_cover.png
Normal file
BIN
resources/profiles/Comgrow/Comgrow T300_cover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6 MiB |
BIN
resources/profiles/Comgrow/comgrow_t300_buildplate_model.stl
Normal file
BIN
resources/profiles/Comgrow/comgrow_t300_buildplate_model.stl
Normal file
Binary file not shown.
BIN
resources/profiles/Comgrow/comgrow_t300_buildplate_texture.png
Normal file
BIN
resources/profiles/Comgrow/comgrow_t300_buildplate_texture.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
48
resources/profiles/Comgrow/filament/Comgrow T300 PLA.json
Normal file
48
resources/profiles/Comgrow/filament/Comgrow T300 PLA.json
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Comgrow T300 PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Comgrow Generic PLA",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["24"],
|
||||
"filament_retraction_length": ["0.5"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Comgrow T300 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"50"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Comgrow T300 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_comgrow_common",
|
||||
"printer_model": "Comgrow T300",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "350",
|
||||
"thumbnails": [
|
||||
"64x64",
|
||||
"160x160",
|
||||
"176x176"
|
||||
],
|
||||
"thumbnails_format": "JPG",
|
||||
"before_layer_change_gcode": "",
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"12000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"12000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"50"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.25"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"3"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"retract_lift_below": [
|
||||
"348"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"50"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"50"
|
||||
],
|
||||
"machine_start_gcode": "G28\nG90\nG1 X0 F3000\nG1 Z0.300 F600\nG1 Y0 F3000\nG91 \nG1 X-2 Y-6 F3000\nSTART_PRINT\nM400\nG90\nM83\nG90\nG1 X0 F3000\nG1 Z0.300 F600\nG1 Y0 F3000\nG91 \nG1 X-2 Y-6 F3000\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\nM109 S[nozzle_temperature_initial_layer];wait for extruder temp\nG1 E25 F480\nG4 P1000\nG1 E-0.200 Z5 F600\nG1 X90.000 F6000\nG1 Z-5.200 F600\nG1 X60.000 E14.4 F3000\nG1 X60.000 E9.6 F3000\nG1 Y1 E0.16 F3000\nG1 X-60.000 E9.6 F3000\nG1 X-60.000 E14.4 F3000\nG1 Y1 E0.16 F3000\nG1 X60.000 E14.4 F3000\nG1 X60.000 E9.6 F3000\nG1 E-0.100 Z0.5 F600\nM400\n\n",
|
||||
"machine_end_gcode": "END_PRINT\n"
|
||||
}
|
12
resources/profiles/Comgrow/machine/Comgrow T300.json
Normal file
12
resources/profiles/Comgrow/machine/Comgrow T300.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Comgrow T300",
|
||||
"model_id": "Comgrow_T300",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Comgrow",
|
||||
"bed_model": "comgrow_t300_buildplate_model.stl",
|
||||
"bed_texture": "comgrow_t300_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Comgrow T300 PLA"
|
||||
}
|
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Optimal @Comgrow T300 0.4 - official",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_comgrow_common",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.2",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "50",
|
||||
"brim_width": "5",
|
||||
"brim_type": "outer_only",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"default_acceleration": "8000",
|
||||
"print_sequence": "by layer",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"wall_infill_order": "outer wall/inner wall/infill",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "10%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.5",
|
||||
"infill_wall_overlap": "25%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_spacing": "0.25",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "10",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"wall_loops": "2",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "3",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "1",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "tree(auto)",
|
||||
"support_style": "snug",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.15",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.45",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "3",
|
||||
"support_interface_bottom_layers": "-1",
|
||||
"support_interface_spacing": "0.2",
|
||||
"support_interface_speed": "100%",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "0.2",
|
||||
"support_speed": "80",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "60%",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "1",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"top_surface_line_width": "0.45",
|
||||
"top_shell_layers": "4",
|
||||
"top_shell_thickness": "0.8",
|
||||
"initial_layer_speed": "30",
|
||||
"initial_layer_infill_speed": "60",
|
||||
"initial_layer_travel_speed": "60%",
|
||||
"outer_wall_speed": "150",
|
||||
"inner_wall_speed": "300",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"top_surface_speed": "180",
|
||||
"gap_infill_speed": "150",
|
||||
"sparse_infill_speed": "300",
|
||||
"travel_speed": "350",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"seam_gap": "5%",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"inner_wall_acceleration": "6000",
|
||||
"initial_layer_acceleration": "5000",
|
||||
"top_surface_acceleration": "6000",
|
||||
"travel_acceleration": "8000",
|
||||
"wall_generator": "classic",
|
||||
"slow_down_layers": "3",
|
||||
"bottom_solid_infill_flow_ratio": "1.25",
|
||||
"accel_to_decel_enable": "0",
|
||||
"accel_to_decel_factor": "30%",
|
||||
"skirt_speed": "0",
|
||||
"gcode_label_objects": "1",
|
||||
"exclude_object": "1",
|
||||
"compatible_printers": [
|
||||
"Comgrow T300 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -88,10 +88,10 @@
|
|||
"2"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.04"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -88,10 +88,10 @@
|
|||
"2"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.12"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -88,10 +88,10 @@
|
|||
"2"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -81,10 +81,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.04"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -81,10 +81,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.12"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -81,10 +81,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -81,10 +81,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.04"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -81,10 +81,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.12"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -81,10 +81,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -78,10 +78,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.04"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -78,10 +78,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.12"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -79,10 +79,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -84,10 +84,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.04"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
|
|
|
@ -84,10 +84,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.12"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
|
|
|
@ -84,10 +84,10 @@
|
|||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
"0.5"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
"0.5"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
"0.5"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
"0.56"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.16"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"filament_max_volumetric_speed": [
|
||||
"1.35"
|
||||
"1.8"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1.15"
|
||||
|
@ -28,7 +28,13 @@
|
|||
"210"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0"
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"20"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"support_speed": "60",
|
||||
"small_perimeter_speed": "40",
|
||||
"sparse_infill_speed": "100",
|
||||
"internal_solid_infill_speed": "140",
|
||||
"internal_solid_infill_speed": "120",
|
||||
"top_surface_speed": "60",
|
||||
"gap_infill_speed": "40",
|
||||
"default_acceleration": "1500",
|
||||
|
|
|
@ -110,6 +110,18 @@
|
|||
"name": "0.25mm Quality Speed @RatRig V-Core 4 0.5",
|
||||
"sub_path": "process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json"
|
||||
},
|
||||
{
|
||||
"name": "0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8",
|
||||
"sub_path": "process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Big @RatRig V-Core 4 HYBRID 0.8",
|
||||
"sub_path": "process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.8",
|
||||
"sub_path": "process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Quality Speed @RatRig V-Core 4 0.6",
|
||||
"sub_path": "process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json"
|
||||
|
@ -204,6 +216,10 @@
|
|||
"name": "RatRig Generic PLA-CF",
|
||||
"sub_path": "filament/RatRig Generic PLA-CF.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig Generic PCTG",
|
||||
"sub_path": "filament/RatRig Generic PCTG.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig Generic PETG",
|
||||
"sub_path": "filament/RatRig Generic PETG.json"
|
||||
|
@ -247,6 +263,26 @@
|
|||
{
|
||||
"name": "RatRig PunkFil PETG",
|
||||
"sub_path": "filament/RatRig PunkFil PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig BigNozzle ABS",
|
||||
"sub_path": "filament/RatRig BigNozzle ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig BigNozzle ASA",
|
||||
"sub_path": "filament/RatRig BigNozzle ASA.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig BigNozzle PLA",
|
||||
"sub_path": "filament/RatRig BigNozzle PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig BigNozzle PETG",
|
||||
"sub_path": "filament/RatRig BigNozzle PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "RatRig BigNozzle PCTG",
|
||||
"sub_path": "filament/RatRig BigNozzle PCTG.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
|
|
54
resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json
Normal file
54
resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "RatRig BigNozzle ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.03"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"108"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"290"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"2"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
]
|
||||
}
|
54
resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json
Normal file
54
resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB98",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "RatRig BigNozzle ASA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"19"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.033"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"108"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"290"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"2"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"28"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,69 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFC99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "RatRig BigNozzle PCTG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"50"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"15"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.29"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.045"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"90"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,63 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFG99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "RatRig BigNozzle PETG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.045"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"230"
|
||||
]
|
||||
}
|
39
resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json
Normal file
39
resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "RatRig BigNozzle PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.05"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"210"
|
||||
]
|
||||
}
|
66
resources/profiles/Ratrig/filament/RatRig Generic PCTG.json
Normal file
66
resources/profiles/Ratrig/filament/RatRig Generic PCTG.json
Normal file
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFC99",
|
||||
"setting_id": "GFCA04",
|
||||
"name": "RatRig Generic PCTG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.29"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.045"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"90"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "RatRig V-Core 4 HYBRID 300 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "RatRig V-Core 4 HYBRID 300",
|
||||
"printer_variant": "0.8",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"machine_max_speed_x": ["500", "500"],
|
||||
"machine_max_speed_y": ["500", "500"],
|
||||
"machine_max_speed_z": ["200", "200"],
|
||||
"machine_max_speed_e": ["120", "120"],
|
||||
"machine_max_acceleration_x": ["20000", "20000"],
|
||||
"machine_max_acceleration_y": ["20000", "20000"],
|
||||
"machine_max_acceleration_z": ["200", "200"],
|
||||
"machine_max_acceleration_e": ["5000", "5000"],
|
||||
"machine_max_acceleration_extruding": ["20000", "20000"],
|
||||
"machine_max_acceleration_retracting": ["20000", "20000"],
|
||||
"machine_max_acceleration_travel": ["20000", "20000"],
|
||||
"machine_max_jerk_x": ["5", "5"],
|
||||
"machine_max_jerk_y": ["5", "5"],
|
||||
"machine_max_jerk_z": ["0.4", "0.4"],
|
||||
"machine_max_jerk_e": ["5", "5"],
|
||||
"min_layer_height": ["0.12"],
|
||||
"max_layer_height": ["0.5"],
|
||||
"extruder_clearance_radius": "45",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"retract_lift_below": ["0.3"],
|
||||
"retraction_length": ["0.8"],
|
||||
"retraction_speed": ["120"],
|
||||
"deretraction_speed": ["120"],
|
||||
"wipe": ["1"],
|
||||
"retract_before_wipe": ["70%"],
|
||||
"z_hop": ["0.2"],
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single] TOTAL_LAYER_COUNT={total_layer_count} X0={first_layer_print_min[0]} Y0={first_layer_print_min[1]} X1={first_layer_print_max[0]} Y1={first_layer_print_max[1]}",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n_ON_LAYER_CHANGE LAYER={layer_num + 1}",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"printing_by_object_gcode": ";BETWEEN_OBJECTS\nG92 E0",
|
||||
"printable_height": "300",
|
||||
"time_lapse_gcode": "TIMELAPSE_TAKE_FRAME",
|
||||
"thumbnails": [
|
||||
"64x64/PNG",
|
||||
"100x100/PNG",
|
||||
"400x300/PNG"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "RatRig V-Core 4 HYBRID 400 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "RatRig V-Core 4 HYBRID 400",
|
||||
"printer_variant": "0.8",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"400x0",
|
||||
"400x400",
|
||||
"0x400"
|
||||
],
|
||||
"machine_max_speed_x": ["500", "500"],
|
||||
"machine_max_speed_y": ["500", "500"],
|
||||
"machine_max_speed_z": ["200", "200"],
|
||||
"machine_max_speed_e": ["120", "120"],
|
||||
"machine_max_acceleration_x": ["20000", "20000"],
|
||||
"machine_max_acceleration_y": ["20000", "20000"],
|
||||
"machine_max_acceleration_z": ["200", "200"],
|
||||
"machine_max_acceleration_e": ["5000", "5000"],
|
||||
"machine_max_acceleration_extruding": ["20000", "20000"],
|
||||
"machine_max_acceleration_retracting": ["20000", "20000"],
|
||||
"machine_max_acceleration_travel": ["20000", "20000"],
|
||||
"machine_max_jerk_x": ["5", "5"],
|
||||
"machine_max_jerk_y": ["5", "5"],
|
||||
"machine_max_jerk_z": ["0.4", "0.4"],
|
||||
"machine_max_jerk_e": ["5", "5"],
|
||||
"min_layer_height": ["0.12"],
|
||||
"max_layer_height": ["0.5"],
|
||||
"extruder_clearance_radius": "45",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"retract_lift_below": ["0.3"],
|
||||
"retraction_length": ["0.8"],
|
||||
"retraction_speed": ["120"],
|
||||
"deretraction_speed": ["120"],
|
||||
"wipe": ["1"],
|
||||
"retract_before_wipe": ["70%"],
|
||||
"z_hop": ["0.2"],
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single] TOTAL_LAYER_COUNT={total_layer_count} X0={first_layer_print_min[0]} Y0={first_layer_print_min[1]} X1={first_layer_print_max[0]} Y1={first_layer_print_max[1]}",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n_ON_LAYER_CHANGE LAYER={layer_num + 1}",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"printing_by_object_gcode": ";BETWEEN_OBJECTS\nG92 E0",
|
||||
"printable_height": "400",
|
||||
"time_lapse_gcode": "TIMELAPSE_TAKE_FRAME",
|
||||
"thumbnails": [
|
||||
"64x64/PNG",
|
||||
"100x100/PNG",
|
||||
"400x300/PNG"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "RatRig V-Core 4 HYBRID 500 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "RatRig V-Core 4 HYBRID 500",
|
||||
"printer_variant": "0.8",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"500x0",
|
||||
"500x500",
|
||||
"0x500"
|
||||
],
|
||||
"machine_max_speed_x": ["500", "500"],
|
||||
"machine_max_speed_y": ["500", "500"],
|
||||
"machine_max_speed_z": ["200", "200"],
|
||||
"machine_max_speed_e": ["120", "120"],
|
||||
"machine_max_acceleration_x": ["20000", "20000"],
|
||||
"machine_max_acceleration_y": ["20000", "20000"],
|
||||
"machine_max_acceleration_z": ["200", "200"],
|
||||
"machine_max_acceleration_e": ["5000", "5000"],
|
||||
"machine_max_acceleration_extruding": ["20000", "20000"],
|
||||
"machine_max_acceleration_retracting": ["20000", "20000"],
|
||||
"machine_max_acceleration_travel": ["20000", "20000"],
|
||||
"machine_max_jerk_x": ["5", "5"],
|
||||
"machine_max_jerk_y": ["5", "5"],
|
||||
"machine_max_jerk_z": ["0.4", "0.4"],
|
||||
"machine_max_jerk_e": ["5", "5"],
|
||||
"min_layer_height": ["0.12"],
|
||||
"max_layer_height": ["0.5"],
|
||||
"extruder_clearance_radius": "45",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"retract_lift_below": ["0.3"],
|
||||
"retraction_length": ["0.8"],
|
||||
"retraction_speed": ["120"],
|
||||
"deretraction_speed": ["120"],
|
||||
"wipe": ["1"],
|
||||
"retract_before_wipe": ["70%"],
|
||||
"z_hop": ["0.2"],
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single] TOTAL_LAYER_COUNT={total_layer_count} X0={first_layer_print_min[0]} Y0={first_layer_print_min[1]} X1={first_layer_print_max[0]} Y1={first_layer_print_max[1]}",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n_ON_LAYER_CHANGE LAYER={layer_num + 1}",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"printing_by_object_gcode": ";BETWEEN_OBJECTS\nG92 E0",
|
||||
"printable_height": "500",
|
||||
"time_lapse_gcode": "TIMELAPSE_TAKE_FRAME",
|
||||
"thumbnails": [
|
||||
"64x64/PNG",
|
||||
"100x100/PNG",
|
||||
"400x300/PNG"
|
||||
]
|
||||
}
|
|
@ -57,6 +57,6 @@
|
|||
"compatible_printers": [
|
||||
"RatRig V-Core 4 HYBRID 300 0.4 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 400 0.4 nozzle",
|
||||
"RatRig V-Core 4 HYBIRD 500 0.4 nozzle"
|
||||
"RatRig V-Core 4 HYBRID 500 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -57,6 +57,6 @@
|
|||
"compatible_printers": [
|
||||
"RatRig V-Core 4 HYBRID 300 0.5 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 400 0.5 nozzle",
|
||||
"RatRig V-Core 4 HYBIRD 500 0.5 nozzle"
|
||||
"RatRig V-Core 4 HYBRID 500 0.5 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -57,6 +57,6 @@
|
|||
"compatible_printers": [
|
||||
"RatRig V-Core 4 HYBRID 300 0.6 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 400 0.6 nozzle",
|
||||
"RatRig V-Core 4 HYBIRD 500 0.6 nozzle"
|
||||
"RatRig V-Core 4 HYBRID 500 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -40,14 +40,14 @@
|
|||
"initial_layer_acceleration": "2500",
|
||||
"travel_acceleration": "15000",
|
||||
"default_acceleration": "10000",
|
||||
"line_width": "0.45",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"top_surface_line_width": "0.45",
|
||||
"support_line_width": "0.45",
|
||||
"line_width": "0.65",
|
||||
"initial_layer_line_width": "0.85",
|
||||
"inner_wall_line_width": "0.65",
|
||||
"outer_wall_line_width": "0.60",
|
||||
"sparse_infill_line_width": "0.65",
|
||||
"internal_solid_infill_line_width": "0.65",
|
||||
"top_surface_line_width": "0.65",
|
||||
"support_line_width": "0.65",
|
||||
"infill_wall_overlap": "18%",
|
||||
"bridge_flow": "0.85",
|
||||
"resolution": "0.0125",
|
||||
|
|
|
@ -40,14 +40,14 @@
|
|||
"initial_layer_acceleration": "2500",
|
||||
"travel_acceleration": "10000",
|
||||
"default_acceleration": "20000",
|
||||
"line_width": "0.45",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"top_surface_line_width": "0.45",
|
||||
"support_line_width": "0.45",
|
||||
"line_width": "0.55",
|
||||
"initial_layer_line_width": "0.7",
|
||||
"inner_wall_line_width": "0.55",
|
||||
"outer_wall_line_width": "0.52",
|
||||
"sparse_infill_line_width": "0.55",
|
||||
"internal_solid_infill_line_width": "0.55",
|
||||
"top_surface_line_width": "0.55",
|
||||
"support_line_width": "0.55",
|
||||
"infill_wall_overlap": "18%",
|
||||
"bridge_flow": "0.85",
|
||||
"resolution": "0.0125",
|
||||
|
|
|
@ -40,14 +40,14 @@
|
|||
"initial_layer_acceleration": "2500",
|
||||
"travel_acceleration": "10000",
|
||||
"default_acceleration": "20000",
|
||||
"line_width": "0.45",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"top_surface_line_width": "0.45",
|
||||
"support_line_width": "0.45",
|
||||
"line_width": "0.65",
|
||||
"initial_layer_line_width": "0.9",
|
||||
"inner_wall_line_width": "0.65",
|
||||
"outer_wall_line_width": "0.60",
|
||||
"sparse_infill_line_width": "0.65",
|
||||
"internal_solid_infill_line_width": "0.65",
|
||||
"top_surface_line_width": "0.65",
|
||||
"support_line_width": "0.65",
|
||||
"infill_wall_overlap": "18%",
|
||||
"bridge_flow": "0.85",
|
||||
"resolution": "0.0125",
|
||||
|
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP006",
|
||||
"name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.8",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_ratrig_common",
|
||||
"layer_height": "0.25",
|
||||
"inital_layer_height": "0.3",
|
||||
"wall_count": "2",
|
||||
"top_shell_layers": "3",
|
||||
"bottom_shell_layers": "2",
|
||||
"top_shell_thickness": "0",
|
||||
"sparse_infill_density": "10%",
|
||||
"infill_anchor": "600%",
|
||||
"infill_anchor_max": "5",
|
||||
"infill_combination": "1",
|
||||
"support_threshold_angle": "65",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_on_build_plate_only": "1",
|
||||
"support_object_xy_distance": "60%",
|
||||
"inner_wall_speed": "500",
|
||||
"small_perimeter_speed": "500",
|
||||
"outer_wall_speed": "500",
|
||||
"sparse_infill_speed": "500",
|
||||
"internal_solid_infill_speed": "100%",
|
||||
"top_surface_speed": "100%",
|
||||
"support_speed": "50",
|
||||
"support_interface_speed": "100%",
|
||||
"bridge_speed": "150",
|
||||
"gap_infill_speed": "200",
|
||||
"travel_speed": "800",
|
||||
"initial_layer_speed": "200",
|
||||
"outer_wall_acceleration": "15000",
|
||||
"inner_wall_acceleration": "20000",
|
||||
"top_surface_acceleration": "0",
|
||||
"internal_solid_infill_acceleration": "0",
|
||||
"sparse_infill_acceleration": "20000",
|
||||
"bridge_acceleration": "5000",
|
||||
"initial_layer_acceleration": "2500",
|
||||
"travel_acceleration": "10000",
|
||||
"default_acceleration": "20000",
|
||||
"line_width": "0.75",
|
||||
"initial_layer_line_width": "1.1",
|
||||
"inner_wall_line_width": "0.75",
|
||||
"outer_wall_line_width": "0.70",
|
||||
"sparse_infill_line_width": "0.75",
|
||||
"internal_solid_infill_line_width": "0.75",
|
||||
"top_surface_line_width": "0.75",
|
||||
"support_line_width": "0.75",
|
||||
"infill_wall_overlap": "18%",
|
||||
"bridge_flow": "0.85",
|
||||
"resolution": "0.0125",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"compatible_printers": [
|
||||
"RatRig V-Core 4 HYBRID 300 0.8 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 400 0.8 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 500 0.8 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP006",
|
||||
"name": "0.30mm Big @RatRig V-Core 4 HYBRID 0.8",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_ratrig_common",
|
||||
"layer_height": "0.3",
|
||||
"inital_layer_height": "0.35",
|
||||
"wall_count": "3",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"sparse_infill_density": "25%",
|
||||
"infill_anchor": "600%",
|
||||
"infill_anchor_max": "5",
|
||||
"infill_combination": "1",
|
||||
"skirt_loops": "2",
|
||||
"skirt_distance": "10",
|
||||
"support_threshold_angle": "65",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_on_build_plate_only": "1",
|
||||
"support_object_xy_distance": "60%",
|
||||
"inner_wall_speed": "300",
|
||||
"small_perimeter_speed": "250",
|
||||
"outer_wall_speed": "250",
|
||||
"sparse_infill_speed": "400",
|
||||
"internal_solid_infill_speed": "100%",
|
||||
"top_surface_speed": "100%",
|
||||
"support_speed": "50",
|
||||
"support_interface_speed": "100%",
|
||||
"bridge_speed": "50",
|
||||
"gap_infill_speed": "200",
|
||||
"travel_speed": "600",
|
||||
"initial_layer_speed": "80",
|
||||
"enable_overhang_speed": "1",
|
||||
"overhang_1_4_speed": "20",
|
||||
"overhang_2_4_speed": "45",
|
||||
"overhang_3_4_speed": "80",
|
||||
"overhang_4_4_speed": "100",
|
||||
"outer_wall_acceleration": "8000",
|
||||
"inner_wall_acceleration": "10000",
|
||||
"top_surface_acceleration": "0",
|
||||
"internal_solid_infill_acceleration": "0",
|
||||
"sparse_infill_acceleration": "15000",
|
||||
"bridge_acceleration": "5000",
|
||||
"initial_layer_acceleration": "2500",
|
||||
"travel_acceleration": "15000",
|
||||
"default_acceleration": "15000",
|
||||
"line_width": "0.75",
|
||||
"initial_layer_line_width": "1.1",
|
||||
"inner_wall_line_width": "0.75",
|
||||
"outer_wall_line_width": "0.70",
|
||||
"sparse_infill_line_width": "0.75",
|
||||
"internal_solid_infill_line_width": "0.75",
|
||||
"top_surface_line_width": "0.75",
|
||||
"support_line_width": "0.75",
|
||||
"infill_wall_overlap": "18%",
|
||||
"bridge_flow": "0.85",
|
||||
"resolution": "0.0125",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"compatible_printers": [
|
||||
"RatRig V-Core 4 HYBRID 300 0.8 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 400 0.8 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 500 0.8 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP006",
|
||||
"name": "0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_ratrig_common",
|
||||
"layer_height": "0.35",
|
||||
"inital_layer_height": "0.4",
|
||||
"wall_count": "3",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"sparse_infill_density": "30%",
|
||||
"infill_anchor": "600%",
|
||||
"infill_anchor_max": "5",
|
||||
"infill_combination": "1",
|
||||
"skirt_loops": "2",
|
||||
"skirt_distance": "10",
|
||||
"support_threshold_angle": "65",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_on_build_plate_only": "1",
|
||||
"support_object_xy_distance": "60%",
|
||||
"inner_wall_speed": "300",
|
||||
"small_perimeter_speed": "250",
|
||||
"outer_wall_speed": "250",
|
||||
"sparse_infill_speed": "400",
|
||||
"internal_solid_infill_speed": "100%",
|
||||
"top_surface_speed": "100%",
|
||||
"support_speed": "50",
|
||||
"support_interface_speed": "100%",
|
||||
"bridge_speed": "50",
|
||||
"gap_infill_speed": "200",
|
||||
"travel_speed": "600",
|
||||
"initial_layer_speed": "80",
|
||||
"enable_overhang_speed": "1",
|
||||
"overhang_1_4_speed": "20",
|
||||
"overhang_2_4_speed": "45",
|
||||
"overhang_3_4_speed": "80",
|
||||
"overhang_4_4_speed": "100",
|
||||
"outer_wall_acceleration": "8000",
|
||||
"inner_wall_acceleration": "10000",
|
||||
"top_surface_acceleration": "0",
|
||||
"internal_solid_infill_acceleration": "0",
|
||||
"sparse_infill_acceleration": "15000",
|
||||
"bridge_acceleration": "5000",
|
||||
"initial_layer_acceleration": "2500",
|
||||
"travel_acceleration": "15000",
|
||||
"default_acceleration": "15000",
|
||||
"line_width": "0.75",
|
||||
"initial_layer_line_width": "1.1",
|
||||
"inner_wall_line_width": "0.75",
|
||||
"outer_wall_line_width": "0.70",
|
||||
"sparse_infill_line_width": "0.75",
|
||||
"internal_solid_infill_line_width": "0.75",
|
||||
"top_surface_line_width": "0.75",
|
||||
"support_line_width": "0.75",
|
||||
"infill_wall_overlap": "18%",
|
||||
"bridge_flow": "0.85",
|
||||
"resolution": "0.0125",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"compatible_printers": [
|
||||
"RatRig V-Core 4 HYBRID 300 0.8 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 400 0.8 nozzle",
|
||||
"RatRig V-Core 4 HYBRID 500 0.8 nozzle"
|
||||
]
|
||||
}
|
|
@ -24,6 +24,14 @@
|
|||
{
|
||||
"name": "Sovol SV06 Plus",
|
||||
"sub_path": "machine/Sovol SV06 Plus.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 ACE",
|
||||
"sub_path": "machine/Sovol SV06 ACE.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 Plus ACE",
|
||||
"sub_path": "machine/Sovol SV06 Plus ACE.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV07",
|
||||
|
@ -90,6 +98,14 @@
|
|||
{
|
||||
"name": "0.20mm Standard @Sovol SV06Plus",
|
||||
"sub_path": "process/0.20mm Standard @Sovol SV06Plus.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Sovol SV06 ACE - official",
|
||||
"sub_path": "process/0.20mm Standard @Sovol SV06 ACE - official.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Sovol SV06 Plus ACE - official",
|
||||
"sub_path": "process/0.20mm Standard @Sovol SV06 Plus ACE - official.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Sovol SV07",
|
||||
|
@ -157,6 +173,38 @@
|
|||
"name": "Sovol Generic TPU",
|
||||
"sub_path": "filament/Sovol Generic TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 ACE PLA",
|
||||
"sub_path": "filament/Sovol SV06 ACE PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 ACE ABS",
|
||||
"sub_path": "filament/Sovol SV06 ACE ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 ACE PETG",
|
||||
"sub_path": "filament/Sovol SV06 ACE PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 ACE TPU",
|
||||
"sub_path": "filament/Sovol SV06 ACE TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 Plus ACE PLA",
|
||||
"sub_path": "filament/Sovol SV06 Plus ACE PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 Plus ACE ABS",
|
||||
"sub_path": "filament/Sovol SV06 Plus ACE ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 Plus ACE PETG",
|
||||
"sub_path": "filament/Sovol SV06 Plus ACE PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 Plus ACE TPU",
|
||||
"sub_path": "filament/Sovol SV06 Plus ACE TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV07 PLA",
|
||||
"sub_path": "filament/Sovol SV07 PLA.json"
|
||||
|
@ -206,6 +254,14 @@
|
|||
{
|
||||
"name": "Sovol SV06 Plus 0.4 nozzle",
|
||||
"sub_path": "machine/Sovol SV06 Plus 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 ACE 0.4 nozzle",
|
||||
"sub_path": "machine/Sovol SV06 ACE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV06 Plus ACE 0.4 nozzle",
|
||||
"sub_path": "machine/Sovol SV06 Plus ACE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Sovol SV07 0.4 nozzle",
|
||||
|
|
BIN
resources/profiles/Sovol/Sovol SV06 ACE_cover.png
Normal file
BIN
resources/profiles/Sovol/Sovol SV06 ACE_cover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
resources/profiles/Sovol/Sovol SV06 Plus ACE_cover.png
Normal file
BIN
resources/profiles/Sovol/Sovol SV06 Plus ACE_cover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
47
resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json
Normal file
47
resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json
Normal file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 ACE ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic ABS",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["15"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"95"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"95"
|
||||
]
|
||||
}
|
47
resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json
Normal file
47
resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json
Normal file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 ACE PETG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic PETG",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["15"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"85"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"85"
|
||||
]
|
||||
}
|
50
resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json
Normal file
50
resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 ACE PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic PLA",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["21"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"210"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
]
|
||||
}
|
50
resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json
Normal file
50
resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 ACE TPU",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic TPU",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["3.6"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 Plus ACE ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic ABS",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["15"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 Plus ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"95"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"95"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 Plus ACE PETG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic PETG",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["15"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 Plus ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"85"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"85"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 Plus ACE PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic PLA",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["21"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 Plus ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"210"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Sovol SV06 Plus ACE TPU",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Sovol Generic TPU",
|
||||
"filament_flow_ratio": ["0.98"],
|
||||
"filament_max_volumetric_speed": ["3.6"],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 Plus ACE 0.4 nozzle"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
]
|
||||
}
|
130
resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json
Normal file
130
resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json
Normal file
|
@ -0,0 +1,130 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Sovol SV06 ACE 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "Sovol SV06 ACE",
|
||||
"default_print_profile": "0.20mm Standard @Sovol SV06 ACE - official",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"220x0",
|
||||
"220x220",
|
||||
"0x220"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"thumbnails": [
|
||||
"96x96",
|
||||
"160x160"
|
||||
],
|
||||
"thumbnails_format": "PNG",
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"600",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"600",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"z_hop_types":[
|
||||
"Auto Lift"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32",
|
||||
"0.32"
|
||||
],
|
||||
"retract_lift_below": [
|
||||
"248",
|
||||
"248"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"wipe_distance": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"retract_minimum_trave": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.5"
|
||||
],
|
||||
"gcode_flavor": "klipper",
|
||||
"before_layer_change_gcode": "TIMELAPSE_TAKE_FRAME\nG92 E0",
|
||||
"machine_start_gcode": "START_PRINT\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\nG90\nG1 X0 F6000\nG1 Y20\nG1 Z0.400 F600\nG1 Y-4 F6000\nM400\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nM109 S[nozzle_temperature_initial_layer];wait for extruder temp\nG91\nM83\nG1 E-0.200 Z5 F600\nG1 X{print_bed_max[1] / 3} F6000\nG1 Z-4.800 F600\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.24} F3000\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.16} F3000\nG1 Y1 E0.16 F3000\nG1 X-{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.16} F3000\nG1 X-{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.24} F3000\nG1 Y1 E0.24 F3000\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.24} F3000\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.16} F3000\nG1 E-0.200 Z1 F600\nM400\n\n",
|
||||
"machine_end_gcode": "END_PRINT\n",
|
||||
"default_filament_profile": [
|
||||
"Sovol SV06 ACE PLA"
|
||||
]
|
||||
}
|
12
resources/profiles/Sovol/machine/Sovol SV06 ACE.json
Normal file
12
resources/profiles/Sovol/machine/Sovol SV06 ACE.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Sovol SV06 ACE",
|
||||
"model_id": "Sovol-SV06-ACE",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Sovol",
|
||||
"bed_model": "sovol_sv06_ace_buildplate_model.stl",
|
||||
"bed_texture": "sovol_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Sovol SV06 ACE PLA"
|
||||
}
|
|
@ -0,0 +1,133 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Sovol SV06 Plus ACE 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "Sovol SV06 Plus ACE",
|
||||
"default_print_profile": "0.20mm Standard @Sovol SV06 Plus ACE - official",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "350",
|
||||
"thumbnails": [
|
||||
"96x96",
|
||||
"160x160"
|
||||
],
|
||||
"thumbnails_format": "PNG",
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"z_hop_types":[
|
||||
"Auto Lift"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32",
|
||||
"0.32"
|
||||
],
|
||||
"retract_lift_below": [
|
||||
"343",
|
||||
"343"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"wipe_distance": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"retract_minimum_trave": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.5"
|
||||
],
|
||||
"gcode_flavor": "klipper",
|
||||
"before_layer_change_gcode": "TIMELAPSE_TAKE_FRAME\nG92 E0",
|
||||
"machine_start_gcode": "M140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\nSTART_PRINT\nG28\nG90\nG1 X0 F6000\nG1 Y-4\nG1 Z0.200 F600\nM400\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nM109 S[nozzle_temperature_initial_layer];wait for extruder temp\nG91\nM83\nG1 E-0.200 Z5 F600\nG1 X{print_bed_max[1] / 3} F6000\nG1 Z-5 F600\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.24} F3000\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.16} F3000\nG1 Y1 E0.16 F3000\nG1 X-{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.16} F3000\nG1 X-{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.24} F3000\nG1 Y1 E0.24 F3000\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.24} F3000\nG1 X{print_bed_max[1] / 6} E{print_bed_max[1] / 6 * 0.16} F3000\nG1 E-0.200 Z1 F600\nM400\n\n",
|
||||
"machine_end_gcode": "END_PRINT\n",
|
||||
"default_filament_profile": [
|
||||
"Sovol SV06 Plus ACE PLA"
|
||||
]
|
||||
}
|
12
resources/profiles/Sovol/machine/Sovol SV06 Plus ACE.json
Normal file
12
resources/profiles/Sovol/machine/Sovol SV06 Plus ACE.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Sovol SV06 Plus ACE",
|
||||
"model_id": "Sovol-SV06-Plus-ACE",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Sovol",
|
||||
"bed_model": "sovol_sv06plus_ace_buildplate_model.stl",
|
||||
"bed_texture": "sovol_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Sovol SV06 Plus ACE PLA"
|
||||
}
|
|
@ -0,0 +1,125 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @Sovol SV06 ACE - official",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.20",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "50",
|
||||
"brim_type": "auto_brim",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "10000",
|
||||
"outer_wall_acceleration": "6000",
|
||||
"top_surface_acceleration": "6000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"wall_sequence": "inner-outer-inner wall",
|
||||
"line_width": "0.4",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "10%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_acceleration": "2000",
|
||||
"travel_acceleration": "10000",
|
||||
"inner_wall_acceleration": "8000",
|
||||
"bridge_acceleration": "100%",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "30%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_spacing": "0.25",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{printer_model}_{input_filename_base}_{filament_type[0]}_{layer_height}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "20",
|
||||
"inner_wall_line_width": "0.42",
|
||||
"wall_loops": "2",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"seam_gap": "5%",
|
||||
"skirt_distance": "0",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "1",
|
||||
"skirt_speed": "30",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.4",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_style": "snug",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.45",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "-1",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_interface_speed": "100%",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "80",
|
||||
"support_threshold_angle": "20",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.38",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0.8",
|
||||
"initial_layer_speed": "30",
|
||||
"initial_layer_infill_speed": "40",
|
||||
"initial_layer_travel_speed": "60%",
|
||||
"slow_down_layers": "3",
|
||||
"outer_wall_speed": "200",
|
||||
"inner_wall_speed": "270",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"top_surface_speed": "200",
|
||||
"gap_infill_speed": "200",
|
||||
"sparse_infill_speed": "300",
|
||||
"travel_speed": "600",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"wall_generator": "classic",
|
||||
"top_solid_infill_flow_ratio": "0.8",
|
||||
"only_one_wall_top": "1",
|
||||
"minimum_sparse_infill_threshold": "0",
|
||||
"gcode_label_objects": "1",
|
||||
"exclude_object": "1",
|
||||
"accel_to_decel_enable": "0",
|
||||
"thick_bridges": "1",
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 ACE 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,125 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @Sovol SV06 Plus ACE - official",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.20",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "50",
|
||||
"brim_type": "auto_brim",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "8000",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"top_surface_acceleration": "6000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"wall_sequence": "inner-outer-inner wall",
|
||||
"line_width": "0.4",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "10%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_acceleration": "2000",
|
||||
"travel_acceleration": "8000",
|
||||
"inner_wall_acceleration": "6000",
|
||||
"bridge_acceleration": "100%",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "30%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_spacing": "0.25",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{printer_model}_{input_filename_base}_{filament_type[0]}_{layer_height}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "60",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "20",
|
||||
"inner_wall_line_width": "0.42",
|
||||
"wall_loops": "2",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"seam_gap": "5%",
|
||||
"skirt_distance": "0",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "1",
|
||||
"skirt_speed": "50",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.4",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_style": "snug",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.45",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "-1",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_interface_speed": "100%",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "80",
|
||||
"support_threshold_angle": "20",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.38",
|
||||
"top_shell_layers": "4",
|
||||
"top_shell_thickness": "1.0",
|
||||
"initial_layer_speed": "30",
|
||||
"initial_layer_infill_speed": "40",
|
||||
"initial_layer_travel_speed": "60%",
|
||||
"slow_down_layers": "3",
|
||||
"outer_wall_speed": "200",
|
||||
"inner_wall_speed": "270",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"top_surface_speed": "200",
|
||||
"gap_infill_speed": "200",
|
||||
"sparse_infill_speed": "300",
|
||||
"travel_speed": "500",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"wall_generator": "classic",
|
||||
"top_solid_infill_flow_ratio": "0.8",
|
||||
"only_one_wall_top": "1",
|
||||
"minimum_sparse_infill_threshold": "0",
|
||||
"gcode_label_objects": "1",
|
||||
"exclude_object": "1",
|
||||
"accel_to_decel_enable": "0",
|
||||
"thick_bridges": "1",
|
||||
"compatible_printers": [
|
||||
"Sovol SV06 Plus ACE 0.4 nozzle"
|
||||
]
|
||||
}
|
BIN
resources/profiles/Sovol/sovol_buildplate_texture.png
Normal file
BIN
resources/profiles/Sovol/sovol_buildplate_texture.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
resources/profiles/Sovol/sovol_sv06_ace_buildplate_model.stl
Normal file
BIN
resources/profiles/Sovol/sovol_sv06_ace_buildplate_model.stl
Normal file
Binary file not shown.
BIN
resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_model.stl
Normal file
BIN
resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_model.stl
Normal file
Binary file not shown.
|
@ -58,6 +58,10 @@
|
|||
"name": "fdm_process_voron_common_0_2_5",
|
||||
"sub_path": "process/fdm_process_voron_common_0_2_5.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_voron_common_0_5",
|
||||
"sub_path": "process/fdm_process_voron_common_0_5.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_voron_common_0_6",
|
||||
"sub_path": "process/fdm_process_voron_common_0_6.json"
|
||||
|
@ -205,6 +209,30 @@
|
|||
{
|
||||
"name": "0.80mm Extra Draft 1.0 nozzle @Voron",
|
||||
"sub_path": "process/0.80mm Extra Draft 1.0 nozzle @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Extra Fine 0.5 nozzle @Voron",
|
||||
"sub_path": "process/0.10mm Extra Fine 0.5 nozzle @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Fine 0.5 nozzle @Voron",
|
||||
"sub_path": "process/0.15mm Fine 0.5 nozzle @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Optimal 0.5 nozzle @Voron",
|
||||
"sub_path": "process/0.20mm Optimal 0.5 nozzle @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Standard 0.5 nozzle @Voron",
|
||||
"sub_path": "process/0.25mm Standard 0.5 nozzle @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Draft 0.5 nozzle @Voron",
|
||||
"sub_path": "process/0.30mm Draft 0.5 nozzle @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.35mm Extra Draft 0.5 nozzle @Voron",
|
||||
"sub_path": "process/0.35mm Extra Draft 0.5 nozzle @Voron.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
|
@ -310,6 +338,10 @@
|
|||
"name": "Voron 2.4 250 0.25 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 250 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 250 0.5 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 250 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 250 0.6 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 250 0.6 nozzle.json"
|
||||
|
@ -338,6 +370,10 @@
|
|||
"name": "Voron 2.4 300 0.25 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 300 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 300 0.5 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 300 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 300 0.6 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 300 0.6 nozzle.json"
|
||||
|
@ -366,6 +402,10 @@
|
|||
"name": "Voron 2.4 350 0.25 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 350 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 350 0.5 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 350 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 350 0.6 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 350 0.6 nozzle.json"
|
||||
|
@ -394,6 +434,10 @@
|
|||
"name": "Voron Trident 250 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.5 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.6 nozzle.json"
|
||||
|
@ -422,6 +466,10 @@
|
|||
"name": "Voron Trident 300 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.5 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.6 nozzle.json"
|
||||
|
@ -450,6 +498,10 @@
|
|||
"name": "Voron Trident 350 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.5 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.6 nozzle.json"
|
||||
|
@ -478,6 +530,10 @@
|
|||
"name": "Voron 0.1 0.25 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.5 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.6 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.6 nozzle.json"
|
||||
|
@ -506,6 +562,10 @@
|
|||
"name": "Voron Switchwire 250 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.5 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.6 nozzle.json"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -24,6 +25,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -31,6 +33,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -38,6 +41,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -45,6 +49,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -52,6 +57,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -59,6 +65,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -66,6 +73,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -24,6 +25,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -31,6 +33,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -38,6 +41,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -45,6 +49,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -52,6 +57,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -59,6 +65,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -66,6 +73,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -30,6 +31,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -37,6 +39,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -44,6 +47,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -51,6 +55,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -58,6 +63,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -65,6 +71,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -72,6 +79,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -27,6 +28,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -34,6 +36,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -41,6 +44,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -48,6 +52,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -55,6 +60,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -62,6 +68,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -69,6 +76,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -24,6 +25,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -31,6 +33,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -38,6 +41,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -45,6 +49,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -52,6 +57,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -59,6 +65,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -66,6 +73,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -54,6 +55,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -61,6 +63,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -68,6 +71,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -75,6 +79,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -82,6 +87,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -89,6 +95,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -96,6 +103,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -30,6 +31,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -37,6 +39,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -44,6 +47,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -51,6 +55,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -58,6 +63,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -65,6 +71,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -72,6 +79,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -27,6 +28,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -34,6 +36,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -41,6 +44,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -48,6 +52,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -55,6 +60,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -62,6 +68,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -69,6 +76,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -30,6 +31,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -37,6 +39,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -44,6 +47,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -51,6 +55,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -58,6 +63,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -65,6 +71,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -72,6 +79,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.5 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
|
@ -21,6 +22,7 @@
|
|||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.5 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
|
@ -28,6 +30,7 @@
|
|||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.5 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
|
@ -35,6 +38,7 @@
|
|||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.5 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
|
@ -42,6 +46,7 @@
|
|||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.5 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
|
@ -49,6 +54,7 @@
|
|||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.5 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
|
@ -56,6 +62,7 @@
|
|||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.5 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
|
@ -63,6 +70,7 @@
|
|||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.5 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
|
|
29
resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Voron 0.1 0.5 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.25mm Standard 0.5 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.1"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.5"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.5"
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
"type": "machine_model",
|
||||
"name": "Voron 0.1",
|
||||
"model_id": "Voron0",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.6;0.8;1.0",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.5;0.6;0.8;1.0",
|
||||
"machine_tech": "FFF",
|
||||
"family": "VoronDesign",
|
||||
"bed_model": "Voron_120_build_plate.stl",
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Voron 2.4 250 0.5 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.25mm Standard 0.5 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.1"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.5"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225",
|
||||
"printer_variant": "0.5"
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
"type": "machine_model",
|
||||
"name": "Voron 2.4 250",
|
||||
"model_id": "Voron2_250",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.6;0.8;1.0",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.5;0.6;0.8;1.0",
|
||||
"machine_tech": "FFF",
|
||||
"family": "VoronDesign",
|
||||
"bed_model": "Voron_250_build_plate.stl",
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Voron 2.4 300 0.5 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.25mm Standard 0.5 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.1"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.5"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "275",
|
||||
"printer_variant": "0.5"
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
"type": "machine_model",
|
||||
"name": "Voron 2.4 300",
|
||||
"model_id": "Voron2_300",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.6;0.8;1.0",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.5;0.6;0.8;1.0",
|
||||
"machine_tech": "FFF",
|
||||
"family": "VoronDesign",
|
||||
"bed_model": "Voron_300_build_plate.stl",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue