Merge remote-tracking branch 'origin/master' into feature_slice_to_png
|
@ -17,7 +17,7 @@ A derived User preset keeps track of wich settings are inherited from the parent
|
|||
This system ensures that we don't overwrite user's settings when there is an update to the built in presets.
|
||||
|
||||
Slic3r GUI now displays accurately which settings are inherited and which are modified.
|
||||
A setting derived from a System preset is represeted by green label and a locked lock icon:
|
||||
A setting derived from a System preset is represented by green label and a locked lock icon:
|
||||
|
||||
![a system setting](setting_sys.png)
|
||||
|
||||
|
|
|
@ -105,15 +105,6 @@ sub OnInit {
|
|||
|
||||
$self->{preset_updater} = Slic3r::PresetUpdater->new($VERSION_ONLINE_EVENT);
|
||||
Slic3r::GUI::set_preset_updater($self->{preset_updater});
|
||||
eval {
|
||||
if (! $self->{preset_updater}->config_update()) {
|
||||
exit 0;
|
||||
}
|
||||
};
|
||||
if ($@) {
|
||||
warn $@ . "\n";
|
||||
fatal_error(undef, $@);
|
||||
}
|
||||
|
||||
Slic3r::GUI::load_language();
|
||||
|
||||
|
@ -137,6 +128,7 @@ sub OnInit {
|
|||
);
|
||||
$self->SetTopWindow($frame);
|
||||
|
||||
# This makes CallAfter() work
|
||||
EVT_IDLE($self->{mainframe}, sub {
|
||||
while (my $cb = shift @cb) {
|
||||
$cb->();
|
||||
|
@ -144,8 +136,21 @@ sub OnInit {
|
|||
$self->{app_config}->save if $self->{app_config}->dirty;
|
||||
});
|
||||
|
||||
# On OSX the UI was not initialized correctly if the wizard was called
|
||||
# before the UI was up and running.
|
||||
# On OS X the UI tends to freeze in weird ways if modal dialogs (config wizard, update notifications, ...)
|
||||
# are shown before or in the same event callback with the main frame creation.
|
||||
# Therefore we schedule them for later using CallAfter.
|
||||
$self->CallAfter(sub {
|
||||
eval {
|
||||
if (! $self->{preset_updater}->config_update()) {
|
||||
exit 0;
|
||||
}
|
||||
};
|
||||
if ($@) {
|
||||
warn $@ . "\n";
|
||||
fatal_error(undef, $@);
|
||||
}
|
||||
});
|
||||
|
||||
$self->CallAfter(sub {
|
||||
if (! Slic3r::GUI::config_wizard_startup($app_conf_exists)) {
|
||||
# Only notify if there was not wizard so as not to bother too much ...
|
||||
|
|
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 9.1 KiB |
BIN
resources/icons/printers/PrusaResearch_MK2.5.png
Normal file
After Width: | Height: | Size: 58 KiB |
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Generator: Poedit 2.0.8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
|
@ -367,6 +367,10 @@ msgstr "Import…"
|
|||
msgid "Advanced"
|
||||
msgstr "Erweiterte Einstellungen"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:319
|
||||
msgid "Advanced: avrdude output log"
|
||||
msgstr "Fortgeschritten: Avrdude Output Log"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
|
||||
msgid "After layer change G-code"
|
||||
|
@ -427,6 +431,12 @@ msgstr "ungefähre Sekunden"
|
|||
msgid "Are you sure you want to "
|
||||
msgstr "Wollen Sie wirklich "
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:365
|
||||
msgid ""
|
||||
"Are you sure you want to cancel firmware flashing?\n"
|
||||
"This could leave your printer in an unusable state!"
|
||||
msgstr "Sind Sie sicher, dass Sie das Flashen der Firmware abbrechen wollen? Dies könnte Ihren Drucker in einen unbrauchbaren Zustand versetzen!"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
|
||||
msgid "Around X axis…"
|
||||
msgstr "Entlang der X Achse…"
|
||||
|
@ -619,6 +629,14 @@ msgstr "Schaltflächen und Textfarben Beschreibung"
|
|||
msgid "by the print profile maximum"
|
||||
msgstr "mit dem Maximum des Druckerprofils"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:85
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:213
|
||||
msgid "Cancelling..."
|
||||
msgstr "Abbrechen..."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2124
|
||||
msgid "Cannot overwrite a system profile."
|
||||
msgstr "Systemprofil kann nicht überschrieben werden."
|
||||
|
@ -651,14 +669,6 @@ msgstr "Ändere die Anzahl der Kopien der ausgewählten Objekte"
|
|||
msgid "Check for application updates"
|
||||
msgstr "Nach Updates suchen"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for configuration updates"
|
||||
msgstr "Nach Konfigurationsupdates suchen"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for updates"
|
||||
msgstr "Nach Updates suchen"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
|
||||
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
msgstr "Wählen Sie eine Datei als Druckbettkontur aus (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
|
@ -735,6 +745,10 @@ msgstr "Konfigurationsupdate ist verfügbar"
|
|||
msgid "Configuration Wizard"
|
||||
msgstr "Konfigurations-Assistent"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:366
|
||||
msgid "Confirmation"
|
||||
msgstr "Bestätigung"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
|
||||
msgid "Connection failed."
|
||||
msgstr "Verbindung ist fehlgeschlagen."
|
||||
|
@ -1077,10 +1091,6 @@ msgstr "Geben Sie die neue Größe für das ausgewählte Objekt (Druckbett: %s m
|
|||
msgid "Enter the number of copies of the selected object:"
|
||||
msgstr "Geben Sie die Anzahl der Kopien der ausgewählten Objekte ein:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Enter the rotation angle:"
|
||||
msgstr "Geben Sie den Rotationswinkel ein:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
|
||||
#, no-perl-format
|
||||
|
@ -1158,6 +1168,10 @@ msgstr "Experimentelle Option zur Anpassung des Durchflusses für Überhänge (B
|
|||
msgid "Export all presets to file"
|
||||
msgstr "Exportiere alle Voreinstellungen in eine Datei"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1416
|
||||
msgid "Export cancelled"
|
||||
msgstr "Export abgebrochen"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
|
||||
msgid "Export current configuration to file"
|
||||
msgstr "Exportiere die aktuelle Konfiguration in eine Datei"
|
||||
|
@ -1427,6 +1441,14 @@ msgstr "Fertig"
|
|||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:266
|
||||
msgid "Firmware flasher"
|
||||
msgstr "Firmware Flasher"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:293
|
||||
msgid "Firmware image:"
|
||||
msgstr "Firmware Image:"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "Firmware Einzug"
|
||||
|
@ -1454,6 +1476,30 @@ msgstr "Druckgeschwindigkeit der ersten Schicht"
|
|||
msgid "First layer volumetric"
|
||||
msgstr "Volumenparameter der ersten Schicht"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Flash printer firmware"
|
||||
msgstr "Flashe Drucker Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:84
|
||||
msgid "Flash!"
|
||||
msgstr "Flash!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:147
|
||||
msgid "Flashing cancelled."
|
||||
msgstr "Flashen abgebrochen."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:146
|
||||
msgid "Flashing failed. Please see the avrdude log below."
|
||||
msgstr "Flashen misslungen. Bitte überprüfen Sie das Avrdude log unterhalb."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:123
|
||||
msgid "Flashing in progress. Please do not disconnect the printer!"
|
||||
msgstr "Es wird geflashed. Bitte nicht den Drucker abklemmen!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:145
|
||||
msgid "Flashing succeeded!"
|
||||
msgstr "Flashen erfolgreich!"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
|
||||
msgid "Flow"
|
||||
msgstr "Fluss"
|
||||
|
@ -1555,10 +1601,9 @@ msgstr "Höhe der Schürze in Schichten. Eine hohe Schürze kann gegen Zugluft
|
|||
msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
|
||||
msgstr "Hallo, willkommen bei Slic3r Prusa Edition! Dieses %s hilft Ihnen bei der Erstkonfiguration; nur ein paar Einstellungen und Sie sind bereit zum Drucken."
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:223
|
||||
#, c-format
|
||||
msgid "Here you can adjust required purging volume (mm%s) for any given pair of tools."
|
||||
msgstr "Hier können Sie das erforderliche Reinigungsvolumen (mm %s) für ein beliebiges Werkzeugpaar einstellen."
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:218
|
||||
msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
|
||||
msgstr "Hier können Sie das erforderliche Reinigungsvolumen (mm³) für ein beliebiges Werkzeugpaar einstellen."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
|
||||
msgid "Horizontal shells"
|
||||
|
@ -1745,10 +1790,6 @@ msgstr "Internes Infill"
|
|||
msgid "Invalid API key"
|
||||
msgstr "Ungültiger API-Schlüssel"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Invalid rotation angle entered"
|
||||
msgstr "Ungültiger Rotationswinkel wurde eingegeben"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
|
||||
|
@ -1966,14 +2007,14 @@ msgstr "Minimale Druckgeschwindigkeit"
|
|||
msgid "min slic3r version"
|
||||
msgstr "Min. Slic3r Version"
|
||||
|
||||
#: xs/src/libslic3r/PrintConfig.cpp:951
|
||||
msgid "Minimal filament extrusion length"
|
||||
msgstr "Minimale Filament Extrusionlänge"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
|
||||
msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
|
||||
msgstr "Minimale Detailauflösung, die verwendet wird, um die Eingabedatei zu vereinfachen, um den Slicingjob zu beschleunigen und den Speicherverbrauch zu reduzieren. Hochauflösende Modelle weisen oft mehr Details auf, als der Drucker wiedergeben kann. Setzen Sie den Wert auf Null, um die Vereinfachung zu deaktivieren und die volle Auflösung des Eingangsdatei zu verwenden."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
|
||||
msgid "Minimum extrusion length"
|
||||
msgstr "Minimale Extrusionslänge"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
|
||||
msgid "Minimum travel after retraction"
|
||||
msgstr "Minimalbewegung nach Einziehen"
|
||||
|
@ -2288,9 +2329,9 @@ msgstr "Modell öffnen"
|
|||
msgid "Open CA certificate file"
|
||||
msgstr "Open CA Zertifikat Datei"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
|
||||
msgid "Open STL/OBJ/AMF…\tCtrl+O"
|
||||
msgstr "STL/OBJ/AMF öffnen…\tCtrl+O"
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:194
|
||||
msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
msgstr "Öffne STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
|
||||
msgid "Open the 3D cutting tool"
|
||||
|
@ -2418,6 +2459,10 @@ msgstr "Eine weitere Kopie des ausgewählten Objekts positionieren"
|
|||
msgid "Plater"
|
||||
msgstr "Druckplatte"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1897
|
||||
msgid "Please install the OpenGL modules to use this feature (see build instructions)."
|
||||
msgstr "Bitte installieren Sie die OpenGL-Module, um diese Funktion nutzen zu können (siehe Build Anleitung)."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
|
||||
msgid "Position (for multi-extruder printers)"
|
||||
msgstr "Position (für Multi-Extruder-Drucker)"
|
||||
|
@ -2535,6 +2580,10 @@ msgstr "Eingabe Datei wird verarbeitet\n"
|
|||
msgid "Profile dependencies"
|
||||
msgstr "Profil Abhängigkeiten"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:300
|
||||
msgid "Progress:"
|
||||
msgstr "Fortschritt:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
|
||||
msgid "Prusa 3D Drivers"
|
||||
msgstr "Prusa 3D Treiber"
|
||||
|
@ -2621,6 +2670,10 @@ msgstr "Einstellungen für das Rammen"
|
|||
msgid "Re-configure"
|
||||
msgstr "Neu konfigurieren"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:297
|
||||
msgid "Ready"
|
||||
msgstr "Fertig"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
|
||||
msgid "Rear"
|
||||
msgstr "Hinten"
|
||||
|
@ -2698,6 +2751,15 @@ msgstr "Einen Fehler melden"
|
|||
msgid "Report an issue on the Slic3r Prusa Edition"
|
||||
msgstr "Einen Fehler in der Slic3r Prusa Edition melden"
|
||||
|
||||
#: xs/src/slic3r/Utils/PresetUpdater.cpp:514
|
||||
#, c-format
|
||||
msgid "requires min. %s and max. %s"
|
||||
msgstr "benötigt min. %s und max. %s"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:288
|
||||
msgid "Rescan"
|
||||
msgstr "Rescan"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
|
||||
msgid "Rescan serial ports"
|
||||
msgstr "Serielle Schnittstellen nochmals abfragen"
|
||||
|
@ -2763,10 +2825,6 @@ msgstr "45° im Uhrzeigersinn drehen"
|
|||
msgid "Rotate 45° counter-clockwise"
|
||||
msgstr "45° im Gegenuhrzeigersinn drehen"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Rotate around "
|
||||
msgstr "Rotieren um "
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
|
||||
msgid "Rotate the selected object by 45° clockwise"
|
||||
msgstr "Drehen Sie das ausgewählte Objekt um 45° mit dem Uhrzeiger"
|
||||
|
@ -2816,6 +2874,10 @@ msgstr "Konfiguration speichern unter:"
|
|||
msgid "Save current "
|
||||
msgstr "Aktuell sichern "
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1399
|
||||
msgid "Save G-code file as:"
|
||||
msgstr "Speichere G-Code Datei als:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
|
||||
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
|
||||
msgstr "Speichern als OBJ-Datei (weniger anfällig für Koordinatenfehler als STL):"
|
||||
|
@ -2960,6 +3022,10 @@ msgstr "Serieller Port"
|
|||
msgid "Serial port speed"
|
||||
msgstr "Serielle Portgeschwindigkeit"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:286
|
||||
msgid "Serial port:"
|
||||
msgstr "Serieller Port:"
|
||||
|
||||
#: xs/src/slic3r/GUI/BonjourDialog.cpp:68
|
||||
msgid "Service name"
|
||||
msgstr "Name des Dienstes"
|
||||
|
@ -3038,6 +3104,10 @@ msgstr "Konturhüllen"
|
|||
msgid "Show"
|
||||
msgstr "Anzeigen"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show &Configuration Folder"
|
||||
msgstr "Zeige Konfigurationsordner (&C)"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
|
||||
msgid "Show about dialog"
|
||||
msgstr "\"Über\"-Dialog anzeigen"
|
||||
|
@ -3078,6 +3148,10 @@ msgstr "Drucker-Controller anzeigen"
|
|||
msgid "Show the printer settings"
|
||||
msgstr "Druckereinstellungen anzeigen"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show user configuration folder (datadir)"
|
||||
msgstr "Zeige User Konfiguration Ordner (datadir)"
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:1716 xs/src/slic3r/GUI/Tab.cpp:1722
|
||||
msgid "Single extruder MM setup"
|
||||
msgstr "Einzelner Extruder MM Setup"
|
||||
|
@ -3386,6 +3460,10 @@ msgstr "Start G-Code"
|
|||
msgid "Start new slicing process"
|
||||
msgstr "Neuen Slicing-Prozess starten"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:296
|
||||
msgid "Status:"
|
||||
msgstr "Status:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
|
||||
msgid "STL file exported to "
|
||||
|
@ -4045,6 +4123,10 @@ msgstr "Updates werden niemals ohne das Einverständnis des Benutzers ausgeführ
|
|||
msgid "Upgrade"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Upload a firmware image into an Arduino based printer"
|
||||
msgstr "Lade ein Firmware Image zu einem Arduino basierten Drucker hoch"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
|
||||
msgid "USB/Serial connection"
|
||||
msgstr "USB/Serielle Verbindung"
|
||||
|
@ -4142,10 +4224,9 @@ msgstr "Ansicht"
|
|||
msgid "Volume"
|
||||
msgstr "Volumen"
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:246
|
||||
#, c-format
|
||||
msgid "Volume to purge (mm%s) when the filament is being"
|
||||
msgstr "Auszuwerfendes Volumen (mm%s), wenn das Filament"
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:241
|
||||
msgid "Volume to purge (mm³) when the filament is being"
|
||||
msgstr "Volumen zum Reinigen (mm³) wenn das Filament ist"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
|
||||
msgid "Volumetric"
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Generator: Poedit 2.0.8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
|
@ -367,6 +367,10 @@ msgstr "Añadir…"
|
|||
msgid "Advanced"
|
||||
msgstr "Avanzado"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:319
|
||||
msgid "Advanced: avrdude output log"
|
||||
msgstr "Avanzado: salida del log avrdude"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
|
||||
msgid "After layer change G-code"
|
||||
|
@ -427,6 +431,14 @@ msgstr "segundos aproximadamente"
|
|||
msgid "Are you sure you want to "
|
||||
msgstr "¿Está seguro que quiere "
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:365
|
||||
msgid ""
|
||||
"Are you sure you want to cancel firmware flashing?\n"
|
||||
"This could leave your printer in an unusable state!"
|
||||
msgstr ""
|
||||
"¿Estas seguro de cancelar el flaseo del firmware?\n"
|
||||
"¡Esto podría dejar tu impresora en un estado inusable!"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
|
||||
msgid "Around X axis…"
|
||||
msgstr "Alrededor del eje X…"
|
||||
|
@ -486,7 +498,7 @@ msgid ""
|
|||
"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n"
|
||||
"Click to reset all settings for the current option group to the last saved preset."
|
||||
msgstr ""
|
||||
"El símbolo de FLECHA NEGRA indica que los ajustes cambiaron y que no son iguales a los que se guardaron para el grupo de opciones actual.\n"
|
||||
"El símbolo de FLECHA ATRÁS indica que los ajustes cambiaron y que no son iguales a los que se guardaron para el grupo de opciones actual.\n"
|
||||
"Haz clic para devolver esos valores a los últimos guardados."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2505
|
||||
|
@ -494,7 +506,7 @@ msgid ""
|
|||
"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n"
|
||||
"Click to reset current value to the last saved preset."
|
||||
msgstr ""
|
||||
"La FLECHA NEGRA indica que el valor ha cambiado y ya no es el mismo que el guardado la última vez.\n"
|
||||
"La FLECHA ATRÁS indica que el valor ha cambiado y ya no es el mismo que el guardado la última vez.\n"
|
||||
"Haz clic para restaurar el valor al último ajuste guardado."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2455
|
||||
|
@ -502,8 +514,8 @@ msgid ""
|
|||
"BACK ARROW;indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n"
|
||||
"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset."
|
||||
msgstr ""
|
||||
"FLECHA NEGRA;indica si los ajustes cambiaron y ya no son iguales a los ajustes guardados la última vez para el grupo de opciones actual. \n"
|
||||
"Haz click en la FLECHA NEGRA para devolver los valores del grupo de opciones actual a los valores guardados la última vez."
|
||||
"FLECHA ATRÁS;indica si los ajustes cambiaron y ya no son iguales a los ajustes guardados la última vez para el grupo de opciones actual. \n"
|
||||
"Haz click en la FLECHA ATRÁS para devolver los valores del grupo de opciones actual a los valores guardados la última vez."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:43
|
||||
msgid "Background processing"
|
||||
|
@ -621,6 +633,14 @@ msgstr "Descripción de los botones y de los colores del texto"
|
|||
msgid "by the print profile maximum"
|
||||
msgstr "por el máximo perfil de impresión"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:85
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:213
|
||||
msgid "Cancelling..."
|
||||
msgstr "Cancelando..."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2124
|
||||
msgid "Cannot overwrite a system profile."
|
||||
msgstr "No se puede sobre-escribir un perfil del sistema."
|
||||
|
@ -653,14 +673,6 @@ msgstr "Cambiar el número de copias del objeto seleccionado"
|
|||
msgid "Check for application updates"
|
||||
msgstr "Comprueba si hay actualizaciones de la aplicación"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for configuration updates"
|
||||
msgstr "Comprueba si hay actualizaciones de configuración"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for updates"
|
||||
msgstr "Comprueba si hay actualizaciones"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
|
||||
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
msgstr "Escoja un archivo para importar la forma de la base de impresión (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
|
@ -737,6 +749,10 @@ msgstr "Hay disponible una actualización de la Configuración"
|
|||
msgid "Configuration Wizard"
|
||||
msgstr "Asistente de configuración"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:366
|
||||
msgid "Confirmation"
|
||||
msgstr "Confirmación"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
|
||||
msgid "Connection failed."
|
||||
msgstr "Conexión fallida."
|
||||
|
@ -1079,10 +1095,6 @@ msgstr "Ingrese el nuevo tamaño para el objeto seleccionado (base de impresión
|
|||
msgid "Enter the number of copies of the selected object:"
|
||||
msgstr "Ingrese la cantidad de copias del objeto seleccionado:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Enter the rotation angle:"
|
||||
msgstr "Ingrese el ángulo de rotación:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
|
||||
#, no-perl-format
|
||||
|
@ -1160,6 +1172,10 @@ msgstr "Opción experimental para ajustar el flujo para salientes (se usará el
|
|||
msgid "Export all presets to file"
|
||||
msgstr "Exportar todos los preajustes al archivo"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1416
|
||||
msgid "Export cancelled"
|
||||
msgstr "Exportación cancelada"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
|
||||
msgid "Export current configuration to file"
|
||||
msgstr "Exportar la configuración actual al archivo"
|
||||
|
@ -1429,6 +1445,14 @@ msgstr "Terminado"
|
|||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:266
|
||||
msgid "Firmware flasher"
|
||||
msgstr "Flasheador de firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:293
|
||||
msgid "Firmware image:"
|
||||
msgstr "Imagen del firmware:"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "Retracción del firmware"
|
||||
|
@ -1456,6 +1480,30 @@ msgstr "Velocidad de la primera capa"
|
|||
msgid "First layer volumetric"
|
||||
msgstr "Primera capa volumétrica"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Flash printer firmware"
|
||||
msgstr "Flashear firmware de la impresora"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:84
|
||||
msgid "Flash!"
|
||||
msgstr "Flash!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:147
|
||||
msgid "Flashing cancelled."
|
||||
msgstr "Flasheo cancelado."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:146
|
||||
msgid "Flashing failed. Please see the avrdude log below."
|
||||
msgstr "Flasheo fallido. Por favor comprueba el log de avrdude."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:123
|
||||
msgid "Flashing in progress. Please do not disconnect the printer!"
|
||||
msgstr "Flasheo en curso. ¡Por favor no desconecte la impresora!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:145
|
||||
msgid "Flashing succeeded!"
|
||||
msgstr "¡Exito al flashear!"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
|
||||
msgid "Flow"
|
||||
msgstr "Flujo"
|
||||
|
@ -1560,10 +1608,9 @@ msgstr "Altura de la falda expresada en capas. Establezca esto en un valor alto
|
|||
msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
|
||||
msgstr "Hola, bienvenido a Slic3r Prusa Edition! Este %s te ayuda con la configuración inicial; sólo unos pocos ajustes y estarás preparado para imprimir."
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:223
|
||||
#, c-format
|
||||
msgid "Here you can adjust required purging volume (mm%s) for any given pair of tools."
|
||||
msgstr "Aquí puedes ajustar el volumen de purga necesario (mm %s) para cualquier par de herramientas."
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:218
|
||||
msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
|
||||
msgstr "Aquí puedes ajustar el volumende purga requerida (mm³) para cualquier par de herramientas."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
|
||||
msgid "Horizontal shells"
|
||||
|
@ -1748,10 +1795,6 @@ msgstr "Relleno interno"
|
|||
msgid "Invalid API key"
|
||||
msgstr "Clave API incorrecta"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Invalid rotation angle entered"
|
||||
msgstr "Ángulo de rotación introducido inválido"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
|
||||
|
@ -1969,14 +2012,14 @@ msgstr "Velocidad de impresión mínima"
|
|||
msgid "min slic3r version"
|
||||
msgstr "mínima versión de Slic3r"
|
||||
|
||||
#: xs/src/libslic3r/PrintConfig.cpp:951
|
||||
msgid "Minimal filament extrusion length"
|
||||
msgstr "Longitud mínima de filamento extruido"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
|
||||
msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
|
||||
msgstr "Resolución mínima de detalles, utilizada para simplificar el archivo de entrada para acelerar el trabajo de laminado y reducir el uso de memoria. Los modelos de alta resolución suelen llevar más detalles de los que las impresoras pueden ofrecer. Establézcalo en cero para desactivar cualquier simplificación y usar la resolución completa de la entrada."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
|
||||
msgid "Minimum extrusion length"
|
||||
msgstr "Distancia mínima de extrusión"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
|
||||
msgid "Minimum travel after retraction"
|
||||
msgstr "Distancia mínima después de la retracción"
|
||||
|
@ -2291,9 +2334,9 @@ msgstr "Abrir un modelo"
|
|||
msgid "Open CA certificate file"
|
||||
msgstr "Abrir archivo de certificado CA"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
|
||||
msgid "Open STL/OBJ/AMF…\tCtrl+O"
|
||||
msgstr "Abrir STL/OBJ/AMF…\tCtrl+O"
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:194
|
||||
msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
msgstr "Abrir STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
|
||||
msgid "Open the 3D cutting tool"
|
||||
|
@ -2421,6 +2464,10 @@ msgstr "Colocar una copia más del objeto seleccionado"
|
|||
msgid "Plater"
|
||||
msgstr "Plataforma"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1897
|
||||
msgid "Please install the OpenGL modules to use this feature (see build instructions)."
|
||||
msgstr "Por favor instale los módulos OpenGL para usar esta característica (consulte las instrucciones de instalación)."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
|
||||
msgid "Position (for multi-extruder printers)"
|
||||
msgstr "Posición (para impresoras con múltiples extrusores )"
|
||||
|
@ -2538,6 +2585,10 @@ msgstr "Procesando archivo de entrada \n"
|
|||
msgid "Profile dependencies"
|
||||
msgstr "Dependencias de perfil"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:300
|
||||
msgid "Progress:"
|
||||
msgstr "Progreso:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
|
||||
msgid "Prusa 3D Drivers"
|
||||
msgstr "Controladores de Prusa 3D"
|
||||
|
@ -2624,6 +2675,10 @@ msgstr "Ajustes de empuje"
|
|||
msgid "Re-configure"
|
||||
msgstr "Reconfigurar"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:297
|
||||
msgid "Ready"
|
||||
msgstr "Listo"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
|
||||
msgid "Rear"
|
||||
msgstr "Trasera"
|
||||
|
@ -2701,6 +2756,15 @@ msgstr "Informar de un problema"
|
|||
msgid "Report an issue on the Slic3r Prusa Edition"
|
||||
msgstr "Informar de un problema de Slic3r Edición Prusa"
|
||||
|
||||
#: xs/src/slic3r/Utils/PresetUpdater.cpp:514
|
||||
#, c-format
|
||||
msgid "requires min. %s and max. %s"
|
||||
msgstr "requiere un min. %s y un max. %s"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:288
|
||||
msgid "Rescan"
|
||||
msgstr "Rescanear"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
|
||||
msgid "Rescan serial ports"
|
||||
msgstr "Vuelver a examinar los puertos serie"
|
||||
|
@ -2766,10 +2830,6 @@ msgstr "Girar 45 ° en el sentido de las agujas del reloj"
|
|||
msgid "Rotate 45° counter-clockwise"
|
||||
msgstr "Girar 45 ° en el sentido contrario a las agujas del reloj"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Rotate around "
|
||||
msgstr "Girar alrededor "
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
|
||||
msgid "Rotate the selected object by 45° clockwise"
|
||||
msgstr "Girar el objeto seleccionado 45 ° en el sentido de las agujas del reloj"
|
||||
|
@ -2819,6 +2879,10 @@ msgstr "Guardar la configuración como:"
|
|||
msgid "Save current "
|
||||
msgstr "Guardar actualmente "
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1399
|
||||
msgid "Save G-code file as:"
|
||||
msgstr "Guardar archivo Código G como:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
|
||||
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
|
||||
msgstr "Guardar archivo OBJ (menos propenso a errores de coordinación que STL) como:"
|
||||
|
@ -2963,6 +3027,10 @@ msgstr "Puerto serial"
|
|||
msgid "Serial port speed"
|
||||
msgstr "Velocidad del puerto serial"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:286
|
||||
msgid "Serial port:"
|
||||
msgstr "Puerto serie:"
|
||||
|
||||
#: xs/src/slic3r/GUI/BonjourDialog.cpp:68
|
||||
msgid "Service name"
|
||||
msgstr "Nombre del servicio"
|
||||
|
@ -3041,6 +3109,10 @@ msgstr "Carcasas"
|
|||
msgid "Show"
|
||||
msgstr "Mostrar"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show &Configuration Folder"
|
||||
msgstr "Mostrar carpeta &Configuración"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
|
||||
msgid "Show about dialog"
|
||||
msgstr "Mostrar Acerca de"
|
||||
|
@ -3081,6 +3153,10 @@ msgstr "Mostrar el controlador de la impresora"
|
|||
msgid "Show the printer settings"
|
||||
msgstr "Mostrar la configuración de la impresora"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show user configuration folder (datadir)"
|
||||
msgstr "Mostrar carpeta de configuración de usuario (datadir)"
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:1716 xs/src/slic3r/GUI/Tab.cpp:1722
|
||||
msgid "Single extruder MM setup"
|
||||
msgstr "Ajuste para MM con un solo extrusor"
|
||||
|
@ -3389,6 +3465,10 @@ msgstr "Comenzar el código G"
|
|||
msgid "Start new slicing process"
|
||||
msgstr "Comenzar un nuevo proceso de laminado"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:296
|
||||
msgid "Status:"
|
||||
msgstr "Estado:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
|
||||
msgid "STL file exported to "
|
||||
|
@ -4047,6 +4127,10 @@ msgstr "Las actualizaciones nunca se realizan sin el consentimiento del usuario
|
|||
msgid "Upgrade"
|
||||
msgstr "Actualización"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Upload a firmware image into an Arduino based printer"
|
||||
msgstr "Cargar una imagen de firmware a una impresora basada en Arduino"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
|
||||
msgid "USB/Serial connection"
|
||||
msgstr "Conexión USB/Serial"
|
||||
|
@ -4144,10 +4228,9 @@ msgstr "Vista"
|
|||
msgid "Volume"
|
||||
msgstr "Volumen"
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:246
|
||||
#, c-format
|
||||
msgid "Volume to purge (mm%s) when the filament is being"
|
||||
msgstr "Volumen a purgar (mm %s) cuando el filamento se"
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:241
|
||||
msgid "Volume to purge (mm³) when the filament is being"
|
||||
msgstr "Volumen a purgar (mm³) cuando el filamento está siendo"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
|
||||
msgid "Volumetric"
|
||||
|
@ -4224,21 +4307,21 @@ msgstr "Cuando la retracción se compensa después de un movimiento, el extrusor
|
|||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2486
|
||||
msgid "WHITE BULLET icon indicates a non system preset."
|
||||
msgstr "La BALA BLANCA indica un ajuste que no es del sistema."
|
||||
msgstr "El símbolo de VIÑETA BLANCA indica un ajuste que no es del sistema."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2489
|
||||
msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group."
|
||||
msgstr "La BALA BLANCA indica que los ajustes son los mismos que los de la última vez que salvaste los ajustes para el grupo de opciones actual."
|
||||
msgstr "El símbolo de VIÑETA BLANCA indica que los ajustes son los mismos que los de la última vez que salvaste los ajustes para el grupo de opciones actual."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2504
|
||||
msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset."
|
||||
msgstr "La BALA BLANCA indica que los valores son los mismos que los de los ajustes guardados la última vez."
|
||||
msgstr "El símbolo de VIÑETA BLANCA indica que los valores son los mismos que los de los ajustes guardados la última vez."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2451
|
||||
msgid ""
|
||||
"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
|
||||
"for the right button: \tindicates that the settings hasn't been modified."
|
||||
msgstr "BALA BLANCA;para el botón izquierdo: indica un ajuste no original, para el botón derecho: indica que el ajuste no se ha modificado."
|
||||
msgstr "El símbolo de VIÑETA BLANCA;para el botón izquierdo: indica un ajuste no original, para el botón derecho: indica que el ajuste no se ha modificado."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1716
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:70
|
||||
|
@ -4373,7 +4456,7 @@ msgstr "Tu pieza parece demasiado grande, así que se ha escalado automáticamen
|
|||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1742
|
||||
msgid "Z offset"
|
||||
msgstr "desplazamiento en Z"
|
||||
msgstr "Ajuste en altura Z"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:91
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:492
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Generator: Poedit 2.0.8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
|
@ -361,6 +361,10 @@ msgstr "Ajouter…"
|
|||
msgid "Advanced"
|
||||
msgstr "Avancé"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:319
|
||||
msgid "Advanced: avrdude output log"
|
||||
msgstr "Avancé : journal de sortie avrdude"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
|
||||
msgid "After layer change G-code"
|
||||
|
@ -421,6 +425,14 @@ msgstr "secondes approximatives"
|
|||
msgid "Are you sure you want to "
|
||||
msgstr "Êtes-vous sûr de vouloir "
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:365
|
||||
msgid ""
|
||||
"Are you sure you want to cancel firmware flashing?\n"
|
||||
"This could leave your printer in an unusable state!"
|
||||
msgstr ""
|
||||
"Êtes-vous certain de vouloir annuler le processus de flash du firmware ?\n"
|
||||
"Cela pourrait rendre votre imprimante inutilisable !"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
|
||||
msgid "Around X axis…"
|
||||
msgstr "Autour de l'axe X…"
|
||||
|
@ -615,6 +627,14 @@ msgstr "Description des Boutons et des Couleurs de Texte"
|
|||
msgid "by the print profile maximum"
|
||||
msgstr "par le maximum du profil de l'imprimante"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:85
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:213
|
||||
msgid "Cancelling..."
|
||||
msgstr "Annulation..."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2124
|
||||
msgid "Cannot overwrite a system profile."
|
||||
msgstr "Impossible d'écraser un profil système."
|
||||
|
@ -647,14 +667,6 @@ msgstr "Changer le nombre de copies de l'objet sélectionné"
|
|||
msgid "Check for application updates"
|
||||
msgstr "Vérifier les mises à jour de l'application"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for configuration updates"
|
||||
msgstr "Vérifier les mises à jour de configuration"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for updates"
|
||||
msgstr "Vérifier les mises à jour"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
|
||||
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
msgstr "Choisir un fichier à partir duquel importer la forme du plateau (STL/OBJ/AMF/3MF/PRUSA) :"
|
||||
|
@ -731,6 +743,10 @@ msgstr "Une mise à jour de la configuration est disponible"
|
|||
msgid "Configuration Wizard"
|
||||
msgstr "Assistant de Configuration"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:366
|
||||
msgid "Confirmation"
|
||||
msgstr "Confirmation"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
|
||||
msgid "Connection failed."
|
||||
msgstr "La connexion a échoué."
|
||||
|
@ -1073,10 +1089,6 @@ msgstr "Entrez la nouvelle taille pour l'objet sélectionné (plateau d'impressi
|
|||
msgid "Enter the number of copies of the selected object:"
|
||||
msgstr "Entrez le nombre de copies de l'objet sélectionné :"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Enter the rotation angle:"
|
||||
msgstr "Entrez l'angle de rotation :"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
|
||||
#, no-perl-format
|
||||
|
@ -1154,6 +1166,10 @@ msgstr "Option expérimentale qui ajuste le flux pour les surplombs (le flux pou
|
|||
msgid "Export all presets to file"
|
||||
msgstr "Exporter tous les préréglage vers un fichier"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1416
|
||||
msgid "Export cancelled"
|
||||
msgstr "Exportation annulée"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
|
||||
msgid "Export current configuration to file"
|
||||
msgstr "Exporter la configuration actuelle vers un fichier"
|
||||
|
@ -1423,6 +1439,14 @@ msgstr "Terminé"
|
|||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:266
|
||||
msgid "Firmware flasher"
|
||||
msgstr "Outil de flash du firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:293
|
||||
msgid "Firmware image:"
|
||||
msgstr "Image du firmware :"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "Rétraction du Firmware"
|
||||
|
@ -1450,6 +1474,30 @@ msgstr "Vitesse de la première couche"
|
|||
msgid "First layer volumetric"
|
||||
msgstr "Volume de la première couche"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Flash printer firmware"
|
||||
msgstr "Flasher le firmware de l'imprimante"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:84
|
||||
msgid "Flash!"
|
||||
msgstr "Flash !"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:147
|
||||
msgid "Flashing cancelled."
|
||||
msgstr "Processus de flash annulé."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:146
|
||||
msgid "Flashing failed. Please see the avrdude log below."
|
||||
msgstr "Le processus de flash a échoué. Veuillez consulter le journal avrdude ci-dessous."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:123
|
||||
msgid "Flashing in progress. Please do not disconnect the printer!"
|
||||
msgstr "Processus de flash en cours. Veuillez ne pas déconnecter l'imprimante !"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:145
|
||||
msgid "Flashing succeeded!"
|
||||
msgstr "Flash effectué avec succès !"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
|
||||
msgid "Flow"
|
||||
msgstr "Flux"
|
||||
|
@ -1555,10 +1603,9 @@ msgstr "Hauteur de la jupe exprimée en couches. Mettez une valeur élevée pour
|
|||
msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
|
||||
msgstr "Bonjour, bienvenu dans Slic3r Prusa Edition ! Ce %s vous aide à la configuration initiale ; juste quelques paramètres et vous serez prêt à imprimer."
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:223
|
||||
#, c-format
|
||||
msgid "Here you can adjust required purging volume (mm%s) for any given pair of tools."
|
||||
msgstr "Ici, vous pouvez ajuster le volume de purge requis (mm%s) pour chaque paire d'outils."
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:218
|
||||
msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
|
||||
msgstr "Ici vous pouvez ajuster le volume de purge nécessaire (mm³) pour une paire d'outils donnée."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
|
||||
msgid "Horizontal shells"
|
||||
|
@ -1745,10 +1792,6 @@ msgstr "Remplissage interne"
|
|||
msgid "Invalid API key"
|
||||
msgstr "Clé API invalide"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Invalid rotation angle entered"
|
||||
msgstr "Angle de rotation entré invalide"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
|
||||
|
@ -1966,14 +2009,14 @@ msgstr "Vitesse d'impression minimale"
|
|||
msgid "min slic3r version"
|
||||
msgstr "version minimale de slic3r"
|
||||
|
||||
#: xs/src/libslic3r/PrintConfig.cpp:951
|
||||
msgid "Minimal filament extrusion length"
|
||||
msgstr "Longueur minimale d'extrusion de filament"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
|
||||
msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
|
||||
msgstr "Résolution minimale pour les détails, utilisée pour simplifier le fichier d'entrée afin d'accélérer le découpage et de réduire l'utilisation de la mémoire. Les modèles haute-résolution possèdent souvent plus de détails que ce que les imprimantes peuvent produire. Mettez à zéro pour désactiver toute simplification et utiliser la résolution complète de l'entrée."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
|
||||
msgid "Minimum extrusion length"
|
||||
msgstr "Longueur d'extrusion minimale"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
|
||||
msgid "Minimum travel after retraction"
|
||||
msgstr "Trajet minimal après une rétraction"
|
||||
|
@ -2284,9 +2327,9 @@ msgstr "Ouvrir un modèle"
|
|||
msgid "Open CA certificate file"
|
||||
msgstr "Ouvrir le fichier de certificat CA"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
|
||||
msgid "Open STL/OBJ/AMF…\tCtrl+O"
|
||||
msgstr "Ouvrir STL/OBJ/AMF…\tCtrl+O"
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:194
|
||||
msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
msgstr "Ouvrir STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
|
||||
msgid "Open the 3D cutting tool"
|
||||
|
@ -2414,6 +2457,10 @@ msgstr "Placer une copie supplémentaire de l'objet sélectionné"
|
|||
msgid "Plater"
|
||||
msgstr "Plateau"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1897
|
||||
msgid "Please install the OpenGL modules to use this feature (see build instructions)."
|
||||
msgstr "Veuillez installer les modules OpenGL pour pouvoir utiliser cette fonctionnalité (voir les instructions de montage)."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
|
||||
msgid "Position (for multi-extruder printers)"
|
||||
msgstr "Position (pour les imprimantes multi-extrudeurs)"
|
||||
|
@ -2531,6 +2578,10 @@ msgstr "Traitement du fichier d'entrée\n"
|
|||
msgid "Profile dependencies"
|
||||
msgstr "Dépendances du profil"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:300
|
||||
msgid "Progress:"
|
||||
msgstr "Progression :"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
|
||||
msgid "Prusa 3D Drivers"
|
||||
msgstr "Drivers Prusa 3D"
|
||||
|
@ -2617,6 +2668,10 @@ msgstr "Réglages de l'expulsion"
|
|||
msgid "Re-configure"
|
||||
msgstr "Reconfigurer"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:297
|
||||
msgid "Ready"
|
||||
msgstr "Prêt"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
|
||||
msgid "Rear"
|
||||
msgstr "Arrière"
|
||||
|
@ -2694,6 +2749,15 @@ msgstr "Signaler un problème"
|
|||
msgid "Report an issue on the Slic3r Prusa Edition"
|
||||
msgstr "Signaler un problème sur la Prusa Edition de Slic3r"
|
||||
|
||||
#: xs/src/slic3r/Utils/PresetUpdater.cpp:514
|
||||
#, c-format
|
||||
msgid "requires min. %s and max. %s"
|
||||
msgstr "nécessite min. %s et max. %s"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:288
|
||||
msgid "Rescan"
|
||||
msgstr "Scanner à nouveau"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
|
||||
msgid "Rescan serial ports"
|
||||
msgstr "Rescanner les ports série"
|
||||
|
@ -2759,10 +2823,6 @@ msgstr "Pivoter de 45° dans le sens des aiguilles d'une montre"
|
|||
msgid "Rotate 45° counter-clockwise"
|
||||
msgstr "Pivoter de 45° dans le sens inverse des aiguilles d'une montre"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Rotate around "
|
||||
msgstr "Pivoter autour de "
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
|
||||
msgid "Rotate the selected object by 45° clockwise"
|
||||
msgstr "Pivoter l'objet sélectionné de 45° dans le sens des aiguilles d'une montre"
|
||||
|
@ -2812,6 +2872,10 @@ msgstr "Enregistrer la configuration sous :"
|
|||
msgid "Save current "
|
||||
msgstr "Enregistrer l'état actuel "
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1399
|
||||
msgid "Save G-code file as:"
|
||||
msgstr "Sauvegarder le fichier G-code en tant que :"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
|
||||
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
|
||||
msgstr "Enregistrer le fichier OBJ (moins enclin aux erreurs de coordonnées que le STL) sous :"
|
||||
|
@ -2956,6 +3020,10 @@ msgstr "Port série"
|
|||
msgid "Serial port speed"
|
||||
msgstr "Vitesse du port série"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:286
|
||||
msgid "Serial port:"
|
||||
msgstr "Port série :"
|
||||
|
||||
#: xs/src/slic3r/GUI/BonjourDialog.cpp:68
|
||||
msgid "Service name"
|
||||
msgstr "Nom du service"
|
||||
|
@ -3034,6 +3102,10 @@ msgstr "Coques"
|
|||
msgid "Show"
|
||||
msgstr "Afficher"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show &Configuration Folder"
|
||||
msgstr "Afficher le Répertoire de &Configuration"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
|
||||
msgid "Show about dialog"
|
||||
msgstr "Afficher la boîte de dialogue à propos"
|
||||
|
@ -3074,6 +3146,10 @@ msgstr "Afficher le contrôleur de l'imprimante"
|
|||
msgid "Show the printer settings"
|
||||
msgstr "Afficher les réglages de l'imprimante"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show user configuration folder (datadir)"
|
||||
msgstr "Afficher le répertoire de configuration utilisateur (datadir)"
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:1716 xs/src/slic3r/GUI/Tab.cpp:1722
|
||||
msgid "Single extruder MM setup"
|
||||
msgstr "Réglage MM pour extrudeur unique"
|
||||
|
@ -3382,6 +3458,10 @@ msgstr "G-code de début"
|
|||
msgid "Start new slicing process"
|
||||
msgstr "Démarrer un nouveau processus de découpe"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:296
|
||||
msgid "Status:"
|
||||
msgstr "État :"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
|
||||
msgid "STL file exported to "
|
||||
|
@ -4045,6 +4125,10 @@ msgstr "Les mises à jour ne sont jamais appliquées sans l'accord de l'utilisat
|
|||
msgid "Upgrade"
|
||||
msgstr "Mise à jour"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Upload a firmware image into an Arduino based printer"
|
||||
msgstr "Charger un firmware dans une imprimante basée sur un Arduino"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
|
||||
msgid "USB/Serial connection"
|
||||
msgstr "Port USB/Série"
|
||||
|
@ -4142,10 +4226,9 @@ msgstr "Vue"
|
|||
msgid "Volume"
|
||||
msgstr "Volume"
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:246
|
||||
#, c-format
|
||||
msgid "Volume to purge (mm%s) when the filament is being"
|
||||
msgstr "Volume à purger (mm%s) quand le filament est en train d'être"
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:241
|
||||
msgid "Volume to purge (mm³) when the filament is being"
|
||||
msgstr "Volume à purger (mm³) lorsque le filament est"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
|
||||
msgid "Volumetric"
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Generator: Poedit 2.0.8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
|
@ -367,6 +367,10 @@ msgstr "Aggiungi…"
|
|||
msgid "Advanced"
|
||||
msgstr "Avanzate"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:319
|
||||
msgid "Advanced: avrdude output log"
|
||||
msgstr "Avanzato: registro output avrdude"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
|
||||
msgid "After layer change G-code"
|
||||
|
@ -427,6 +431,14 @@ msgstr "secondi approssimativi"
|
|||
msgid "Are you sure you want to "
|
||||
msgstr "Sei sicuro di voler "
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:365
|
||||
msgid ""
|
||||
"Are you sure you want to cancel firmware flashing?\n"
|
||||
"This could leave your printer in an unusable state!"
|
||||
msgstr ""
|
||||
"Sei sicuro di voler cancellare il flash del firmware?\n"
|
||||
"Questo potrebbe lasciare la tua stampante in una condizione inutilizzabile!"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
|
||||
msgid "Around X axis…"
|
||||
msgstr "Attorno l'asse X…"
|
||||
|
@ -503,7 +515,7 @@ msgid ""
|
|||
"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset."
|
||||
msgstr ""
|
||||
"FRECCIA INDIETRO; indica che le impostazioni sono state modificate e non sono uguali all'ultimo preset salvato per l'attuale gruppo opzioni.\n"
|
||||
"Clicca l'icona FRECCIA INDIETRO per resettare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni"
|
||||
"Clicca l'icona FRECCIA INDIETRO per resettare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:43
|
||||
msgid "Background processing"
|
||||
|
@ -621,6 +633,14 @@ msgstr "Descrizione colori testo e pulsanti"
|
|||
msgid "by the print profile maximum"
|
||||
msgstr "secondo il massimo del profilo di stampa"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:85
|
||||
msgid "Cancel"
|
||||
msgstr "Cancella"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:213
|
||||
msgid "Cancelling..."
|
||||
msgstr "Cancellazione..."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2124
|
||||
msgid "Cannot overwrite a system profile."
|
||||
msgstr "Impossibile sovrascrivere un profilo di sistema."
|
||||
|
@ -653,14 +673,6 @@ msgstr "Cambia il numero di copie dell'oggetto selezionato"
|
|||
msgid "Check for application updates"
|
||||
msgstr "Verifica la presenza di aggiornamenti"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for configuration updates"
|
||||
msgstr "Controlla la disponibilità di aggiornamenti di configurazione"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for updates"
|
||||
msgstr "Controlla la disponibilità di aggiornamenti"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
|
||||
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
msgstr "Scegli un file per importare la forma del piano da (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
|
@ -737,6 +749,10 @@ msgstr "Aggiornamento di configurazione disponibile"
|
|||
msgid "Configuration Wizard"
|
||||
msgstr "Wizard di configurazione"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:366
|
||||
msgid "Confirmation"
|
||||
msgstr "Conferma"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
|
||||
msgid "Connection failed."
|
||||
msgstr "Connessione fallita."
|
||||
|
@ -1079,10 +1095,6 @@ msgstr "Inserisci la nuova dimensione massima per l'oggetto selezionato (piano d
|
|||
msgid "Enter the number of copies of the selected object:"
|
||||
msgstr "Inserisci il numero di copie dell'oggetto selezionato:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Enter the rotation angle:"
|
||||
msgstr "Inserisci l'angolo di rotazione:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
|
||||
#, no-perl-format
|
||||
|
@ -1160,6 +1172,10 @@ msgstr "Opzione sperimentale per regolare il flusso delle sporgenze (sarà utili
|
|||
msgid "Export all presets to file"
|
||||
msgstr "Esporta tutti i preset su file"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1416
|
||||
msgid "Export cancelled"
|
||||
msgstr "Esportazione cancellata"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
|
||||
msgid "Export current configuration to file"
|
||||
msgstr "Esporta la configurazione corrente su file"
|
||||
|
@ -1429,6 +1445,14 @@ msgstr "Finito"
|
|||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:266
|
||||
msgid "Firmware flasher"
|
||||
msgstr "Flasher Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:293
|
||||
msgid "Firmware image:"
|
||||
msgstr "Immagine firmware:"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "Retrazione Firmware"
|
||||
|
@ -1456,6 +1480,30 @@ msgstr "Velocità del primo strato"
|
|||
msgid "First layer volumetric"
|
||||
msgstr "Volumetrica primo strato"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Flash printer firmware"
|
||||
msgstr "Installa firmware stampante"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:84
|
||||
msgid "Flash!"
|
||||
msgstr "Flash!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:147
|
||||
msgid "Flashing cancelled."
|
||||
msgstr "Flash cancellato."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:146
|
||||
msgid "Flashing failed. Please see the avrdude log below."
|
||||
msgstr "Flash fallito. Ti preghiamo di consultare il registro avrdude qui sotto."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:123
|
||||
msgid "Flashing in progress. Please do not disconnect the printer!"
|
||||
msgstr "Flash in corso. Non disconnettere la stampante!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:145
|
||||
msgid "Flashing succeeded!"
|
||||
msgstr "Flash completato con successo!"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
|
||||
msgid "Flow"
|
||||
msgstr "Flusso"
|
||||
|
@ -1560,10 +1608,9 @@ msgstr "Altezza dello skirt espresso in layer. Imposta un valore alto per utiliz
|
|||
msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
|
||||
msgstr "Ciao, benvenuto su Slic3r Prusa Edition! Questo %s ti aiuterà con la configurazione iniziale; giusto un paio di impostazioni e sarai pronto a stampare."
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:223
|
||||
#, c-format
|
||||
msgid "Here you can adjust required purging volume (mm%s) for any given pair of tools."
|
||||
msgstr "Qui è possibile regolare il volume di spurgo (mm %s) per qualunque paio di utensili."
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:218
|
||||
msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
|
||||
msgstr "Qui è possibile regolare il volume di spurgo necessario (mm³) per ogni coppia di strumenti."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
|
||||
msgid "Horizontal shells"
|
||||
|
@ -1748,10 +1795,6 @@ msgstr "Riempimento interno"
|
|||
msgid "Invalid API key"
|
||||
msgstr "Chiave API non valida"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Invalid rotation angle entered"
|
||||
msgstr "Inserito angolo di rotazione non valido"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
|
||||
|
@ -1969,14 +2012,14 @@ msgstr "Velocità minima di stampa"
|
|||
msgid "min slic3r version"
|
||||
msgstr "versione min slic3r"
|
||||
|
||||
#: xs/src/libslic3r/PrintConfig.cpp:951
|
||||
msgid "Minimal filament extrusion length"
|
||||
msgstr "Lunghezza di estrusione minima del filamento"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
|
||||
msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
|
||||
msgstr "Risoluzione minima dettaglio, utilizzato per semplificare il file input accelerando lo slicing e riducendo l'utilizzo di memoria. I file ad alta risoluzione spesso hanno più dettaglio di quanto la stampante possa generare. Impostate a zero per disabilitare la semplificazione e utilizzare la risoluzione completa."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
|
||||
msgid "Minimum extrusion length"
|
||||
msgstr "Lunghezza minima dell'estrusione"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
|
||||
msgid "Minimum travel after retraction"
|
||||
msgstr "Spostamento minimo dopo una ritrazione"
|
||||
|
@ -2290,9 +2333,9 @@ msgstr "Aprire un modello"
|
|||
msgid "Open CA certificate file"
|
||||
msgstr "Apri file di certificato CA"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
|
||||
msgid "Open STL/OBJ/AMF…\tCtrl+O"
|
||||
msgstr "Aprire un STL/OBJ/AMF… \tCtrl+O"
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:194
|
||||
msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
msgstr "Apri STL/OBJ/AMF/3MF … \tCtrl+O"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
|
||||
msgid "Open the 3D cutting tool"
|
||||
|
@ -2420,6 +2463,10 @@ msgstr "Posiziona una o più copie dell'oggetto selezionato"
|
|||
msgid "Plater"
|
||||
msgstr "Piano"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1897
|
||||
msgid "Please install the OpenGL modules to use this feature (see build instructions)."
|
||||
msgstr "Ti preghiamo di installare i moduli OpenGL per utilizzare questa funzione (vedi le istruzioni di montaggio)."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
|
||||
msgid "Position (for multi-extruder printers)"
|
||||
msgstr "Posizione (per stampanti multi-estrusore)"
|
||||
|
@ -2537,6 +2584,10 @@ msgstr "Elaborando il file di input\n"
|
|||
msgid "Profile dependencies"
|
||||
msgstr "Dipendenze profilo"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:300
|
||||
msgid "Progress:"
|
||||
msgstr "Progresso:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
|
||||
msgid "Prusa 3D Drivers"
|
||||
msgstr "Driver Prusa 3D"
|
||||
|
@ -2623,6 +2674,10 @@ msgstr "Impostazioni del ramming"
|
|||
msgid "Re-configure"
|
||||
msgstr "Ri-configura"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:297
|
||||
msgid "Ready"
|
||||
msgstr "Pronto"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
|
||||
msgid "Rear"
|
||||
msgstr "Posteriore"
|
||||
|
@ -2700,6 +2755,15 @@ msgstr "Segnala un problema"
|
|||
msgid "Report an issue on the Slic3r Prusa Edition"
|
||||
msgstr "Segnala un problema su Slic3r Prusa Edition"
|
||||
|
||||
#: xs/src/slic3r/Utils/PresetUpdater.cpp:514
|
||||
#, c-format
|
||||
msgid "requires min. %s and max. %s"
|
||||
msgstr "richiede min. %s e max. %s"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:288
|
||||
msgid "Rescan"
|
||||
msgstr "Ri-scansiona"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
|
||||
msgid "Rescan serial ports"
|
||||
msgstr "Scansiona nuovamente porte seriali"
|
||||
|
@ -2765,10 +2829,6 @@ msgstr "Ruota 45° senso orario"
|
|||
msgid "Rotate 45° counter-clockwise"
|
||||
msgstr "Ruota 45° antiorario"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Rotate around "
|
||||
msgstr "Ruota attorno "
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
|
||||
msgid "Rotate the selected object by 45° clockwise"
|
||||
msgstr "Ruota l'oggetto selezionato di 45° in senso orario"
|
||||
|
@ -2818,6 +2878,10 @@ msgstr "Salva configurazione come:"
|
|||
msgid "Save current "
|
||||
msgstr "Salva attuale "
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1399
|
||||
msgid "Save G-code file as:"
|
||||
msgstr "Salva il file G-code come:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
|
||||
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
|
||||
msgstr "Salva il file OBJ (meno soggetto a errori di coordinate dell'STL) come:"
|
||||
|
@ -2962,6 +3026,10 @@ msgstr "Porta seriale"
|
|||
msgid "Serial port speed"
|
||||
msgstr "Velocità porta seriale"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:286
|
||||
msgid "Serial port:"
|
||||
msgstr "Porta seriale:"
|
||||
|
||||
#: xs/src/slic3r/GUI/BonjourDialog.cpp:68
|
||||
msgid "Service name"
|
||||
msgstr "Nome servizio"
|
||||
|
@ -3040,6 +3108,10 @@ msgstr "Gusci"
|
|||
msgid "Show"
|
||||
msgstr "Mostra"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show &Configuration Folder"
|
||||
msgstr "Cartella Mostra &Configurazione"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
|
||||
msgid "Show about dialog"
|
||||
msgstr "Mostra la finestra di dialogo al riguardo di"
|
||||
|
@ -3080,6 +3152,10 @@ msgstr "Mostra controller stampante"
|
|||
msgid "Show the printer settings"
|
||||
msgstr "Mostra impostazioni della stampante"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show user configuration folder (datadir)"
|
||||
msgstr "Mostra cartella configurazione utente (datadir)"
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:1716 xs/src/slic3r/GUI/Tab.cpp:1722
|
||||
msgid "Single extruder MM setup"
|
||||
msgstr "Setup Estrusore singolo MM"
|
||||
|
@ -3388,6 +3464,10 @@ msgstr "Inizia G-code"
|
|||
msgid "Start new slicing process"
|
||||
msgstr "Inizia un nuovo processo di slicing"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:296
|
||||
msgid "Status:"
|
||||
msgstr "Stato:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
|
||||
msgid "STL file exported to "
|
||||
|
@ -4051,6 +4131,10 @@ msgstr "Gli aggiornamenti non vengono mai applicati senza il consenso dell'utent
|
|||
msgid "Upgrade"
|
||||
msgstr "Aggiorna"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Upload a firmware image into an Arduino based printer"
|
||||
msgstr "Carica un'immagine del firmware su una stampante basata su Arduino"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
|
||||
msgid "USB/Serial connection"
|
||||
msgstr "Connessione USB/Seriale"
|
||||
|
@ -4148,10 +4232,9 @@ msgstr "Vista"
|
|||
msgid "Volume"
|
||||
msgstr "Volume"
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:246
|
||||
#, c-format
|
||||
msgid "Volume to purge (mm%s) when the filament is being"
|
||||
msgstr "Volume da purgare (mm %s) mentre il filamento viene"
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:241
|
||||
msgid "Volume to purge (mm³) when the filament is being"
|
||||
msgstr "Il volume di spurgo (mm³) quando il filamento viene"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
|
||||
msgid "Volumetric"
|
||||
|
@ -4216,7 +4299,7 @@ msgstr "Quando viene attivata la retrazione, il filamento viene ritirato per la
|
|||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:808
|
||||
msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow."
|
||||
msgstr "Quando viene impostata altre velocità a 0, Slic3r calcolerà automaticamente la velocità ottimale in modo da mantenere costante la pressione dell'estrusore. Questa impostazione sperimentale è utilizzata per impostare la velocità massima di stampa che vuoi permettere."
|
||||
msgstr "Quando le altre velocità sono impostate a 0, Slic3r calcolerà automaticamente la velocità ottimale in modo da mantenere costante la pressione dell'estrusore. Questa impostazione sperimentale è utilizzata per impostare la velocità massima di stampa che vuoi permettere."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1127
|
||||
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
|
||||
|
@ -4228,15 +4311,15 @@ msgstr "Quando la retrazione è compensata dopo un movimento di spostamento, l'e
|
|||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2486
|
||||
msgid "WHITE BULLET icon indicates a non system preset."
|
||||
msgstr "IL PROIETTILE BIANCO indica un preset non di sistema."
|
||||
msgstr "L'icona a forma di PALLINO BIANCO indica un preset non di sistema."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2489
|
||||
msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group."
|
||||
msgstr "L'icona del PROIETTILE BIANCO indica che le impostazioni sono uguali agli ultimi preset salvati per il gruppo di opzioni corrente."
|
||||
msgstr "L'icona a forma di PALLINO BIANCO indica che le impostazioni sono uguali agli ultimi preset salvati per il gruppo di opzioni corrente."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2504
|
||||
msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset."
|
||||
msgstr "L'icona del PROIETTILE BIANCO indica che il valore è lo stesso dell'ultimo preset salvato."
|
||||
msgstr "L'icona a forma di PALLINO BIANCO indica che il valore è lo stesso dell'ultimo preset salvato."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2451
|
||||
msgid ""
|
||||
|
|
|
@ -5,6 +5,7 @@ xs/src/slic3r/GUI/BonjourDialog.cpp
|
|||
xs/src/slic3r/GUI/ButtonsDescription.cpp
|
||||
xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp
|
||||
xs/src/slic3r/GUI/ConfigWizard.cpp
|
||||
xs/src/slic3r/GUI/FirmwareDialog.cpp
|
||||
xs/src/slic3r/GUI/GUI.cpp
|
||||
xs/src/slic3r/GUI/MsgDialog.cpp
|
||||
xs/src/slic3r/GUI/Tab.cpp
|
||||
|
@ -19,6 +20,7 @@ xs/src/slic3r/GUI/RammingChart.cpp
|
|||
xs/src/slic3r/GUI/UpdateDialogs.cpp
|
||||
xs/src/slic3r/GUI/WipeTowerDialog.cpp
|
||||
xs/src/slic3r/Utils/OctoPrint.cpp
|
||||
xs/src/slic3r/Utils/PresetUpdater.cpp
|
||||
xs/src/libslic3r/PrintConfig.cpp
|
||||
xs/src/libslic3r/GCode/PreviewData.cpp
|
||||
lib/Slic3r/GUI.pm
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3);\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Generator: Poedit 2.0.8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
|
@ -367,6 +367,10 @@ msgstr "Dodaj…"
|
|||
msgid "Advanced"
|
||||
msgstr "Zaawansowane"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:319
|
||||
msgid "Advanced: avrdude output log"
|
||||
msgstr "Zaawansowane: log wyjściowy z avrdude"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
|
||||
msgid "After layer change G-code"
|
||||
|
@ -427,6 +431,14 @@ msgstr "szacowane sekundy"
|
|||
msgid "Are you sure you want to "
|
||||
msgstr "Czy na pewno chcesz "
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:365
|
||||
msgid ""
|
||||
"Are you sure you want to cancel firmware flashing?\n"
|
||||
"This could leave your printer in an unusable state!"
|
||||
msgstr ""
|
||||
"Czy na pewno chcesz przerwać flashowanie firmware?\n"
|
||||
"Może to spowodować nieprzewidziane problemy z drukarką!"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
|
||||
msgid "Around X axis…"
|
||||
msgstr "Wokół osi X…"
|
||||
|
@ -621,6 +633,14 @@ msgstr "Opis Przycisków i Kolorów Tekstu"
|
|||
msgid "by the print profile maximum"
|
||||
msgstr "maksimum zależny od profilu wydruku"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:85
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:213
|
||||
msgid "Cancelling..."
|
||||
msgstr "Anulowanie..."
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:2124
|
||||
msgid "Cannot overwrite a system profile."
|
||||
msgstr "Nie można nadpisać profilu systemowego."
|
||||
|
@ -653,14 +673,6 @@ msgstr "Zmień ilość kopii wybranego modelu"
|
|||
msgid "Check for application updates"
|
||||
msgstr "Sprawdź aktualizacje aplikacji"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for configuration updates"
|
||||
msgstr "Sprawdź aktualizacje konfiguracji"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:404
|
||||
msgid "Check for updates"
|
||||
msgstr "Sprawdź aktualizacje"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
|
||||
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
msgstr "Wybierz plik do importu kształtu stołu (STL/OBJ/AMF/3MF/PRUSA):"
|
||||
|
@ -737,6 +749,10 @@ msgstr "Dostępna jest aktualizacja konfiguracji"
|
|||
msgid "Configuration Wizard"
|
||||
msgstr "Asystent Konfiguracji"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:366
|
||||
msgid "Confirmation"
|
||||
msgstr "Potwierdzenie"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
|
||||
msgid "Connection failed."
|
||||
msgstr "Błąd połączenia."
|
||||
|
@ -1079,10 +1095,6 @@ msgstr "Wprowadź rozmiar dla wybranego modelu (stół: %s mm):"
|
|||
msgid "Enter the number of copies of the selected object:"
|
||||
msgstr "Wprowadź ilość kopii wybranego modelu:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Enter the rotation angle:"
|
||||
msgstr "Wprowadź kąt obrotu:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
|
||||
#, no-perl-format
|
||||
|
@ -1160,6 +1172,10 @@ msgstr "Opcja eksperymentalna dostosowująca przepływ przy zwisach (zostanie za
|
|||
msgid "Export all presets to file"
|
||||
msgstr "Eksport wszystkich zestawów ustawień do pliku"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1416
|
||||
msgid "Export cancelled"
|
||||
msgstr "Eksport anulowany"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
|
||||
msgid "Export current configuration to file"
|
||||
msgstr "Eksport obecnej konfiguracji do pliku"
|
||||
|
@ -1429,6 +1445,14 @@ msgstr "Zakończono"
|
|||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:266
|
||||
msgid "Firmware flasher"
|
||||
msgstr "Flasher firmware"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:293
|
||||
msgid "Firmware image:"
|
||||
msgstr "Obraz firmware:"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "Retrakcja z firmware"
|
||||
|
@ -1456,6 +1480,30 @@ msgstr "Prędkość pierwszej warstwy"
|
|||
msgid "First layer volumetric"
|
||||
msgstr "Objętościowa pierwszej warstwy"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Flash printer firmware"
|
||||
msgstr "Flash firmware drukarki"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:84
|
||||
msgid "Flash!"
|
||||
msgstr "Flash!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:147
|
||||
msgid "Flashing cancelled."
|
||||
msgstr "Flashowanie anulowane."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:146
|
||||
msgid "Flashing failed. Please see the avrdude log below."
|
||||
msgstr "Flashowanie nie powiodło się. Zobacz log z avrdude poniżej."
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:123
|
||||
msgid "Flashing in progress. Please do not disconnect the printer!"
|
||||
msgstr "Flashowanie w toku. Proszę nie odłączać drukarki!"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:145
|
||||
msgid "Flashing succeeded!"
|
||||
msgstr "Flashowanie pomyślne!"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
|
||||
msgid "Flow"
|
||||
msgstr "Przepływ"
|
||||
|
@ -1560,10 +1608,9 @@ msgstr "Wysokość skirtu wyrażona w warstwach. Ustawienie wysokiej wartości s
|
|||
msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
|
||||
msgstr "Witaj w Slic3r Prusa Edition! Ten %s pomoże we wstępnej konfiguracji - tylko kilka ustawień dzieli Cię od gotowości do drukowania."
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:223
|
||||
#, c-format
|
||||
msgid "Here you can adjust required purging volume (mm%s) for any given pair of tools."
|
||||
msgstr "Tutaj możesz ustawić wymaganą długość czyszczenia (mm %s) dla danej pary narzędzi."
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:218
|
||||
msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
|
||||
msgstr "To ustawienie odpowiada za objętość czyszczonego filamentu w (mm³) dla danej pary ekstruderów."
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
|
||||
msgid "Horizontal shells"
|
||||
|
@ -1750,10 +1797,6 @@ msgstr "Wypełnienie wewnętrzne"
|
|||
msgid "Invalid API key"
|
||||
msgstr "Niewłaściwy klucz API"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Invalid rotation angle entered"
|
||||
msgstr "Nieprawidłowa wartość kąta obrotu"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
|
||||
|
@ -1971,14 +2014,14 @@ msgstr "Minimalna prędkość druku"
|
|||
msgid "min slic3r version"
|
||||
msgstr "minimalna wersja slic3r"
|
||||
|
||||
#: xs/src/libslic3r/PrintConfig.cpp:951
|
||||
msgid "Minimal filament extrusion length"
|
||||
msgstr "Minimalna długość ekstruzji"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
|
||||
msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
|
||||
msgstr "Minimalna rozdzielczość, używana do uproszczenia modelu wejściowego, co prowadzi do przyspieszenia procesu cięcia. Modele w wysokiej rozdzielczości mogą zawierać więcej szczegółów niż drukarka jest w stanie przetworzyć. Ustaw zero aby wyłączyć upraszczanie i użyć pełnej rozdzielczości pliku wejściowego."
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
|
||||
msgid "Minimum extrusion length"
|
||||
msgstr "Minimalna długość ekstruzji"
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
|
||||
msgid "Minimum travel after retraction"
|
||||
msgstr "Minimalny ruch jałowy po retrakcji"
|
||||
|
@ -2292,9 +2335,9 @@ msgstr "Otwórz model"
|
|||
msgid "Open CA certificate file"
|
||||
msgstr "Otwórz plik certyfikatu CA"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
|
||||
msgid "Open STL/OBJ/AMF…\tCtrl+O"
|
||||
msgstr "Otwórz STL/OBJ/AMF…\tCtrl+O"
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:194
|
||||
msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
|
||||
msgstr "Otwórz plik STL/OBJ/AMF/3MF... \tCrtl+O"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
|
||||
msgid "Open the 3D cutting tool"
|
||||
|
@ -2422,6 +2465,10 @@ msgstr "Umieść jedną kopię zaznaczonego modelu"
|
|||
msgid "Plater"
|
||||
msgstr "Zawartość stołu"
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1897
|
||||
msgid "Please install the OpenGL modules to use this feature (see build instructions)."
|
||||
msgstr "Proszę zainstalować moduły OpenGL aby używać tej funkcji (zobacz w instrukcji)"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
|
||||
msgid "Position (for multi-extruder printers)"
|
||||
msgstr "Pozycja (dla drukarek z kilkoma ekstruderami)"
|
||||
|
@ -2539,6 +2586,10 @@ msgstr "Przetwarzanie pliku wejściowego\n"
|
|||
msgid "Profile dependencies"
|
||||
msgstr "Zależności profilowe"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:300
|
||||
msgid "Progress:"
|
||||
msgstr "Postęp:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
|
||||
msgid "Prusa 3D Drivers"
|
||||
msgstr "Sterowniki Prusa3D"
|
||||
|
@ -2625,6 +2676,10 @@ msgstr "Ustawienia wyciskania"
|
|||
msgid "Re-configure"
|
||||
msgstr "Ponowna konfiguracja"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:297
|
||||
msgid "Ready"
|
||||
msgstr "Gotowe"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
|
||||
msgid "Rear"
|
||||
msgstr "Tył"
|
||||
|
@ -2702,6 +2757,15 @@ msgstr "Zgłoś problem"
|
|||
msgid "Report an issue on the Slic3r Prusa Edition"
|
||||
msgstr "Zgłoś problem z Slic3r Prusa Edition"
|
||||
|
||||
#: xs/src/slic3r/Utils/PresetUpdater.cpp:514
|
||||
#, c-format
|
||||
msgid "requires min. %s and max. %s"
|
||||
msgstr "wymaga min. %s i max. %s"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:288
|
||||
msgid "Rescan"
|
||||
msgstr "Skanuj ponownie"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
|
||||
msgid "Rescan serial ports"
|
||||
msgstr "Przeskanuj porty szeregowe"
|
||||
|
@ -2767,10 +2831,6 @@ msgstr "Obróć o 45° zgodnie ze wskazówkami zegara"
|
|||
msgid "Rotate 45° counter-clockwise"
|
||||
msgstr "Obróć o 45° przeciwnie do wskazówek zegara"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
|
||||
msgid "Rotate around "
|
||||
msgstr "Obróć wokół "
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
|
||||
msgid "Rotate the selected object by 45° clockwise"
|
||||
msgstr "Obróć wybrany model o 45° zgodnie ze wskazówkami zegara"
|
||||
|
@ -2800,6 +2860,12 @@ msgstr "Obróć wybrany model o dowolny kąt wokół osi Z"
|
|||
msgid "Run %s"
|
||||
msgstr "Uruchom %s"
|
||||
|
||||
#: xs/src/slic3r/GUI/RammingChart.cpp:81 xs/src/slic3r/GUI/RammingChart.cpp:86
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:82
|
||||
#: xs/src/libslic3r/PrintConfig.cpp:480
|
||||
msgid "s"
|
||||
msgstr ""
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1645
|
||||
|
@ -2814,6 +2880,10 @@ msgstr "Zapisz konfigurację jako:"
|
|||
msgid "Save current "
|
||||
msgstr "Zapisz bieżące "
|
||||
|
||||
#: lib/Slic3r/GUI/Plater.pm:1399
|
||||
msgid "Save G-code file as:"
|
||||
msgstr "Zapisz plik G-code jako:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
|
||||
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
|
||||
msgstr "Zapisz plik OBJ (mniej podatny na błędy współrzędnych niż STL) jako:"
|
||||
|
@ -2958,6 +3028,10 @@ msgstr "Port szeregowy"
|
|||
msgid "Serial port speed"
|
||||
msgstr "Szybkość portu szeregowego"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:286
|
||||
msgid "Serial port:"
|
||||
msgstr "Port szeregowy:"
|
||||
|
||||
#: xs/src/slic3r/GUI/BonjourDialog.cpp:68
|
||||
msgid "Service name"
|
||||
msgstr "Nazwa usługi"
|
||||
|
@ -3036,6 +3110,10 @@ msgstr "Powłoka"
|
|||
msgid "Show"
|
||||
msgstr "Pokaż"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show &Configuration Folder"
|
||||
msgstr "Pokaż folder &Konfiguracyjny"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
|
||||
msgid "Show about dialog"
|
||||
msgstr "Pokaż okienko"
|
||||
|
@ -3076,6 +3154,10 @@ msgstr "Pokaż kontroler drukarki"
|
|||
msgid "Show the printer settings"
|
||||
msgstr "Pokaż ustawienia drukarki"
|
||||
|
||||
#: lib/Slic3r/GUI/MainFrame.pm:337
|
||||
msgid "Show user configuration folder (datadir)"
|
||||
msgstr "Pokaż folder z konfiguracjami użytkownika (datadir)"
|
||||
|
||||
#: xs/src/slic3r/GUI/Tab.cpp:1716 xs/src/slic3r/GUI/Tab.cpp:1722
|
||||
msgid "Single extruder MM setup"
|
||||
msgstr "Ustawienia MM dla jednego ekstrudera"
|
||||
|
@ -3384,6 +3466,10 @@ msgstr "G-code startowy"
|
|||
msgid "Start new slicing process"
|
||||
msgstr "Uruchom nowy proces cięcia"
|
||||
|
||||
#: xs/src/slic3r/GUI/FirmwareDialog.cpp:296
|
||||
msgid "Status:"
|
||||
msgstr "Stan:"
|
||||
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
|
||||
#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
|
||||
msgid "STL file exported to "
|
||||
|
@ -3542,6 +3628,11 @@ msgstr "Temperatury"
|
|||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
# Used in context: _("The ") + str_fill_pattern + _(" infill pattern is not supposed to work at 100% density.\n")
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
|
||||
msgid "The "
|
||||
msgstr ""
|
||||
|
||||
#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:309
|
||||
msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders."
|
||||
msgstr "Używany ekstruder (jeśli nie są określone dokładniejsze ustawienia ekstuderów). To ustawienie nadpisuje ustawienia ekstruderów dla obrysów i wypełnienia, ale nie tych dla podpór."
|
||||
|
@ -4039,6 +4130,10 @@ msgstr "Aktualizacje nie są stosowane bez wiedzy użytkownika i nigdy nie nadpi
|
|||
msgid "Upgrade"
|
||||
msgstr "Aktualizacja"
|
||||
|
||||
#: xs/src/slic3r/GUI/GUI.cpp:326
|
||||
msgid "Upload a firmware image into an Arduino based printer"
|
||||
msgstr "Wgraj obraz firmware do drukarki opartej na Adruino"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
|
||||
msgid "USB/Serial connection"
|
||||
msgstr "Połączenie USB/szeregowe"
|
||||
|
@ -4136,10 +4231,9 @@ msgstr "Widok"
|
|||
msgid "Volume"
|
||||
msgstr "Objętość"
|
||||
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:246
|
||||
#, c-format
|
||||
msgid "Volume to purge (mm%s) when the filament is being"
|
||||
msgstr "Objętość czyszczenia (mm %s) gdy filament jest"
|
||||
#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:241
|
||||
msgid "Volume to purge (mm³) when the filament is being"
|
||||
msgstr "Objętość do wyczyszczenia (mm³), gdy filament jest"
|
||||
|
||||
#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
|
||||
msgid "Volumetric"
|
||||
|
|
|
@ -1,985 +0,0 @@
|
|||
# Print profiles for the BarBaz Research printers.
|
||||
|
||||
[vendor]
|
||||
# Vendor name will be shown by the Config Wizard.
|
||||
name = Bar Baz
|
||||
# Configuration version of this file. Config file will only be installed, if the config_version differs.
|
||||
# This means, the server may force the Slic3r configuration to be downgraded.
|
||||
config_version = 0.1.0
|
||||
# Where to get the updates from?
|
||||
config_update_url = https://example.com
|
||||
|
||||
# The printer models will be shown by the Configuration Wizard in this order,
|
||||
# also the first model installed & the first nozzle installed will be activated after install.
|
||||
#TODO: One day we may differentiate variants of the nozzles / hot ends,
|
||||
#for example by the melt zone size, or whether the nozzle is hardened.
|
||||
[printer_model:M1]
|
||||
name = Bar Baz Model 1
|
||||
variants = 0.4; 0.25; 0.6
|
||||
|
||||
[printer_model:M2]
|
||||
name = Bar Baz Model 2
|
||||
variants = 0.4; 0.25; 0.6
|
||||
|
||||
[printer_model:M3]
|
||||
# Printer model name will be shown by the installation wizard.
|
||||
name = Bar Baz Model 3
|
||||
variants = 0.4; 0.6
|
||||
|
||||
# All presets starting with asterisk, for example *common*, are intermediate and they will
|
||||
# not make it into the user interface.
|
||||
|
||||
# Common print preset, mostly derived from MK2 single material with a 0.4mm nozzle.
|
||||
# All other print presets will derive from the *common* print preset.
|
||||
[print:*common*]
|
||||
avoid_crossing_perimeters = 0
|
||||
bridge_acceleration = 1000
|
||||
bridge_angle = 0
|
||||
bridge_flow_ratio = 0.8
|
||||
bridge_speed = 20
|
||||
brim_width = 0
|
||||
clip_multipart_objects = 1
|
||||
compatible_printers =
|
||||
complete_objects = 0
|
||||
default_acceleration = 1000
|
||||
dont_support_bridges = 1
|
||||
elefant_foot_compensation = 0
|
||||
ensure_vertical_shell_thickness = 1
|
||||
external_fill_pattern = rectilinear
|
||||
external_perimeters_first = 0
|
||||
external_perimeter_extrusion_width = 0.45
|
||||
extra_perimeters = 0
|
||||
extruder_clearance_height = 20
|
||||
extruder_clearance_radius = 20
|
||||
extrusion_width = 0.45
|
||||
fill_angle = 45
|
||||
fill_density = 20%
|
||||
fill_pattern = cubic
|
||||
first_layer_acceleration = 1000
|
||||
first_layer_extrusion_width = 0.42
|
||||
first_layer_height = 0.2
|
||||
first_layer_speed = 30
|
||||
gap_fill_speed = 40
|
||||
gcode_comments = 0
|
||||
infill_every_layers = 1
|
||||
infill_extruder = 1
|
||||
infill_extrusion_width = 0.45
|
||||
infill_first = 0
|
||||
infill_only_where_needed = 0
|
||||
infill_overlap = 25%
|
||||
interface_shells = 0
|
||||
max_print_speed = 100
|
||||
max_volumetric_extrusion_rate_slope_negative = 0
|
||||
max_volumetric_extrusion_rate_slope_positive = 0
|
||||
max_volumetric_speed = 0
|
||||
min_skirt_length = 4
|
||||
notes =
|
||||
overhangs = 0
|
||||
only_retract_when_crossing_perimeters = 0
|
||||
ooze_prevention = 0
|
||||
output_filename_format = [input_filename_base].gcode
|
||||
perimeters = 2
|
||||
perimeter_extruder = 1
|
||||
perimeter_extrusion_width = 0.45
|
||||
post_process =
|
||||
print_settings_id =
|
||||
raft_layers = 0
|
||||
resolution = 0
|
||||
seam_position = nearest
|
||||
skirts = 1
|
||||
skirt_distance = 2
|
||||
skirt_height = 3
|
||||
small_perimeter_speed = 20
|
||||
solid_infill_below_area = 0
|
||||
solid_infill_every_layers = 0
|
||||
solid_infill_extruder = 1
|
||||
solid_infill_extrusion_width = 0.45
|
||||
spiral_vase = 0
|
||||
standby_temperature_delta = -5
|
||||
support_material = 0
|
||||
support_material_extruder = 0
|
||||
support_material_extrusion_width = 0.35
|
||||
support_material_interface_extruder = 0
|
||||
support_material_angle = 0
|
||||
support_material_buildplate_only = 0
|
||||
support_material_enforce_layers = 0
|
||||
support_material_contact_distance = 0.15
|
||||
support_material_interface_contact_loops = 0
|
||||
support_material_interface_layers = 2
|
||||
support_material_interface_spacing = 0.2
|
||||
support_material_interface_speed = 100%
|
||||
support_material_pattern = rectilinear
|
||||
support_material_spacing = 2
|
||||
support_material_speed = 50
|
||||
support_material_synchronize_layers = 0
|
||||
support_material_threshold = 45
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 60%
|
||||
thin_walls = 0
|
||||
top_infill_extrusion_width = 0.45
|
||||
top_solid_infill_speed = 40
|
||||
travel_speed = 180
|
||||
wipe_tower = 0
|
||||
wipe_tower_per_color_wipe = 20
|
||||
wipe_tower_width = 60
|
||||
wipe_tower_x = 180
|
||||
wipe_tower_y = 140
|
||||
xy_size_compensation = 0
|
||||
|
||||
# Print parameters common to a 0.25mm diameter nozzle.
|
||||
[print:*0.25nozzle*]
|
||||
external_perimeter_extrusion_width = 0.25
|
||||
extrusion_width = 0.25
|
||||
first_layer_extrusion_width = 0.25
|
||||
infill_extrusion_width = 0.25
|
||||
perimeter_extrusion_width = 0.25
|
||||
solid_infill_extrusion_width = 0.25
|
||||
top_infill_extrusion_width = 0.25
|
||||
support_material_extrusion_width = 0.18
|
||||
support_material_interface_layers = 0
|
||||
support_material_interface_spacing = 0.15
|
||||
support_material_spacing = 1
|
||||
support_material_xy_spacing = 150%
|
||||
|
||||
# Print parameters common to a 0.6mm diameter nozzle.
|
||||
[print:*0.6nozzle*]
|
||||
external_perimeter_extrusion_width = 0.61
|
||||
extrusion_width = 0.67
|
||||
first_layer_extrusion_width = 0.65
|
||||
infill_extrusion_width = 0.7
|
||||
perimeter_extrusion_width = 0.65
|
||||
solid_infill_extrusion_width = 0.65
|
||||
top_infill_extrusion_width = 0.6
|
||||
|
||||
[print:*soluble_support*]
|
||||
overhangs = 1
|
||||
skirts = 0
|
||||
support_material = 1
|
||||
support_material_contact_distance = 0
|
||||
support_material_extruder = 4
|
||||
support_material_extrusion_width = 0.45
|
||||
support_material_interface_extruder = 4
|
||||
support_material_interface_spacing = 0.1
|
||||
support_material_synchronize_layers = 1
|
||||
support_material_threshold = 80
|
||||
support_material_with_sheath = 1
|
||||
wipe_tower = 1
|
||||
|
||||
[print:*0.05mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 10
|
||||
bridge_acceleration = 300
|
||||
bridge_flow_ratio = 0.7
|
||||
default_acceleration = 500
|
||||
external_perimeter_speed = 20
|
||||
fill_density = 20%
|
||||
first_layer_acceleration = 500
|
||||
gap_fill_speed = 20
|
||||
infill_acceleration = 800
|
||||
infill_speed = 30
|
||||
max_print_speed = 80
|
||||
small_perimeter_speed = 15
|
||||
solid_infill_speed = 30
|
||||
support_material_extrusion_width = 0.3
|
||||
support_material_spacing = 1.5
|
||||
layer_height = 0.05
|
||||
perimeter_acceleration = 300
|
||||
perimeter_speed = 30
|
||||
perimeters = 3
|
||||
support_material_speed = 30
|
||||
top_solid_infill_speed = 20
|
||||
top_solid_layers = 15
|
||||
|
||||
[print:0.05mm ULTRADETAIL]
|
||||
inherits = *0.05mm*
|
||||
infill_extrusion_width = 0.5
|
||||
|
||||
[print:0.05mm ULTRADETAIL MK3]
|
||||
inherits = *0.05mm*
|
||||
fill_pattern = grid
|
||||
top_infill_extrusion_width = 0.4
|
||||
|
||||
[print:0.05mm ULTRADETAIL 0.25 nozzle]
|
||||
inherits = *0.05mm*
|
||||
external_perimeter_extrusion_width = 0
|
||||
extrusion_width = 0.28
|
||||
fill_density = 20%
|
||||
first_layer_extrusion_width = 0.3
|
||||
infill_extrusion_width = 0
|
||||
infill_speed = 20
|
||||
max_print_speed = 100
|
||||
perimeter_extrusion_width = 0
|
||||
perimeter_speed = 20
|
||||
small_perimeter_speed = 10
|
||||
solid_infill_extrusion_width = 0
|
||||
solid_infill_speed = 20
|
||||
support_material_speed = 20
|
||||
top_infill_extrusion_width = 0
|
||||
|
||||
[print:0.05mm ULTRADETAIL 0.25 nozzle MK3]
|
||||
inherits = *0.05mm*; *0.25nozzle*
|
||||
fill_pattern = grid
|
||||
top_infill_extrusion_width = 0.4
|
||||
|
||||
[print:*0.10mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 7
|
||||
bridge_flow_ratio = 0.7
|
||||
layer_height = 0.1
|
||||
perimeter_acceleration = 800
|
||||
top_solid_layers = 9
|
||||
|
||||
[print:0.10mm DETAIL]
|
||||
inherits = *0.10mm*
|
||||
external_perimeter_speed = 40
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
perimeter_speed = 50
|
||||
solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL MK3]
|
||||
inherits = *0.10mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL 0.25 nozzle]
|
||||
inherits = *0.10mm*
|
||||
bridge_acceleration = 600
|
||||
external_perimeter_speed = 20
|
||||
infill_acceleration = 1600
|
||||
infill_speed = 40
|
||||
perimeter_acceleration = 600
|
||||
perimeter_speed = 25
|
||||
small_perimeter_speed = 10
|
||||
solid_infill_speed = 40
|
||||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.10mm DETAIL 0.25 nozzle MK3]
|
||||
inherits = *0.10mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL 0.6 nozzle MK3]
|
||||
inherits = *0.10mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:*0.15mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 5
|
||||
external_perimeter_speed = 40
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
layer_height = 0.15
|
||||
perimeter_acceleration = 800
|
||||
perimeter_speed = 50
|
||||
solid_infill_speed = 50
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_layers = 7
|
||||
|
||||
[print:0.15mm 100mms Linear Advance]
|
||||
inherits = *0.15mm*
|
||||
bridge_flow_ratio = 0.95
|
||||
external_perimeter_speed = 50
|
||||
infill_speed = 100
|
||||
max_print_speed = 150
|
||||
perimeter_speed = 60
|
||||
small_perimeter_speed = 30
|
||||
solid_infill_speed = 100
|
||||
support_material_speed = 60
|
||||
top_solid_infill_speed = 70
|
||||
|
||||
[print:0.15mm OPTIMAL]
|
||||
inherits = *0.15mm*
|
||||
top_infill_extrusion_width = 0.45
|
||||
|
||||
[print:0.15mm OPTIMAL 0.25 nozzle]
|
||||
inherits = *0.15mm*; *0.25nozzle*
|
||||
bridge_acceleration = 600
|
||||
bridge_flow_ratio = 0.7
|
||||
external_perimeter_speed = 20
|
||||
infill_acceleration = 1600
|
||||
infill_speed = 40
|
||||
perimeter_acceleration = 600
|
||||
perimeter_speed = 25
|
||||
small_perimeter_speed = 10
|
||||
solid_infill_speed = 40
|
||||
support_material_extrusion_width = 0.2
|
||||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.15mm OPTIMAL 0.6 nozzle]
|
||||
inherits = *0.15mm*; *0.6nozzle*
|
||||
|
||||
[print:0.15mm OPTIMAL MK3]
|
||||
inherits = *0.15mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.15mm OPTIMAL SOLUBLE FULL]
|
||||
inherits = *0.15mm*; *soluble_support*
|
||||
external_perimeter_speed = 25
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft/skirt extruder & Support material/raft interface extruder
|
||||
perimeter_speed = 40
|
||||
solid_infill_speed = 40
|
||||
top_infill_extrusion_width = 0.45
|
||||
top_solid_infill_speed = 30
|
||||
wipe_tower = 1
|
||||
|
||||
[print:0.15mm OPTIMAL SOLUBLE INTERFACE]
|
||||
inherits = 0.15mm OPTIMAL SOLUBLE FULL
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft interface extruder
|
||||
support_material_extruder = 0
|
||||
support_material_interface_layers = 3
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 80%
|
||||
|
||||
[print:0.15mm OPTIMAL 0.25 nozzle MK3]
|
||||
inherits = *0.15mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
[print:*0.20mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 4
|
||||
bridge_flow_ratio = 0.95
|
||||
external_perimeter_speed = 40
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
layer_height = 0.2
|
||||
perimeter_acceleration = 800
|
||||
perimeter_speed = 50
|
||||
solid_infill_speed = 50
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_layers = 5
|
||||
|
||||
[print:0.15mm OPTIMAL 0.6 nozzle MK3]
|
||||
inherits = *0.15mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.20mm 100mms Linear Advance]
|
||||
inherits = *0.20mm*
|
||||
external_perimeter_speed = 50
|
||||
infill_speed = 100
|
||||
max_print_speed = 150
|
||||
perimeter_speed = 60
|
||||
small_perimeter_speed = 30
|
||||
solid_infill_speed = 100
|
||||
support_material_speed = 60
|
||||
top_solid_infill_speed = 70
|
||||
|
||||
[print:0.20mm FAST MK3]
|
||||
inherits = *0.20mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.20mm NORMAL]
|
||||
inherits = *0.20mm*
|
||||
|
||||
[print:0.20mm NORMAL 0.6 nozzle]
|
||||
inherits = *0.20mm*; *0.6nozzle*
|
||||
|
||||
[print:0.20mm NORMAL SOLUBLE FULL]
|
||||
inherits = *0.20mm*; *soluble_support*
|
||||
external_perimeter_speed = 30
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft/skirt extruder & Support material/raft interface extruder
|
||||
perimeter_speed = 40
|
||||
solid_infill_speed = 40
|
||||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.20mm NORMAL SOLUBLE INTERFACE]
|
||||
inherits = 0.20mm NORMAL SOLUBLE FULL
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft interface extruder
|
||||
support_material_extruder = 0
|
||||
support_material_interface_layers = 3
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 80%
|
||||
|
||||
[print:0.20mm FAST 0.6 nozzle MK3]
|
||||
inherits = *0.20mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:*0.35mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 3
|
||||
external_perimeter_extrusion_width = 0.6
|
||||
external_perimeter_speed = 40
|
||||
first_layer_extrusion_width = 0.75
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
layer_height = 0.35
|
||||
perimeter_acceleration = 800
|
||||
perimeter_extrusion_width = 0.65
|
||||
perimeter_speed = 50
|
||||
solid_infill_extrusion_width = 0.65
|
||||
solid_infill_speed = 60
|
||||
top_solid_infill_speed = 50
|
||||
top_solid_layers = 4
|
||||
|
||||
[print:0.35mm FAST]
|
||||
inherits = *0.35mm*
|
||||
bridge_flow_ratio = 0.95
|
||||
first_layer_extrusion_width = 0.42
|
||||
perimeter_extrusion_width = 0.43
|
||||
solid_infill_extrusion_width = 0.7
|
||||
top_infill_extrusion_width = 0.43
|
||||
|
||||
[print:0.35mm FAST 0.6 nozzle]
|
||||
inherits = *0.35mm*; *0.6nozzle*
|
||||
|
||||
[print:0.35mm FAST sol full 0.6 nozzle]
|
||||
inherits = *0.35mm*; *0.6nozzle*; *soluble_support*
|
||||
external_perimeter_extrusion_width = 0.6
|
||||
external_perimeter_speed = 30
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft interface extruder
|
||||
perimeter_speed = 40
|
||||
support_material_extrusion_width = 0.55
|
||||
support_material_interface_layers = 3
|
||||
support_material_xy_spacing = 120%
|
||||
top_infill_extrusion_width = 0.57
|
||||
|
||||
[print:0.35mm FAST sol int 0.6 nozzle]
|
||||
inherits = 0.35mm FAST sol full 0.6 nozzle
|
||||
support_material_extruder = 0
|
||||
support_material_interface_layers = 2
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 150%
|
||||
|
||||
[filament:*common*]
|
||||
cooling = 1
|
||||
compatible_printers =
|
||||
end_filament_gcode = "; Filament-specific end gcode"
|
||||
extrusion_multiplier = 1
|
||||
filament_cost = 0
|
||||
filament_density = 0
|
||||
filament_diameter = 1.75
|
||||
filament_notes = ""
|
||||
filament_settings_id =
|
||||
filament_soluble = 0
|
||||
min_print_speed = 5
|
||||
slowdown_below_layer_time = 20
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}30{endif}; Filament gcode"
|
||||
|
||||
[filament:*PLA*]
|
||||
inherits = *common*
|
||||
bed_temperature = 60
|
||||
bridge_fan_speed = 100
|
||||
disable_fan_first_layers = 1
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #FF3232
|
||||
filament_max_volumetric_speed = 15
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 60
|
||||
first_layer_temperature = 215
|
||||
max_fan_speed = 100
|
||||
min_fan_speed = 100
|
||||
temperature = 210
|
||||
|
||||
[filament:*PET*]
|
||||
inherits = *common*
|
||||
bed_temperature = 90
|
||||
bridge_fan_speed = 50
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 20
|
||||
filament_colour = #FF8000
|
||||
filament_max_volumetric_speed = 8
|
||||
filament_type = PET
|
||||
first_layer_bed_temperature = 85
|
||||
first_layer_temperature = 230
|
||||
max_fan_speed = 50
|
||||
min_fan_speed = 30
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}45{endif}; Filament gcode"
|
||||
temperature = 240
|
||||
|
||||
[filament:*ABS*]
|
||||
inherits = *common*
|
||||
bed_temperature = 110
|
||||
bridge_fan_speed = 30
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 20
|
||||
filament_colour = #3A80CA
|
||||
filament_max_volumetric_speed = 11
|
||||
filament_type = ABS
|
||||
first_layer_bed_temperature = 100
|
||||
first_layer_temperature = 255
|
||||
max_fan_speed = 30
|
||||
min_fan_speed = 20
|
||||
temperature = 255
|
||||
|
||||
[filament:*FLEX*]
|
||||
inherits = *common*
|
||||
bridge_fan_speed = 100
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 1
|
||||
extrusion_multiplier = 1.2
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #00CA0A
|
||||
filament_max_volumetric_speed = 1.5
|
||||
filament_type = FLEX
|
||||
first_layer_bed_temperature = 50
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 90
|
||||
min_fan_speed = 70
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 240
|
||||
|
||||
[filament:ColorFabb Brass Bronze]
|
||||
inherits = *PLA*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 10
|
||||
|
||||
[filament:ColorFabb HT]
|
||||
inherits = *PET*
|
||||
bed_temperature = 110
|
||||
bridge_fan_speed = 30
|
||||
cooling = 1
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 10
|
||||
first_layer_bed_temperature = 105
|
||||
first_layer_temperature = 270
|
||||
max_fan_speed = 20
|
||||
min_fan_speed = 10
|
||||
min_print_speed = 5
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}45{endif}; Filament gcode"
|
||||
temperature = 270
|
||||
|
||||
[filament:ColorFabb PLA-PHA]
|
||||
inherits = *PLA*
|
||||
|
||||
[filament:ColorFabb Woodfil]
|
||||
inherits = *PLA*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 10
|
||||
first_layer_temperature = 200
|
||||
min_print_speed = 5
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 200
|
||||
|
||||
[filament:ColorFabb XT]
|
||||
inherits = *PET*
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 260
|
||||
temperature = 270
|
||||
|
||||
[filament:ColorFabb XT-CF20]
|
||||
inherits = *PET*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 1
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 260
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}30{endif}; Filament gcode"
|
||||
temperature = 260
|
||||
|
||||
[filament:ColorFabb nGen]
|
||||
inherits = *PET*
|
||||
bridge_fan_speed = 40
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 10
|
||||
filament_type = NGEN
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 35
|
||||
min_fan_speed = 20
|
||||
|
||||
[filament:ColorFabb nGen flex]
|
||||
inherits = *FLEX*
|
||||
bed_temperature = 85
|
||||
bridge_fan_speed = 40
|
||||
cooling = 1
|
||||
disable_fan_first_layers = 3
|
||||
extrusion_multiplier = 1
|
||||
fan_below_layer_time = 10
|
||||
filament_max_volumetric_speed = 5
|
||||
first_layer_bed_temperature = 85
|
||||
first_layer_temperature = 260
|
||||
max_fan_speed = 35
|
||||
min_fan_speed = 20
|
||||
temperature = 260
|
||||
|
||||
[filament:E3D Edge]
|
||||
inherits = *PET*
|
||||
filament_notes = "List of manufacturers tested with standart PET print settings for MK2:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladeč PETG"
|
||||
|
||||
[filament:E3D PC-ABS]
|
||||
inherits = *ABS*
|
||||
first_layer_temperature = 270
|
||||
temperature = 270
|
||||
|
||||
[filament:Fillamentum ABS]
|
||||
inherits = *ABS*
|
||||
first_layer_temperature = 240
|
||||
temperature = 240
|
||||
|
||||
[filament:Fillamentum ASA]
|
||||
inherits = *ABS*
|
||||
fan_always_on = 1
|
||||
first_layer_temperature = 265
|
||||
temperature = 265
|
||||
|
||||
[filament:Fillamentum CPE HG100 HM100]
|
||||
inherits = *PET*
|
||||
filament_notes = "CPE HG100 , CPE HM100"
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 275
|
||||
max_fan_speed = 50
|
||||
min_fan_speed = 50
|
||||
temperature = 275
|
||||
|
||||
[filament:Fillamentum Timberfil]
|
||||
inherits = *PLA*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 10
|
||||
first_layer_temperature = 190
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 190
|
||||
|
||||
[filament:Generic ABS]
|
||||
inherits = *ABS*
|
||||
filament_notes = "List of materials tested with standart ABS print settings for MK2:\n\nEsun ABS\nFil-A-Gehr ABS\nHatchboxABS\nPlasty Mladeč ABS"
|
||||
|
||||
[filament:Generic PET]
|
||||
inherits = *PET*
|
||||
filament_notes = "List of manufacturers tested with standart PET print settings for MK2:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladeč PETG"
|
||||
|
||||
[filament:Generic PLA]
|
||||
inherits = *PLA*
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH"
|
||||
|
||||
[filament:Polymaker PC-Max]
|
||||
inherits = *ABS*
|
||||
bed_temperature = 115
|
||||
filament_colour = #3A80CA
|
||||
first_layer_bed_temperature = 100
|
||||
first_layer_temperature = 270
|
||||
temperature = 270
|
||||
|
||||
[filament:Primavalue PVA]
|
||||
inherits = *PLA*
|
||||
cooling = 0
|
||||
fan_always_on = 0
|
||||
filament_colour = #FFFFD7
|
||||
filament_max_volumetric_speed = 10
|
||||
filament_notes = "List of materials tested with standart PVA print settings for MK2:\n\nPrimaSelect PVA+\nICE FILAMENTS PVA 'NAUGHTY NATURAL'\nVerbatim BVOH"
|
||||
filament_soluble = 1
|
||||
filament_type = PVA
|
||||
first_layer_temperature = 195
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 195
|
||||
|
||||
[filament:BarBaz ABS]
|
||||
inherits = *ABS*
|
||||
filament_notes = "List of materials tested with standart ABS print settings for MK2:\n\nEsun ABS\nFil-A-Gehr ABS\nHatchboxABS\nPlasty Mladeč ABS"
|
||||
|
||||
[filament:BarBaz HIPS]
|
||||
inherits = *ABS*
|
||||
bridge_fan_speed = 50
|
||||
cooling = 1
|
||||
extrusion_multiplier = 0.9
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 10
|
||||
filament_colour = #FFFFD7
|
||||
filament_soluble = 1
|
||||
filament_type = HIPS
|
||||
first_layer_temperature = 220
|
||||
max_fan_speed = 20
|
||||
min_fan_speed = 20
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 220
|
||||
|
||||
[filament:BarBaz PET]
|
||||
inherits = *PET*
|
||||
filament_notes = "List of manufacturers tested with standart PET print settings for MK2:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladeč PETG"
|
||||
|
||||
[filament:BarBaz PLA]
|
||||
inherits = *PLA*
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH"
|
||||
|
||||
[filament:SemiFlex or Flexfill 98A]
|
||||
inherits = *FLEX*
|
||||
|
||||
[filament:Taulman Bridge]
|
||||
inherits = *common*
|
||||
bed_temperature = 90
|
||||
bridge_fan_speed = 40
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 20
|
||||
filament_colour = #DEE0E6
|
||||
filament_max_volumetric_speed = 10
|
||||
filament_soluble = 0
|
||||
filament_type = PET
|
||||
first_layer_bed_temperature = 60
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 5
|
||||
min_fan_speed = 0
|
||||
min_print_speed = 5
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 250
|
||||
|
||||
[filament:Taulman T-Glase]
|
||||
inherits = *PET*
|
||||
bridge_fan_speed = 40
|
||||
cooling = 0
|
||||
fan_always_on = 0
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 5
|
||||
min_fan_speed = 0
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}30{endif}; Filament gcode"
|
||||
|
||||
[filament:Verbatim BVOH]
|
||||
inherits = *common*
|
||||
bed_temperature = 60
|
||||
bridge_fan_speed = 100
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 1
|
||||
extrusion_multiplier = 1
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #FFFFD7
|
||||
filament_max_volumetric_speed = 10
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH"
|
||||
filament_soluble = 1
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 60
|
||||
first_layer_temperature = 215
|
||||
max_fan_speed = 100
|
||||
min_fan_speed = 100
|
||||
min_print_speed = 15
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 210
|
||||
|
||||
[filament:Verbatim PP]
|
||||
inherits = *common*
|
||||
bed_temperature = 100
|
||||
bridge_fan_speed = 100
|
||||
cooling = 1
|
||||
disable_fan_first_layers = 2
|
||||
extrusion_multiplier = 1
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #DEE0E6
|
||||
filament_max_volumetric_speed = 5
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nEsun PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nEUMAKERS PLA"
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 100
|
||||
first_layer_temperature = 220
|
||||
max_fan_speed = 100
|
||||
min_fan_speed = 100
|
||||
min_print_speed = 15
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 220
|
||||
|
||||
[printer:*common*]
|
||||
bed_shape = 0x0,250x0,250x210,0x210
|
||||
before_layer_gcode = ;BEFORE_LAYER_CHANGE\n;[layer_z]\n\n
|
||||
between_objects_gcode =
|
||||
deretract_speed = 0
|
||||
end_gcode = G4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
extruder_colour = #FFFF00
|
||||
extruder_offset = 0x0
|
||||
gcode_flavor = marlin
|
||||
layer_gcode = ;AFTER_LAYER_CHANGE\n;[layer_z]
|
||||
max_layer_height = 0.25
|
||||
min_layer_height = 0.07
|
||||
nozzle_diameter = 0.4
|
||||
octoprint_apikey =
|
||||
octoprint_host =
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_BarBaz3D\nPRINTER_MODEL_MK2\n
|
||||
printer_settings_id =
|
||||
retract_before_travel = 1
|
||||
retract_before_wipe = 0%
|
||||
retract_layer_change = 1
|
||||
retract_length = 0.8
|
||||
retract_length_toolchange = 4
|
||||
retract_lift = 0.6
|
||||
retract_lift_above = 0
|
||||
retract_lift_below = 199
|
||||
retract_restart_extra = 0
|
||||
retract_restart_extra_toolchange = 0
|
||||
retract_speed = 35
|
||||
serial_port =
|
||||
serial_speed = 250000
|
||||
single_extruder_multi_material = 0
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
|
||||
toolchange_gcode =
|
||||
use_firmware_retraction = 0
|
||||
use_relative_e_distances = 1
|
||||
use_volumetric_e = 0
|
||||
variable_layer_height = 1
|
||||
wipe = 1
|
||||
z_offset = 0
|
||||
printer_model = M2
|
||||
printer_variant = 0.4
|
||||
default_print_profile = 0.15mm OPTIMAL
|
||||
default_filament_profile = BarBaz PLA
|
||||
|
||||
[printer:*multimaterial*]
|
||||
inherits = *common*
|
||||
deretract_speed = 50
|
||||
retract_before_travel = 3
|
||||
retract_before_wipe = 60%
|
||||
retract_layer_change = 0
|
||||
retract_length = 4
|
||||
retract_lift = 0.6
|
||||
retract_lift_above = 0
|
||||
retract_lift_below = 199
|
||||
retract_restart_extra = 0
|
||||
retract_restart_extra_toolchange = 0
|
||||
retract_speed = 80
|
||||
single_extruder_multi_material = 1
|
||||
printer_model = M3
|
||||
|
||||
[printer:*mm-single*]
|
||||
inherits = *multimaterial*
|
||||
end_gcode = G1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\nM107 ; fan off\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors\n\n
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_BarBaz3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\n; Start G-Code sequence START\nT?\nM104 S[first_layer_temperature]\nM140 S[first_layer_bed_temperature]\nM109 S[first_layer_temperature]\nM190 S[first_layer_bed_temperature]\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100\nM92 E140\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG1 E-4 F1000.0\nG92 E0.0
|
||||
|
||||
[printer:*mm-multi*]
|
||||
inherits = *multimaterial*
|
||||
end_gcode = {if not has_wipe_tower}\n; Pull the filament into the cooling tubes.\nG1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\n{endif}\nM107 ; fan off\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors
|
||||
extruder_colour = #FFAA55;#5182DB;#4ECDD3;#FB7259
|
||||
nozzle_diameter = 0.4,0.4,0.4,0.4
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_BarBaz3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\n; Start G-Code sequence START\nT[initial_tool]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100 ; set max feedrate\nM92 E140 ; E-steps per filament milimeter\n{if not has_wipe_tower}\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG1 E-4 F1000.0\n{endif}\nG92 E0.0
|
||||
variable_layer_height = 0
|
||||
|
||||
[printer:BarBaz i3 MK2]
|
||||
inherits = *common*
|
||||
|
||||
[printer:BarBaz i3 MK2 0.25 nozzle]
|
||||
inherits = *common*
|
||||
max_layer_height = 0.1
|
||||
min_layer_height = 0.05
|
||||
nozzle_diameter = 0.25
|
||||
retract_length = 1
|
||||
retract_speed = 50
|
||||
variable_layer_height = 0
|
||||
printer_variant = 0.25
|
||||
default_print_profile = 0.10mm DETAIL 0.25 nozzle
|
||||
|
||||
[printer:BarBaz i3 MK2 0.6 nozzle]
|
||||
inherits = *common*
|
||||
max_layer_height = 0.35
|
||||
min_layer_height = 0.1
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
|
||||
[printer:BarBaz i3 MK2 MM Single Mode]
|
||||
inherits = *mm-single*
|
||||
|
||||
[printer:BarBaz i3 MK2 MM Single Mode 0.6 nozzle]
|
||||
inherits = *mm-single*
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
|
||||
[printer:BarBaz i3 MK2 MultiMaterial]
|
||||
inherits = *mm-multi*
|
||||
nozzle_diameter = 0.4,0.4,0.4,0.4
|
||||
|
||||
[printer:BarBaz i3 MK2 MultiMaterial 0.6 nozzle]
|
||||
inherits = *mm-multi*
|
||||
nozzle_diameter = 0.6,0.6,0.6,0.6
|
||||
printer_variant = 0.6
|
||||
|
||||
[printer:BarBaz i3 MK3]
|
||||
inherits = *common*
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_BarBaz3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = M1
|
||||
default_print_profile = 0.15mm OPTIMAL MK3
|
||||
|
||||
[printer:BarBaz i3 MK3 0.25 nozzle]
|
||||
inherits = *common*
|
||||
nozzle_diameter = 0.25
|
||||
printer_variant = 0.25
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_BarBaz3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = M1
|
||||
default_print_profile = 0.10mm DETAIL MK3
|
||||
|
||||
[printer:BarBaz i3 MK3 0.6 nozzle]
|
||||
inherits = *common*
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_BarBaz3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = M1
|
||||
default_print_profile = 0.15mm OPTIMAL MK3
|
|
@ -1,985 +0,0 @@
|
|||
# Print profiles for the Foobar Research printers.
|
||||
|
||||
[vendor]
|
||||
# Vendor name will be shown by the Config Wizard.
|
||||
name = Foo Bar
|
||||
# Configuration version of this file. Config file will only be installed, if the config_version differs.
|
||||
# This means, the server may force the Slic3r configuration to be downgraded.
|
||||
config_version = 0.1.0
|
||||
# Where to get the updates from?
|
||||
config_update_url = https://example.com
|
||||
|
||||
# The printer models will be shown by the Configuration Wizard in this order,
|
||||
# also the first model installed & the first nozzle installed will be activated after install.
|
||||
#TODO: One day we may differentiate variants of the nozzles / hot ends,
|
||||
#for example by the melt zone size, or whether the nozzle is hardened.
|
||||
[printer_model:M1]
|
||||
name = Foo Bar Model 1
|
||||
variants = 0.4; 0.25; 0.6
|
||||
|
||||
[printer_model:M2]
|
||||
name = Foo Bar Model 2
|
||||
variants = 0.4; 0.25; 0.6
|
||||
|
||||
[printer_model:M3]
|
||||
# Printer model name will be shown by the installation wizard.
|
||||
name = Foo Bar Model 3
|
||||
variants = 0.4; 0.6
|
||||
|
||||
# All presets starting with asterisk, for example *common*, are intermediate and they will
|
||||
# not make it into the user interface.
|
||||
|
||||
# Common print preset, mostly derived from MK2 single material with a 0.4mm nozzle.
|
||||
# All other print presets will derive from the *common* print preset.
|
||||
[print:*common*]
|
||||
avoid_crossing_perimeters = 0
|
||||
bridge_acceleration = 1000
|
||||
bridge_angle = 0
|
||||
bridge_flow_ratio = 0.8
|
||||
bridge_speed = 20
|
||||
brim_width = 0
|
||||
clip_multipart_objects = 1
|
||||
compatible_printers =
|
||||
complete_objects = 0
|
||||
default_acceleration = 1000
|
||||
dont_support_bridges = 1
|
||||
elefant_foot_compensation = 0
|
||||
ensure_vertical_shell_thickness = 1
|
||||
external_fill_pattern = rectilinear
|
||||
external_perimeters_first = 0
|
||||
external_perimeter_extrusion_width = 0.45
|
||||
extra_perimeters = 0
|
||||
extruder_clearance_height = 20
|
||||
extruder_clearance_radius = 20
|
||||
extrusion_width = 0.45
|
||||
fill_angle = 45
|
||||
fill_density = 20%
|
||||
fill_pattern = cubic
|
||||
first_layer_acceleration = 1000
|
||||
first_layer_extrusion_width = 0.42
|
||||
first_layer_height = 0.2
|
||||
first_layer_speed = 30
|
||||
gap_fill_speed = 40
|
||||
gcode_comments = 0
|
||||
infill_every_layers = 1
|
||||
infill_extruder = 1
|
||||
infill_extrusion_width = 0.45
|
||||
infill_first = 0
|
||||
infill_only_where_needed = 0
|
||||
infill_overlap = 25%
|
||||
interface_shells = 0
|
||||
max_print_speed = 100
|
||||
max_volumetric_extrusion_rate_slope_negative = 0
|
||||
max_volumetric_extrusion_rate_slope_positive = 0
|
||||
max_volumetric_speed = 0
|
||||
min_skirt_length = 4
|
||||
notes =
|
||||
overhangs = 0
|
||||
only_retract_when_crossing_perimeters = 0
|
||||
ooze_prevention = 0
|
||||
output_filename_format = [input_filename_base].gcode
|
||||
perimeters = 2
|
||||
perimeter_extruder = 1
|
||||
perimeter_extrusion_width = 0.45
|
||||
post_process =
|
||||
print_settings_id =
|
||||
raft_layers = 0
|
||||
resolution = 0
|
||||
seam_position = nearest
|
||||
skirts = 1
|
||||
skirt_distance = 2
|
||||
skirt_height = 3
|
||||
small_perimeter_speed = 20
|
||||
solid_infill_below_area = 0
|
||||
solid_infill_every_layers = 0
|
||||
solid_infill_extruder = 1
|
||||
solid_infill_extrusion_width = 0.45
|
||||
spiral_vase = 0
|
||||
standby_temperature_delta = -5
|
||||
support_material = 0
|
||||
support_material_extruder = 0
|
||||
support_material_extrusion_width = 0.35
|
||||
support_material_interface_extruder = 0
|
||||
support_material_angle = 0
|
||||
support_material_buildplate_only = 0
|
||||
support_material_enforce_layers = 0
|
||||
support_material_contact_distance = 0.15
|
||||
support_material_interface_contact_loops = 0
|
||||
support_material_interface_layers = 2
|
||||
support_material_interface_spacing = 0.2
|
||||
support_material_interface_speed = 100%
|
||||
support_material_pattern = rectilinear
|
||||
support_material_spacing = 2
|
||||
support_material_speed = 50
|
||||
support_material_synchronize_layers = 0
|
||||
support_material_threshold = 45
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 60%
|
||||
thin_walls = 0
|
||||
top_infill_extrusion_width = 0.45
|
||||
top_solid_infill_speed = 40
|
||||
travel_speed = 180
|
||||
wipe_tower = 0
|
||||
wipe_tower_per_color_wipe = 20
|
||||
wipe_tower_width = 60
|
||||
wipe_tower_x = 180
|
||||
wipe_tower_y = 140
|
||||
xy_size_compensation = 0
|
||||
|
||||
# Print parameters common to a 0.25mm diameter nozzle.
|
||||
[print:*0.25nozzle*]
|
||||
external_perimeter_extrusion_width = 0.25
|
||||
extrusion_width = 0.25
|
||||
first_layer_extrusion_width = 0.25
|
||||
infill_extrusion_width = 0.25
|
||||
perimeter_extrusion_width = 0.25
|
||||
solid_infill_extrusion_width = 0.25
|
||||
top_infill_extrusion_width = 0.25
|
||||
support_material_extrusion_width = 0.18
|
||||
support_material_interface_layers = 0
|
||||
support_material_interface_spacing = 0.15
|
||||
support_material_spacing = 1
|
||||
support_material_xy_spacing = 150%
|
||||
|
||||
# Print parameters common to a 0.6mm diameter nozzle.
|
||||
[print:*0.6nozzle*]
|
||||
external_perimeter_extrusion_width = 0.61
|
||||
extrusion_width = 0.67
|
||||
first_layer_extrusion_width = 0.65
|
||||
infill_extrusion_width = 0.7
|
||||
perimeter_extrusion_width = 0.65
|
||||
solid_infill_extrusion_width = 0.65
|
||||
top_infill_extrusion_width = 0.6
|
||||
|
||||
[print:*soluble_support*]
|
||||
overhangs = 1
|
||||
skirts = 0
|
||||
support_material = 1
|
||||
support_material_contact_distance = 0
|
||||
support_material_extruder = 4
|
||||
support_material_extrusion_width = 0.45
|
||||
support_material_interface_extruder = 4
|
||||
support_material_interface_spacing = 0.1
|
||||
support_material_synchronize_layers = 1
|
||||
support_material_threshold = 80
|
||||
support_material_with_sheath = 1
|
||||
wipe_tower = 1
|
||||
|
||||
[print:*0.05mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 10
|
||||
bridge_acceleration = 300
|
||||
bridge_flow_ratio = 0.7
|
||||
default_acceleration = 500
|
||||
external_perimeter_speed = 20
|
||||
fill_density = 20%
|
||||
first_layer_acceleration = 500
|
||||
gap_fill_speed = 20
|
||||
infill_acceleration = 800
|
||||
infill_speed = 30
|
||||
max_print_speed = 80
|
||||
small_perimeter_speed = 15
|
||||
solid_infill_speed = 30
|
||||
support_material_extrusion_width = 0.3
|
||||
support_material_spacing = 1.5
|
||||
layer_height = 0.05
|
||||
perimeter_acceleration = 300
|
||||
perimeter_speed = 30
|
||||
perimeters = 3
|
||||
support_material_speed = 30
|
||||
top_solid_infill_speed = 20
|
||||
top_solid_layers = 15
|
||||
|
||||
[print:0.05mm ULTRADETAIL]
|
||||
inherits = *0.05mm*
|
||||
infill_extrusion_width = 0.5
|
||||
|
||||
[print:0.05mm ULTRADETAIL MK3]
|
||||
inherits = *0.05mm*
|
||||
fill_pattern = grid
|
||||
top_infill_extrusion_width = 0.4
|
||||
|
||||
[print:0.05mm ULTRADETAIL 0.25 nozzle]
|
||||
inherits = *0.05mm*
|
||||
external_perimeter_extrusion_width = 0
|
||||
extrusion_width = 0.28
|
||||
fill_density = 20%
|
||||
first_layer_extrusion_width = 0.3
|
||||
infill_extrusion_width = 0
|
||||
infill_speed = 20
|
||||
max_print_speed = 100
|
||||
perimeter_extrusion_width = 0
|
||||
perimeter_speed = 20
|
||||
small_perimeter_speed = 10
|
||||
solid_infill_extrusion_width = 0
|
||||
solid_infill_speed = 20
|
||||
support_material_speed = 20
|
||||
top_infill_extrusion_width = 0
|
||||
|
||||
[print:0.05mm ULTRADETAIL 0.25 nozzle MK3]
|
||||
inherits = *0.05mm*; *0.25nozzle*
|
||||
fill_pattern = grid
|
||||
top_infill_extrusion_width = 0.4
|
||||
|
||||
[print:*0.10mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 7
|
||||
bridge_flow_ratio = 0.7
|
||||
layer_height = 0.1
|
||||
perimeter_acceleration = 800
|
||||
top_solid_layers = 9
|
||||
|
||||
[print:0.10mm DETAIL]
|
||||
inherits = *0.10mm*
|
||||
external_perimeter_speed = 40
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
perimeter_speed = 50
|
||||
solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL MK3]
|
||||
inherits = *0.10mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL 0.25 nozzle]
|
||||
inherits = *0.10mm*
|
||||
bridge_acceleration = 600
|
||||
external_perimeter_speed = 20
|
||||
infill_acceleration = 1600
|
||||
infill_speed = 40
|
||||
perimeter_acceleration = 600
|
||||
perimeter_speed = 25
|
||||
small_perimeter_speed = 10
|
||||
solid_infill_speed = 40
|
||||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.10mm DETAIL 0.25 nozzle MK3]
|
||||
inherits = *0.10mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL 0.6 nozzle MK3]
|
||||
inherits = *0.10mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:*0.15mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 5
|
||||
external_perimeter_speed = 40
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
layer_height = 0.15
|
||||
perimeter_acceleration = 800
|
||||
perimeter_speed = 50
|
||||
solid_infill_speed = 50
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_layers = 7
|
||||
|
||||
[print:0.15mm 100mms Linear Advance]
|
||||
inherits = *0.15mm*
|
||||
bridge_flow_ratio = 0.95
|
||||
external_perimeter_speed = 50
|
||||
infill_speed = 100
|
||||
max_print_speed = 150
|
||||
perimeter_speed = 60
|
||||
small_perimeter_speed = 30
|
||||
solid_infill_speed = 100
|
||||
support_material_speed = 60
|
||||
top_solid_infill_speed = 70
|
||||
|
||||
[print:0.15mm OPTIMAL]
|
||||
inherits = *0.15mm*
|
||||
top_infill_extrusion_width = 0.45
|
||||
|
||||
[print:0.15mm OPTIMAL 0.25 nozzle]
|
||||
inherits = *0.15mm*; *0.25nozzle*
|
||||
bridge_acceleration = 600
|
||||
bridge_flow_ratio = 0.7
|
||||
external_perimeter_speed = 20
|
||||
infill_acceleration = 1600
|
||||
infill_speed = 40
|
||||
perimeter_acceleration = 600
|
||||
perimeter_speed = 25
|
||||
small_perimeter_speed = 10
|
||||
solid_infill_speed = 40
|
||||
support_material_extrusion_width = 0.2
|
||||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.15mm OPTIMAL 0.6 nozzle]
|
||||
inherits = *0.15mm*; *0.6nozzle*
|
||||
|
||||
[print:0.15mm OPTIMAL MK3]
|
||||
inherits = *0.15mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.15mm OPTIMAL SOLUBLE FULL]
|
||||
inherits = *0.15mm*; *soluble_support*
|
||||
external_perimeter_speed = 25
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft/skirt extruder & Support material/raft interface extruder
|
||||
perimeter_speed = 40
|
||||
solid_infill_speed = 40
|
||||
top_infill_extrusion_width = 0.45
|
||||
top_solid_infill_speed = 30
|
||||
wipe_tower = 1
|
||||
|
||||
[print:0.15mm OPTIMAL SOLUBLE INTERFACE]
|
||||
inherits = 0.15mm OPTIMAL SOLUBLE FULL
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft interface extruder
|
||||
support_material_extruder = 0
|
||||
support_material_interface_layers = 3
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 80%
|
||||
|
||||
[print:0.15mm OPTIMAL 0.25 nozzle MK3]
|
||||
inherits = *0.15mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
[print:*0.20mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 4
|
||||
bridge_flow_ratio = 0.95
|
||||
external_perimeter_speed = 40
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
layer_height = 0.2
|
||||
perimeter_acceleration = 800
|
||||
perimeter_speed = 50
|
||||
solid_infill_speed = 50
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_layers = 5
|
||||
|
||||
[print:0.15mm OPTIMAL 0.6 nozzle MK3]
|
||||
inherits = *0.15mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.20mm 100mms Linear Advance]
|
||||
inherits = *0.20mm*
|
||||
external_perimeter_speed = 50
|
||||
infill_speed = 100
|
||||
max_print_speed = 150
|
||||
perimeter_speed = 60
|
||||
small_perimeter_speed = 30
|
||||
solid_infill_speed = 100
|
||||
support_material_speed = 60
|
||||
top_solid_infill_speed = 70
|
||||
|
||||
[print:0.20mm FAST MK3]
|
||||
inherits = *0.20mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.20mm NORMAL]
|
||||
inherits = *0.20mm*
|
||||
|
||||
[print:0.20mm NORMAL 0.6 nozzle]
|
||||
inherits = *0.20mm*; *0.6nozzle*
|
||||
|
||||
[print:0.20mm NORMAL SOLUBLE FULL]
|
||||
inherits = *0.20mm*; *soluble_support*
|
||||
external_perimeter_speed = 30
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft/skirt extruder & Support material/raft interface extruder
|
||||
perimeter_speed = 40
|
||||
solid_infill_speed = 40
|
||||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.20mm NORMAL SOLUBLE INTERFACE]
|
||||
inherits = 0.20mm NORMAL SOLUBLE FULL
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft interface extruder
|
||||
support_material_extruder = 0
|
||||
support_material_interface_layers = 3
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 80%
|
||||
|
||||
[print:0.20mm FAST 0.6 nozzle MK3]
|
||||
inherits = *0.20mm*
|
||||
bridge_speed = 30
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:*0.35mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 3
|
||||
external_perimeter_extrusion_width = 0.6
|
||||
external_perimeter_speed = 40
|
||||
first_layer_extrusion_width = 0.75
|
||||
infill_acceleration = 2000
|
||||
infill_speed = 60
|
||||
layer_height = 0.35
|
||||
perimeter_acceleration = 800
|
||||
perimeter_extrusion_width = 0.65
|
||||
perimeter_speed = 50
|
||||
solid_infill_extrusion_width = 0.65
|
||||
solid_infill_speed = 60
|
||||
top_solid_infill_speed = 50
|
||||
top_solid_layers = 4
|
||||
|
||||
[print:0.35mm FAST]
|
||||
inherits = *0.35mm*
|
||||
bridge_flow_ratio = 0.95
|
||||
first_layer_extrusion_width = 0.42
|
||||
perimeter_extrusion_width = 0.43
|
||||
solid_infill_extrusion_width = 0.7
|
||||
top_infill_extrusion_width = 0.43
|
||||
|
||||
[print:0.35mm FAST 0.6 nozzle]
|
||||
inherits = *0.35mm*; *0.6nozzle*
|
||||
|
||||
[print:0.35mm FAST sol full 0.6 nozzle]
|
||||
inherits = *0.35mm*; *0.6nozzle*; *soluble_support*
|
||||
external_perimeter_extrusion_width = 0.6
|
||||
external_perimeter_speed = 30
|
||||
notes = Set your solluble extruder in Multiple Extruders > Support material/raft interface extruder
|
||||
perimeter_speed = 40
|
||||
support_material_extrusion_width = 0.55
|
||||
support_material_interface_layers = 3
|
||||
support_material_xy_spacing = 120%
|
||||
top_infill_extrusion_width = 0.57
|
||||
|
||||
[print:0.35mm FAST sol int 0.6 nozzle]
|
||||
inherits = 0.35mm FAST sol full 0.6 nozzle
|
||||
support_material_extruder = 0
|
||||
support_material_interface_layers = 2
|
||||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 150%
|
||||
|
||||
[filament:*common*]
|
||||
cooling = 1
|
||||
compatible_printers =
|
||||
end_filament_gcode = "; Filament-specific end gcode"
|
||||
extrusion_multiplier = 1
|
||||
filament_cost = 0
|
||||
filament_density = 0
|
||||
filament_diameter = 1.75
|
||||
filament_notes = ""
|
||||
filament_settings_id =
|
||||
filament_soluble = 0
|
||||
min_print_speed = 5
|
||||
slowdown_below_layer_time = 20
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}30{endif}; Filament gcode"
|
||||
|
||||
[filament:*PLA*]
|
||||
inherits = *common*
|
||||
bed_temperature = 60
|
||||
bridge_fan_speed = 100
|
||||
disable_fan_first_layers = 1
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #FF3232
|
||||
filament_max_volumetric_speed = 15
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 60
|
||||
first_layer_temperature = 215
|
||||
max_fan_speed = 100
|
||||
min_fan_speed = 100
|
||||
temperature = 210
|
||||
|
||||
[filament:*PET*]
|
||||
inherits = *common*
|
||||
bed_temperature = 90
|
||||
bridge_fan_speed = 50
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 20
|
||||
filament_colour = #FF8000
|
||||
filament_max_volumetric_speed = 8
|
||||
filament_type = PET
|
||||
first_layer_bed_temperature = 85
|
||||
first_layer_temperature = 230
|
||||
max_fan_speed = 50
|
||||
min_fan_speed = 30
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}45{endif}; Filament gcode"
|
||||
temperature = 240
|
||||
|
||||
[filament:*ABS*]
|
||||
inherits = *common*
|
||||
bed_temperature = 110
|
||||
bridge_fan_speed = 30
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 20
|
||||
filament_colour = #3A80CA
|
||||
filament_max_volumetric_speed = 11
|
||||
filament_type = ABS
|
||||
first_layer_bed_temperature = 100
|
||||
first_layer_temperature = 255
|
||||
max_fan_speed = 30
|
||||
min_fan_speed = 20
|
||||
temperature = 255
|
||||
|
||||
[filament:*FLEX*]
|
||||
inherits = *common*
|
||||
bridge_fan_speed = 100
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 1
|
||||
extrusion_multiplier = 1.2
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #00CA0A
|
||||
filament_max_volumetric_speed = 1.5
|
||||
filament_type = FLEX
|
||||
first_layer_bed_temperature = 50
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 90
|
||||
min_fan_speed = 70
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 240
|
||||
|
||||
[filament:ColorFabb Brass Bronze]
|
||||
inherits = *PLA*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 10
|
||||
|
||||
[filament:ColorFabb HT]
|
||||
inherits = *PET*
|
||||
bed_temperature = 110
|
||||
bridge_fan_speed = 30
|
||||
cooling = 1
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 10
|
||||
first_layer_bed_temperature = 105
|
||||
first_layer_temperature = 270
|
||||
max_fan_speed = 20
|
||||
min_fan_speed = 10
|
||||
min_print_speed = 5
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}45{endif}; Filament gcode"
|
||||
temperature = 270
|
||||
|
||||
[filament:ColorFabb PLA-PHA]
|
||||
inherits = *PLA*
|
||||
|
||||
[filament:ColorFabb Woodfil]
|
||||
inherits = *PLA*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 10
|
||||
first_layer_temperature = 200
|
||||
min_print_speed = 5
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 200
|
||||
|
||||
[filament:ColorFabb XT]
|
||||
inherits = *PET*
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 260
|
||||
temperature = 270
|
||||
|
||||
[filament:ColorFabb XT-CF20]
|
||||
inherits = *PET*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 1
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 260
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}30{endif}; Filament gcode"
|
||||
temperature = 260
|
||||
|
||||
[filament:ColorFabb nGen]
|
||||
inherits = *PET*
|
||||
bridge_fan_speed = 40
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 10
|
||||
filament_type = NGEN
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 35
|
||||
min_fan_speed = 20
|
||||
|
||||
[filament:ColorFabb nGen flex]
|
||||
inherits = *FLEX*
|
||||
bed_temperature = 85
|
||||
bridge_fan_speed = 40
|
||||
cooling = 1
|
||||
disable_fan_first_layers = 3
|
||||
extrusion_multiplier = 1
|
||||
fan_below_layer_time = 10
|
||||
filament_max_volumetric_speed = 5
|
||||
first_layer_bed_temperature = 85
|
||||
first_layer_temperature = 260
|
||||
max_fan_speed = 35
|
||||
min_fan_speed = 20
|
||||
temperature = 260
|
||||
|
||||
[filament:E3D Edge]
|
||||
inherits = *PET*
|
||||
filament_notes = "List of manufacturers tested with standart PET print settings for MK2:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladeč PETG"
|
||||
|
||||
[filament:E3D PC-ABS]
|
||||
inherits = *ABS*
|
||||
first_layer_temperature = 270
|
||||
temperature = 270
|
||||
|
||||
[filament:Fillamentum ABS]
|
||||
inherits = *ABS*
|
||||
first_layer_temperature = 240
|
||||
temperature = 240
|
||||
|
||||
[filament:Fillamentum ASA]
|
||||
inherits = *ABS*
|
||||
fan_always_on = 1
|
||||
first_layer_temperature = 265
|
||||
temperature = 265
|
||||
|
||||
[filament:Fillamentum CPE HG100 HM100]
|
||||
inherits = *PET*
|
||||
filament_notes = "CPE HG100 , CPE HM100"
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 275
|
||||
max_fan_speed = 50
|
||||
min_fan_speed = 50
|
||||
temperature = 275
|
||||
|
||||
[filament:Fillamentum Timberfil]
|
||||
inherits = *PLA*
|
||||
extrusion_multiplier = 1.2
|
||||
filament_colour = #804040
|
||||
filament_max_volumetric_speed = 10
|
||||
first_layer_temperature = 190
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 190
|
||||
|
||||
[filament:Generic ABS]
|
||||
inherits = *ABS*
|
||||
filament_notes = "List of materials tested with standart ABS print settings for MK2:\n\nEsun ABS\nFil-A-Gehr ABS\nHatchboxABS\nPlasty Mladeč ABS"
|
||||
|
||||
[filament:Generic PET]
|
||||
inherits = *PET*
|
||||
filament_notes = "List of manufacturers tested with standart PET print settings for MK2:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladeč PETG"
|
||||
|
||||
[filament:Generic PLA]
|
||||
inherits = *PLA*
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH"
|
||||
|
||||
[filament:Polymaker PC-Max]
|
||||
inherits = *ABS*
|
||||
bed_temperature = 115
|
||||
filament_colour = #3A80CA
|
||||
first_layer_bed_temperature = 100
|
||||
first_layer_temperature = 270
|
||||
temperature = 270
|
||||
|
||||
[filament:Primavalue PVA]
|
||||
inherits = *PLA*
|
||||
cooling = 0
|
||||
fan_always_on = 0
|
||||
filament_colour = #FFFFD7
|
||||
filament_max_volumetric_speed = 10
|
||||
filament_notes = "List of materials tested with standart PVA print settings for MK2:\n\nPrimaSelect PVA+\nICE FILAMENTS PVA 'NAUGHTY NATURAL'\nVerbatim BVOH"
|
||||
filament_soluble = 1
|
||||
filament_type = PVA
|
||||
first_layer_temperature = 195
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 195
|
||||
|
||||
[filament:Foobar ABS]
|
||||
inherits = *ABS*
|
||||
filament_notes = "List of materials tested with standart ABS print settings for MK2:\n\nEsun ABS\nFil-A-Gehr ABS\nHatchboxABS\nPlasty Mladeč ABS"
|
||||
|
||||
[filament:Foobar HIPS]
|
||||
inherits = *ABS*
|
||||
bridge_fan_speed = 50
|
||||
cooling = 1
|
||||
extrusion_multiplier = 0.9
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 10
|
||||
filament_colour = #FFFFD7
|
||||
filament_soluble = 1
|
||||
filament_type = HIPS
|
||||
first_layer_temperature = 220
|
||||
max_fan_speed = 20
|
||||
min_fan_speed = 20
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 220
|
||||
|
||||
[filament:Foobar PET]
|
||||
inherits = *PET*
|
||||
filament_notes = "List of manufacturers tested with standart PET print settings for MK2:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladeč PETG"
|
||||
|
||||
[filament:Foobar PLA]
|
||||
inherits = *PLA*
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH"
|
||||
|
||||
[filament:SemiFlex or Flexfill 98A]
|
||||
inherits = *FLEX*
|
||||
|
||||
[filament:Taulman Bridge]
|
||||
inherits = *common*
|
||||
bed_temperature = 90
|
||||
bridge_fan_speed = 40
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 3
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 20
|
||||
filament_colour = #DEE0E6
|
||||
filament_max_volumetric_speed = 10
|
||||
filament_soluble = 0
|
||||
filament_type = PET
|
||||
first_layer_bed_temperature = 60
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 5
|
||||
min_fan_speed = 0
|
||||
min_print_speed = 5
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 250
|
||||
|
||||
[filament:Taulman T-Glase]
|
||||
inherits = *PET*
|
||||
bridge_fan_speed = 40
|
||||
cooling = 0
|
||||
fan_always_on = 0
|
||||
first_layer_bed_temperature = 90
|
||||
first_layer_temperature = 240
|
||||
max_fan_speed = 5
|
||||
min_fan_speed = 0
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}30{endif}; Filament gcode"
|
||||
|
||||
[filament:Verbatim BVOH]
|
||||
inherits = *common*
|
||||
bed_temperature = 60
|
||||
bridge_fan_speed = 100
|
||||
cooling = 0
|
||||
disable_fan_first_layers = 1
|
||||
extrusion_multiplier = 1
|
||||
fan_always_on = 0
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #FFFFD7
|
||||
filament_max_volumetric_speed = 10
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH"
|
||||
filament_soluble = 1
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 60
|
||||
first_layer_temperature = 215
|
||||
max_fan_speed = 100
|
||||
min_fan_speed = 100
|
||||
min_print_speed = 15
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 210
|
||||
|
||||
[filament:Verbatim PP]
|
||||
inherits = *common*
|
||||
bed_temperature = 100
|
||||
bridge_fan_speed = 100
|
||||
cooling = 1
|
||||
disable_fan_first_layers = 2
|
||||
extrusion_multiplier = 1
|
||||
fan_always_on = 1
|
||||
fan_below_layer_time = 100
|
||||
filament_colour = #DEE0E6
|
||||
filament_max_volumetric_speed = 5
|
||||
filament_notes = "List of materials tested with standart PLA print settings for MK2:\n\nEsun PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladeč PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nEUMAKERS PLA"
|
||||
filament_type = PLA
|
||||
first_layer_bed_temperature = 100
|
||||
first_layer_temperature = 220
|
||||
max_fan_speed = 100
|
||||
min_fan_speed = 100
|
||||
min_print_speed = 15
|
||||
start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{else}10{endif}; Filament gcode"
|
||||
temperature = 220
|
||||
|
||||
[printer:*common*]
|
||||
bed_shape = 0x0,250x0,250x210,0x210
|
||||
before_layer_gcode = ;BEFORE_LAYER_CHANGE\n;[layer_z]\n\n
|
||||
between_objects_gcode =
|
||||
deretract_speed = 0
|
||||
end_gcode = G4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
extruder_colour = #FFFF00
|
||||
extruder_offset = 0x0
|
||||
gcode_flavor = marlin
|
||||
layer_gcode = ;AFTER_LAYER_CHANGE\n;[layer_z]
|
||||
max_layer_height = 0.25
|
||||
min_layer_height = 0.07
|
||||
nozzle_diameter = 0.4
|
||||
octoprint_apikey =
|
||||
octoprint_host =
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_Foobar3D\nPRINTER_MODEL_MK2\n
|
||||
printer_settings_id =
|
||||
retract_before_travel = 1
|
||||
retract_before_wipe = 0%
|
||||
retract_layer_change = 1
|
||||
retract_length = 0.8
|
||||
retract_length_toolchange = 4
|
||||
retract_lift = 0.6
|
||||
retract_lift_above = 0
|
||||
retract_lift_below = 199
|
||||
retract_restart_extra = 0
|
||||
retract_restart_extra_toolchange = 0
|
||||
retract_speed = 35
|
||||
serial_port =
|
||||
serial_speed = 250000
|
||||
single_extruder_multi_material = 0
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
|
||||
toolchange_gcode =
|
||||
use_firmware_retraction = 0
|
||||
use_relative_e_distances = 1
|
||||
use_volumetric_e = 0
|
||||
variable_layer_height = 1
|
||||
wipe = 1
|
||||
z_offset = 0
|
||||
printer_model = M2
|
||||
printer_variant = 0.4
|
||||
default_print_profile = 0.15mm OPTIMAL
|
||||
default_filament_profile = Foobar PLA
|
||||
|
||||
[printer:*multimaterial*]
|
||||
inherits = *common*
|
||||
deretract_speed = 50
|
||||
retract_before_travel = 3
|
||||
retract_before_wipe = 60%
|
||||
retract_layer_change = 0
|
||||
retract_length = 4
|
||||
retract_lift = 0.6
|
||||
retract_lift_above = 0
|
||||
retract_lift_below = 199
|
||||
retract_restart_extra = 0
|
||||
retract_restart_extra_toolchange = 0
|
||||
retract_speed = 80
|
||||
single_extruder_multi_material = 1
|
||||
printer_model = M3
|
||||
|
||||
[printer:*mm-single*]
|
||||
inherits = *multimaterial*
|
||||
end_gcode = G1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\nM107 ; fan off\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors\n\n
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_Foobar3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\n; Start G-Code sequence START\nT?\nM104 S[first_layer_temperature]\nM140 S[first_layer_bed_temperature]\nM109 S[first_layer_temperature]\nM190 S[first_layer_bed_temperature]\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100\nM92 E140\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG1 E-4 F1000.0\nG92 E0.0
|
||||
|
||||
[printer:*mm-multi*]
|
||||
inherits = *multimaterial*
|
||||
end_gcode = {if not has_wipe_tower}\n; Pull the filament into the cooling tubes.\nG1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\n{endif}\nM107 ; fan off\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors
|
||||
extruder_colour = #FFAA55;#5182DB;#4ECDD3;#FB7259
|
||||
nozzle_diameter = 0.4,0.4,0.4,0.4
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_Foobar3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\n; Start G-Code sequence START\nT[initial_tool]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100 ; set max feedrate\nM92 E140 ; E-steps per filament milimeter\n{if not has_wipe_tower}\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG1 E-4 F1000.0\n{endif}\nG92 E0.0
|
||||
variable_layer_height = 0
|
||||
|
||||
[printer:Foobar i3 MK2]
|
||||
inherits = *common*
|
||||
|
||||
[printer:Foobar i3 MK2 0.25 nozzle]
|
||||
inherits = *common*
|
||||
max_layer_height = 0.1
|
||||
min_layer_height = 0.05
|
||||
nozzle_diameter = 0.25
|
||||
retract_length = 1
|
||||
retract_speed = 50
|
||||
variable_layer_height = 0
|
||||
printer_variant = 0.25
|
||||
default_print_profile = 0.10mm DETAIL 0.25 nozzle
|
||||
|
||||
[printer:Foobar i3 MK2 0.6 nozzle]
|
||||
inherits = *common*
|
||||
max_layer_height = 0.35
|
||||
min_layer_height = 0.1
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
|
||||
[printer:Foobar i3 MK2 MM Single Mode]
|
||||
inherits = *mm-single*
|
||||
|
||||
[printer:Foobar i3 MK2 MM Single Mode 0.6 nozzle]
|
||||
inherits = *mm-single*
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
|
||||
[printer:Foobar i3 MK2 MultiMaterial]
|
||||
inherits = *mm-multi*
|
||||
nozzle_diameter = 0.4,0.4,0.4,0.4
|
||||
|
||||
[printer:Foobar i3 MK2 MultiMaterial 0.6 nozzle]
|
||||
inherits = *mm-multi*
|
||||
nozzle_diameter = 0.6,0.6,0.6,0.6
|
||||
printer_variant = 0.6
|
||||
|
||||
[printer:Foobar i3 MK3]
|
||||
inherits = *common*
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_Foobar3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = M1
|
||||
default_print_profile = 0.15mm OPTIMAL MK3
|
||||
|
||||
[printer:Foobar i3 MK3 0.25 nozzle]
|
||||
inherits = *common*
|
||||
nozzle_diameter = 0.25
|
||||
printer_variant = 0.25
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_Foobar3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = M1
|
||||
default_print_profile = 0.10mm DETAIL MK3
|
||||
|
||||
[printer:Foobar i3 MK3 0.6 nozzle]
|
||||
inherits = *common*
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_Foobar3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = M1
|
||||
default_print_profile = 0.15mm OPTIMAL MK3
|
|
@ -1,3 +1,9 @@
|
|||
min_slic3r_version = 1.40.0
|
||||
0.1.6 Split the MK2.5 profile from the MK2S
|
||||
min_slic3r_version = 1.40.0-beta
|
||||
0.1.5 fixed printer_variant fields for the i3 MK3 0.25 and 0.6mm nozzles
|
||||
0.1.4 edited fw version, added z-raise after print
|
||||
min_slic3r_version = 1.40.0-alpha
|
||||
0.1.3 Fixed an incorrect position of the max_print_height parameter
|
||||
0.1.2 Wipe tower changes
|
||||
0.1.1 Minor print speed adjustments
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
name = Prusa Research
|
||||
# Configuration version of this file. Config file will only be installed, if the config_version differs.
|
||||
# This means, the server may force the Slic3r configuration to be downgraded.
|
||||
config_version = 0.1.3
|
||||
config_version = 0.1.6
|
||||
# Where to get the updates from?
|
||||
config_update_url = https://raw.githubusercontent.com/prusa3d/Slic3r-settings/master/live/PrusaResearch/
|
||||
|
||||
|
@ -22,6 +22,10 @@ variants = 0.4; 0.25; 0.6
|
|||
name = Original Prusa i3 MK2S
|
||||
variants = 0.4; 0.25; 0.6
|
||||
|
||||
[printer_model:MK2.5]
|
||||
name = Original Prusa i3 MK2.5
|
||||
variants = 0.4; 0.25; 0.6
|
||||
|
||||
[printer_model:MK2SMM]
|
||||
name = Original Prusa i3 MK2SMM
|
||||
variants = 0.4; 0.6
|
||||
|
@ -166,6 +170,10 @@ support_material_threshold = 80
|
|||
support_material_with_sheath = 1
|
||||
wipe_tower = 1
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- 0.05mm ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[print:*0.05mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 10
|
||||
|
@ -203,7 +211,7 @@ fill_pattern = grid
|
|||
top_infill_extrusion_width = 0.4
|
||||
|
||||
[print:0.05mm ULTRADETAIL 0.25 nozzle]
|
||||
inherits = *0.05mm*
|
||||
inherits = *0.05mm*; *0.25nozzle*
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK2.*/ and nozzle_diameter[0]==0.25 and num_extruders==1
|
||||
external_perimeter_extrusion_width = 0
|
||||
extrusion_width = 0.28
|
||||
|
@ -226,6 +234,10 @@ compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and
|
|||
fill_pattern = grid
|
||||
top_infill_extrusion_width = 0.4
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- 0.10mm ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[print:*0.10mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 7
|
||||
|
@ -251,15 +263,15 @@ compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and
|
|||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL 0.25 nozzle]
|
||||
inherits = *0.10mm*
|
||||
inherits = *0.10mm*; *0.25nozzle*
|
||||
bridge_acceleration = 600
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK2.*/ and nozzle_diameter[0]==0.25
|
||||
external_perimeter_speed = 20
|
||||
|
@ -272,33 +284,37 @@ solid_infill_speed = 40
|
|||
top_solid_infill_speed = 30
|
||||
|
||||
[print:0.10mm DETAIL 0.25 nozzle MK3]
|
||||
inherits = *0.10mm*
|
||||
inherits = *0.10mm*; *0.25nozzle*
|
||||
bridge_speed = 30
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK3.*/ and nozzle_diameter[0]==0.25
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.10mm DETAIL 0.6 nozzle MK3]
|
||||
inherits = *0.10mm*
|
||||
inherits = *0.10mm*; *0.6nozzle*
|
||||
bridge_speed = 30
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK3.*/ and nozzle_diameter[0]==0.6
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_infill_extrusion_width = 0.4
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- 0.15mm ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[print:*0.15mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 5
|
||||
|
@ -356,10 +372,10 @@ compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and
|
|||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.15mm OPTIMAL SOLUBLE FULL]
|
||||
|
@ -382,16 +398,16 @@ support_material_with_sheath = 0
|
|||
support_material_xy_spacing = 80%
|
||||
|
||||
[print:0.15mm OPTIMAL 0.25 nozzle MK3]
|
||||
inherits = *0.15mm*
|
||||
inherits = *0.15mm*; *0.25nozzle*
|
||||
bridge_speed = 30
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK3.*/ and nozzle_diameter[0]==0.25
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_solid_infill_speed = 50
|
||||
[print:*0.20mm*]
|
||||
inherits = *common*
|
||||
|
@ -408,18 +424,22 @@ top_infill_extrusion_width = 0.4
|
|||
top_solid_layers = 5
|
||||
|
||||
[print:0.15mm OPTIMAL 0.6 nozzle MK3]
|
||||
inherits = *0.15mm*
|
||||
inherits = *0.15mm*; *0.6nozzle*
|
||||
bridge_speed = 30
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK3.*/ and nozzle_diameter[0]==0.6
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- 0.20mm ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[print:0.20mm 100mms Linear Advance]
|
||||
inherits = *0.20mm*
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK2.*/ and nozzle_diameter[0]==0.4
|
||||
|
@ -439,10 +459,10 @@ compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and
|
|||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
[print:0.20mm NORMAL]
|
||||
|
@ -471,18 +491,22 @@ support_material_with_sheath = 0
|
|||
support_material_xy_spacing = 80%
|
||||
|
||||
[print:0.20mm FAST 0.6 nozzle MK3]
|
||||
inherits = *0.20mm*
|
||||
inherits = *0.20mm*; *0.6nozzle*
|
||||
bridge_speed = 30
|
||||
compatible_printers_condition = printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK3.*/ and nozzle_diameter[0]==0.6
|
||||
external_perimeter_speed = 35
|
||||
fill_pattern = grid
|
||||
infill_acceleration = 1500
|
||||
infill_speed = 170
|
||||
max_print_speed = 170
|
||||
infill_speed = 200
|
||||
max_print_speed = 200
|
||||
perimeter_speed = 45
|
||||
solid_infill_speed = 170
|
||||
solid_infill_speed = 200
|
||||
top_solid_infill_speed = 50
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- 0.35mm ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[print:*0.35mm*]
|
||||
inherits = *common*
|
||||
bottom_solid_layers = 3
|
||||
|
@ -532,6 +556,10 @@ support_material_interface_layers = 2
|
|||
support_material_with_sheath = 0
|
||||
support_material_xy_spacing = 150%
|
||||
|
||||
# XXXXXXxxXXXXXXXXXXXXXX
|
||||
# XXX--- filament ---XXX
|
||||
# XXXXXXXXxxXXXXXXXXXXXX
|
||||
|
||||
[filament:*common*]
|
||||
cooling = 1
|
||||
compatible_printers =
|
||||
|
@ -877,10 +905,10 @@ temperature = 220
|
|||
|
||||
[printer:*common*]
|
||||
bed_shape = 0x0,250x0,250x210,0x210
|
||||
before_layer_gcode = ;BEFORE_LAYER_CHANGE\n;[layer_z]\n\n
|
||||
before_layer_gcode = ;BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n
|
||||
between_objects_gcode =
|
||||
deretract_speed = 0
|
||||
end_gcode = G4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
end_gcode = G4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
extruder_colour = #FFFF00
|
||||
extruder_offset = 0x0
|
||||
gcode_flavor = marlin
|
||||
|
@ -941,7 +969,7 @@ printer_model = MK2SMM
|
|||
|
||||
[printer:*mm-single*]
|
||||
inherits = *multimaterial*
|
||||
end_gcode = G1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\nM107 ; fan off\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors\n\n
|
||||
end_gcode = G1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors\n\n
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
|
||||
start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\n; Start G-Code sequence START\nT?\nM104 S[first_layer_temperature]\nM140 S[first_layer_bed_temperature]\nM109 S[first_layer_temperature]\nM190 S[first_layer_bed_temperature]\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100\nM92 E140\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG1 E-4 F1000.0\nG92 E0.0
|
||||
default_print_profile = 0.15mm OPTIMAL
|
||||
|
@ -949,7 +977,7 @@ default_filament_profile = Prusa PLA
|
|||
|
||||
[printer:*mm-multi*]
|
||||
inherits = *multimaterial*
|
||||
end_gcode = {if not has_wipe_tower}\n; Pull the filament into the cooling tubes.\nG1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\n{endif}\nM107 ; fan off\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors
|
||||
end_gcode = {if not has_wipe_tower}\n; Pull the filament into the cooling tubes.\nG1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\n{endif}\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors
|
||||
extruder_colour = #FFAA55;#5182DB;#4ECDD3;#FB7259
|
||||
nozzle_diameter = 0.4,0.4,0.4,0.4
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
|
||||
|
@ -958,6 +986,10 @@ variable_layer_height = 0
|
|||
default_print_profile = 0.15mm OPTIMAL
|
||||
default_filament_profile = Prusa PLA
|
||||
|
||||
# XXXXXXXXXXXXXXXXX
|
||||
# XXX--- MK2 ---XXX
|
||||
# XXXXXXXXXXXXXXXXX
|
||||
|
||||
[printer:Original Prusa i3 MK2]
|
||||
inherits = *common*
|
||||
|
||||
|
@ -973,18 +1005,22 @@ printer_variant = 0.25
|
|||
default_print_profile = 0.10mm DETAIL 0.25 nozzle
|
||||
|
||||
[printer:Original Prusa i3 MK2 0.6 nozzle]
|
||||
inherits = *common*
|
||||
inherits = *common*; *0.6nozzle*
|
||||
max_layer_height = 0.35
|
||||
min_layer_height = 0.1
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
default_print_profile = 0.20mm NORMAL 0.6 nozzle
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- MK2MM ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[printer:Original Prusa i3 MK2 MM Single Mode]
|
||||
inherits = *mm-single*
|
||||
|
||||
[printer:Original Prusa i3 MK2 MM Single Mode 0.6 nozzle]
|
||||
inherits = *mm-single*
|
||||
inherits = *mm-single*; *0.6nozzle*
|
||||
nozzle_diameter = 0.6
|
||||
printer_variant = 0.6
|
||||
default_print_profile = 0.20mm NORMAL 0.6 nozzle
|
||||
|
@ -994,44 +1030,69 @@ inherits = *mm-multi*
|
|||
nozzle_diameter = 0.4,0.4,0.4,0.4
|
||||
|
||||
[printer:Original Prusa i3 MK2 MultiMaterial 0.6 nozzle]
|
||||
inherits = *mm-multi*
|
||||
inherits = *mm-multi*; *0.6nozzle*
|
||||
nozzle_diameter = 0.6,0.6,0.6,0.6
|
||||
printer_variant = 0.6
|
||||
default_print_profile = 0.20mm NORMAL 0.6 nozzle
|
||||
|
||||
# XXXXXXXXXXXXXXXXXXX
|
||||
# XXX--- MK2.5 ---XXX
|
||||
# XXXXXXXXXXXXXXXXXXX
|
||||
|
||||
[printer:Original Prusa i3 MK2.5]
|
||||
inherits = Original Prusa i3 MK2
|
||||
printer_model = MK2.5
|
||||
start_gcode = M115 U3.2.1 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
|
||||
|
||||
[printer:Original Prusa i3 MK2.5 0.25 nozzle]
|
||||
inherits = Original Prusa i3 MK2 0.25 nozzle
|
||||
printer_model = MK2.5
|
||||
start_gcode = M115 U3.2.1 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
|
||||
|
||||
[printer:Original Prusa i3 MK2.5 0.6 nozzle]
|
||||
inherits = Original Prusa i3 MK2 0.6 nozzle
|
||||
printer_model = MK2.5
|
||||
start_gcode = M115 U3.2.1 ; tell printer latest fw version\nM201 X9000 Y9000 Z500 E10000 ; sets maximum accelerations, mm/sec^2\nM203 X500 Y500 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1500 T1500 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.2 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
|
||||
|
||||
# XXXXXXXXXXXXXXXXX
|
||||
# XXX--- MK3 ---XXX
|
||||
# XXXXXXXXXXXXXXXXX
|
||||
|
||||
[printer:Original Prusa i3 MK3]
|
||||
inherits = *common*
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
max_print_height = 210
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
start_gcode = M115 U3.2.1 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = MK3
|
||||
default_print_profile = 0.15mm OPTIMAL MK3
|
||||
|
||||
[printer:Original Prusa i3 MK3 0.25 nozzle]
|
||||
inherits = *common*
|
||||
nozzle_diameter = 0.25
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
max_print_height = 210
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
start_gcode = M115 U3.2.1 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = MK3
|
||||
printer_variant = 0.25
|
||||
default_print_profile = 0.10mm DETAIL 0.25 nozzle MK3
|
||||
|
||||
[printer:Original Prusa i3 MK3 0.6 nozzle]
|
||||
inherits = *common*
|
||||
nozzle_diameter = 0.6
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors
|
||||
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n
|
||||
retract_lift_below = 209
|
||||
max_print_height = 210
|
||||
start_gcode = M115 U3.1.1-RC5 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
start_gcode = M115 U3.2.1 ; tell printer latest fw version\nM201 X1000 Y1000 Z200 E5000 ; sets maximum accelerations, mm/sec^2\nM203 X200 Y200 Z12 E120 ; sets maximum feedrates, mm/sec\nM204 S1250 T1250 ; sets acceleration (S) and retract acceleration (T)\nM205 X10 Y10 Z0.4 E2.5 ; sets the jerk limits, mm/sec\nM205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height==0.05}100{else}95{endif}
|
||||
printer_model = MK3
|
||||
printer_variant = 0.6
|
||||
default_print_profile = 0.15mm OPTIMAL 0.6 nozzle MK3
|
||||
|
||||
# The obsolete presets will be removed when upgrading from the legacy configuration structure (up to Slic3r 1.39.2) to 1.40.0 and newer.
|
||||
[obsolete_presets]
|
||||
print="0.05mm DETAIL 0.25 nozzle";"0.05mm DETAIL MK3";"0.05mm DETAIL";"0.20mm NORMAL MK3";"0.35mm FAST MK3"
|
||||
filament="ColorFabb Brass Bronze 1.75mm";"ColorFabb HT 1.75mm";"ColorFabb nGen 1.75mm";"ColorFabb Woodfil 1.75mm";"ColorFabb XT 1.75mm";"ColorFabb XT-CF20 1.75mm";"E3D PC-ABS 1.75mm";"Fillamentum ABS 1.75mm";"Fillamentum ASA 1.75mm";"Generic ABS 1.75mm";"Generic PET 1.75mm";"Generic PLA 1.75mm";"Prusa ABS 1.75mm";"Prusa HIPS 1.75mm";"Prusa PET 1.75mm";"Prusa PLA 1.75mm";"Taulman Bridge 1.75mm";"Taulman T-Glase 1.75mm"
|
||||
filament="ColorFabb Brass Bronze 1.75mm";"ColorFabb HT 1.75mm";"ColorFabb nGen 1.75mm";"ColorFabb Woodfil 1.75mm";"ColorFabb XT 1.75mm";"ColorFabb XT-CF20 1.75mm";"E3D PC-ABS 1.75mm";"Fillamentum ABS 1.75mm";"Fillamentum ASA 1.75mm";"Generic ABS 1.75mm";"Generic PET 1.75mm";"Generic PLA 1.75mm";"Prusa ABS 1.75mm";"Prusa HIPS 1.75mm";"Prusa PET 1.75mm";"Prusa PLA 1.75mm";"Taulman Bridge 1.75mm";"Taulman T-Glase 1.75mm"
|
|
@ -33,7 +33,7 @@ if(WIN32)
|
|||
# -D_ITERATOR_DEBUG_LEVEL)
|
||||
endif()
|
||||
|
||||
add_definitions(-DwxUSE_UNICODE -D_UNICODE -DUNICODE)
|
||||
add_definitions(-DwxUSE_UNICODE -D_UNICODE -DUNICODE -DWXINTL_NO_GETTEXT_MACRO)
|
||||
|
||||
add_library(libslic3r STATIC
|
||||
${LIBDIR}/libslic3r/BoundingBox.cpp
|
||||
|
|
|
@ -252,7 +252,7 @@ static void usage(void)
|
|||
// setvbuf(stderr, (char*)NULL, _IOLBF, 0);
|
||||
// }
|
||||
|
||||
static bool update_progress_no_tty (int percent, double etime, char *hdr)
|
||||
static void update_progress_no_tty (int percent, double etime, char *hdr)
|
||||
{
|
||||
static int done = 0;
|
||||
static int last = 0;
|
||||
|
|
|
@ -42,14 +42,32 @@ namespace PrusaMultiMaterial {
|
|||
class Writer
|
||||
{
|
||||
public:
|
||||
Writer() :
|
||||
Writer(float layer_height, float line_width) :
|
||||
m_current_pos(std::numeric_limits<float>::max(), std::numeric_limits<float>::max()),
|
||||
m_current_z(0.f),
|
||||
m_current_feedrate(0.f),
|
||||
m_layer_height(0.f),
|
||||
m_layer_height(layer_height),
|
||||
m_extrusion_flow(0.f),
|
||||
m_preview_suppressed(false),
|
||||
m_elapsed_time(0.f) {}
|
||||
m_elapsed_time(0.f),
|
||||
m_default_analyzer_line_width(line_width)
|
||||
{
|
||||
// adds tag for analyzer:
|
||||
char buf[64];
|
||||
sprintf(buf, ";%s%f\n", GCodeAnalyzer::Height_Tag.c_str(), m_layer_height); // don't rely on GCodeAnalyzer knowing the layer height - it knows nothing at priming
|
||||
m_gcode += buf;
|
||||
sprintf(buf, ";%s%d\n", GCodeAnalyzer::Extrusion_Role_Tag.c_str(), erWipeTower);
|
||||
m_gcode += buf;
|
||||
change_analyzer_line_width(line_width);
|
||||
}
|
||||
|
||||
Writer& change_analyzer_line_width(float line_width) {
|
||||
// adds tag for analyzer:
|
||||
char buf[64];
|
||||
sprintf(buf, ";%s%f\n", GCodeAnalyzer::Width_Tag.c_str(), line_width);
|
||||
m_gcode += buf;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Writer& set_initial_position(const WipeTower::xy &pos) {
|
||||
m_start_pos = WipeTower::xy(pos,0.f,m_y_shift).rotate(m_wipe_tower_pos, m_wipe_tower_width, m_wipe_tower_depth, m_angle_deg);
|
||||
|
@ -62,9 +80,6 @@ public:
|
|||
Writer& set_z(float z)
|
||||
{ m_current_z = z; return *this; }
|
||||
|
||||
Writer& set_layer_height(float layer_height)
|
||||
{ m_layer_height = layer_height; return *this; }
|
||||
|
||||
Writer& set_extrusion_flow(float flow)
|
||||
{ m_extrusion_flow = flow; return *this; }
|
||||
|
||||
|
@ -80,8 +95,8 @@ public:
|
|||
// Suppress / resume G-code preview in Slic3r. Slic3r will have difficulty to differentiate the various
|
||||
// filament loading and cooling moves from normal extrusion moves. Therefore the writer
|
||||
// is asked to suppres output of some lines, which look like extrusions.
|
||||
Writer& suppress_preview() { m_preview_suppressed = true; return *this; }
|
||||
Writer& resume_preview() { m_preview_suppressed = false; return *this; }
|
||||
Writer& suppress_preview() { change_analyzer_line_width(0.f); m_preview_suppressed = true; return *this; }
|
||||
Writer& resume_preview() { change_analyzer_line_width(m_default_analyzer_line_width); m_preview_suppressed = false; return *this; }
|
||||
|
||||
Writer& feedrate(float f)
|
||||
{
|
||||
|
@ -126,11 +141,6 @@ public:
|
|||
m_extrusions.emplace_back(WipeTower::Extrusion(WipeTower::xy(rot.x, rot.y), width, m_current_tool));
|
||||
}
|
||||
|
||||
// adds tag for analyzer
|
||||
char buf[64];
|
||||
sprintf(buf, ";%s%d\n", GCodeAnalyzer::Extrusion_Role_Tag.c_str(), erWipeTower);
|
||||
m_gcode += buf;
|
||||
|
||||
m_gcode += "G1";
|
||||
if (rot.x != rotated_current_pos.x) {
|
||||
m_gcode += set_format_X(rot.x); // Transform current position back to wipe tower coordinates (was updated by set_format_X)
|
||||
|
@ -197,7 +207,7 @@ public:
|
|||
do {
|
||||
++i;
|
||||
if (i==4) i=0;
|
||||
extrude(corners[i]);
|
||||
extrude(corners[i], f);
|
||||
} while (i != index_of_closest);
|
||||
return (*this);
|
||||
}
|
||||
|
@ -390,6 +400,7 @@ private:
|
|||
float m_wipe_tower_depth = 0.f;
|
||||
float m_last_fan_speed = 0.f;
|
||||
int current_temp = -1;
|
||||
const float m_default_analyzer_line_width;
|
||||
|
||||
std::string
|
||||
set_format_X(float x)
|
||||
|
@ -479,10 +490,9 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::prime(
|
|||
const float prime_section_width = std::min(240.f / tools.size(), 60.f);
|
||||
box_coordinates cleaning_box(xy(5.f, 0.f), prime_section_width, 100.f);
|
||||
|
||||
PrusaMultiMaterial::Writer writer;
|
||||
PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
|
||||
writer.set_extrusion_flow(m_extrusion_flow)
|
||||
.set_z(m_z_pos)
|
||||
.set_layer_height(m_layer_height)
|
||||
.set_initial_tool(m_current_tool)
|
||||
.append(";--------------------\n"
|
||||
"; CP PRIMING START\n")
|
||||
|
@ -568,10 +578,9 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::tool_change(unsigned int tool, boo
|
|||
(tool != (unsigned int)(-1) ? /*m_layer_info->depth*/wipe_area+m_depth_traversed-0.5*m_perimeter_width
|
||||
: m_wipe_tower_depth-m_perimeter_width));
|
||||
|
||||
PrusaMultiMaterial::Writer writer;
|
||||
PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
|
||||
writer.set_extrusion_flow(m_extrusion_flow)
|
||||
.set_z(m_z_pos)
|
||||
.set_layer_height(m_layer_height)
|
||||
.set_initial_tool(m_current_tool)
|
||||
.set_rotation(m_wipe_tower_pos, m_wipe_tower_width, m_wipe_tower_depth, m_wipe_tower_rotation_angle)
|
||||
.set_y_shift(m_y_shift + (tool!=(unsigned int)(-1) && (m_current_shape == SHAPE_REVERSED && !m_peters_wipe_tower) ? m_layer_info->depth - m_layer_info->toolchanges_depth(): 0.f))
|
||||
|
@ -640,10 +649,9 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::toolchange_Brim(bool sideOnly, flo
|
|||
m_wipe_tower_width,
|
||||
m_wipe_tower_depth);
|
||||
|
||||
PrusaMultiMaterial::Writer writer;
|
||||
PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
|
||||
writer.set_extrusion_flow(m_extrusion_flow * 1.1f)
|
||||
.set_z(m_z_pos) // Let the writer know the current Z position as a base for Z-hop.
|
||||
.set_layer_height(m_layer_height)
|
||||
.set_initial_tool(m_current_tool)
|
||||
.set_rotation(m_wipe_tower_pos, m_wipe_tower_width, m_wipe_tower_depth, m_wipe_tower_rotation_angle)
|
||||
.append(";-------------------------------------\n"
|
||||
|
@ -697,11 +705,12 @@ void WipeTowerPrusaMM::toolchange_Unload(
|
|||
float xl = cleaning_box.ld.x + 1.f * m_perimeter_width;
|
||||
float xr = cleaning_box.rd.x - 1.f * m_perimeter_width;
|
||||
|
||||
writer.append("; CP TOOLCHANGE UNLOAD\n");
|
||||
|
||||
const float line_width = m_perimeter_width * m_filpar[m_current_tool].ramming_line_width_multiplicator; // desired ramming line thickness
|
||||
const float y_step = line_width * m_filpar[m_current_tool].ramming_step_multiplicator * m_extra_spacing; // spacing between lines in mm
|
||||
|
||||
writer.append("; CP TOOLCHANGE UNLOAD\n")
|
||||
.change_analyzer_line_width(line_width);
|
||||
|
||||
unsigned i = 0; // iterates through ramming_speed
|
||||
m_left_to_right = true; // current direction of ramming
|
||||
float remaining = xr - xl ; // keeps track of distance to the next turnaround
|
||||
|
@ -775,12 +784,14 @@ void WipeTowerPrusaMM::toolchange_Unload(
|
|||
}
|
||||
}
|
||||
WipeTower::xy end_of_ramming(writer.x(),writer.y());
|
||||
writer.change_analyzer_line_width(m_perimeter_width); // so the next lines are not affected by ramming_line_width_multiplier
|
||||
|
||||
// Pull the filament end to the BEGINNING of the cooling tube while still moving the print head
|
||||
float oldx = writer.x();
|
||||
float turning_point = (!m_left_to_right ? std::max(xl,oldx-15.f) : std::min(xr,oldx+15.f) ); // so it's not too far
|
||||
float xdist = std::abs(oldx-turning_point);
|
||||
float edist = -(m_cooling_tube_retraction+m_cooling_tube_length/2.f-42);
|
||||
|
||||
writer.suppress_preview()
|
||||
.load_move_x(turning_point,-15 , 60.f * std::hypot(xdist,15)/15 * 83 ) // fixed speed after ramming
|
||||
.load_move_x(oldx ,edist , 60.f * std::hypot(xdist,edist)/std::abs(edist) * m_filpar[m_current_tool].unloading_speed )
|
||||
|
@ -959,10 +970,9 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::finish_layer()
|
|||
// Otherwise the caller would likely travel to the wipe tower in vain.
|
||||
assert(! this->layer_finished());
|
||||
|
||||
PrusaMultiMaterial::Writer writer;
|
||||
PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
|
||||
writer.set_extrusion_flow(m_extrusion_flow)
|
||||
.set_z(m_z_pos)
|
||||
.set_layer_height(m_layer_height)
|
||||
.set_initial_tool(m_current_tool)
|
||||
.set_rotation(m_wipe_tower_pos, m_wipe_tower_width, m_wipe_tower_depth, m_wipe_tower_rotation_angle)
|
||||
.set_y_shift(m_y_shift - (m_current_shape == SHAPE_REVERSED && !m_peters_wipe_tower ? m_layer_info->toolchanges_depth() : 0.f))
|
||||
|
@ -1137,7 +1147,8 @@ void WipeTowerPrusaMM::save_on_last_wipe()
|
|||
// Resulting ToolChangeResults are appended into vector "result"
|
||||
void WipeTowerPrusaMM::generate(std::vector<std::vector<WipeTower::ToolChangeResult>> &result)
|
||||
{
|
||||
if (m_plan.empty()) return;
|
||||
if (m_plan.empty())
|
||||
return;
|
||||
|
||||
m_extra_spacing = 1.f;
|
||||
|
||||
|
@ -1151,8 +1162,9 @@ void WipeTowerPrusaMM::generate(std::vector<std::vector<WipeTower::ToolChangeRes
|
|||
make_wipe_tower_square();
|
||||
|
||||
m_layer_info = m_plan.begin();
|
||||
m_current_tool = (unsigned int)(-2); // we don't know which extruder to start with - we'll set it according to the first toolchange
|
||||
|
||||
std::vector<WipeTower::ToolChangeResult> layer_result;
|
||||
std::vector<WipeTower::ToolChangeResult> layer_result;
|
||||
for (auto layer : m_plan)
|
||||
{
|
||||
set_layer(layer.z,layer.height,0,layer.z == m_plan.front().z,layer.z == m_plan.back().z);
|
||||
|
@ -1166,8 +1178,11 @@ void WipeTowerPrusaMM::generate(std::vector<std::vector<WipeTower::ToolChangeRes
|
|||
if (!m_peters_wipe_tower && m_layer_info->depth < m_wipe_tower_depth - m_perimeter_width)
|
||||
m_y_shift = (m_wipe_tower_depth-m_layer_info->depth-m_perimeter_width)/2.f;
|
||||
|
||||
for (const auto &toolchange : layer.tool_changes)
|
||||
for (const auto &toolchange : layer.tool_changes) {
|
||||
if (m_current_tool == (unsigned int)(-2))
|
||||
m_current_tool = toolchange.old_tool;
|
||||
layer_result.emplace_back(tool_change(toolchange.new_tool, false));
|
||||
}
|
||||
|
||||
if (! layer_finished()) {
|
||||
auto finish_layer_toolchange = finish_layer();
|
||||
|
|
|
@ -229,7 +229,7 @@ private:
|
|||
bool m_print_brim = true;
|
||||
// A fill-in direction (positive Y, negative Y) alternates with each layer.
|
||||
wipe_shape m_current_shape = SHAPE_NORMAL;
|
||||
unsigned int m_current_tool = 0;
|
||||
unsigned int m_current_tool;
|
||||
std::vector<std::vector<float>> wipe_volumes;
|
||||
|
||||
float m_depth_traversed = 0.f; // Current y position at the wipe tower.
|
||||
|
|
|
@ -41,6 +41,7 @@ struct termios2 {
|
|||
|
||||
//#define DEBUG_SERIAL
|
||||
#ifdef DEBUG_SERIAL
|
||||
#include <cstdlib>
|
||||
#include <fstream>
|
||||
std::fstream fs;
|
||||
#endif
|
||||
|
@ -52,7 +53,11 @@ namespace Slic3r {
|
|||
GCodeSender::GCodeSender()
|
||||
: io(), serial(io), can_send(false), sent(0), open(false), error(false),
|
||||
connected(false), queue_paused(false)
|
||||
{}
|
||||
{
|
||||
#ifdef DEBUG_SERIAL
|
||||
std::srand(std::time(nullptr));
|
||||
#endif
|
||||
}
|
||||
|
||||
GCodeSender::~GCodeSender()
|
||||
{
|
||||
|
@ -358,15 +363,23 @@ GCodeSender::on_read(const boost::system::error_code& error,
|
|||
// extract the first number from line
|
||||
boost::algorithm::trim_left_if(line, !boost::algorithm::is_digit());
|
||||
size_t toresend = boost::lexical_cast<size_t>(line.substr(0, line.find_first_not_of("0123456789")));
|
||||
++ toresend; // N is 0-based
|
||||
if (toresend >= this->sent - this->last_sent.size() && toresend < this->last_sent.size()) {
|
||||
|
||||
#ifdef DEBUG_SERIAL
|
||||
fs << "!! line num out of sync: toresend = " << toresend << ", sent = " << sent << ", last_sent.size = " << last_sent.size() << std::endl;
|
||||
#endif
|
||||
|
||||
if (toresend > this->sent - this->last_sent.size() && toresend <= this->sent) {
|
||||
{
|
||||
boost::lock_guard<boost::mutex> l(this->queue_mutex);
|
||||
|
||||
const auto lines_to_resend = this->sent - toresend + 1;
|
||||
#ifdef DEBUG_SERIAL
|
||||
fs << "!! resending " << lines_to_resend << " lines" << std::endl;
|
||||
#endif
|
||||
// move the unsent lines to priqueue
|
||||
this->priqueue.insert(
|
||||
this->priqueue.begin(), // insert at the beginning
|
||||
this->last_sent.begin() + toresend - (this->sent - this->last_sent.size()) - 1,
|
||||
this->last_sent.begin() + this->last_sent.size() - lines_to_resend,
|
||||
this->last_sent.end()
|
||||
);
|
||||
|
||||
|
@ -477,8 +490,14 @@ GCodeSender::do_send()
|
|||
if (line.empty()) return;
|
||||
|
||||
// compute full line
|
||||
std::string full_line = "N" + boost::lexical_cast<std::string>(this->sent) + " " + line;
|
||||
++ this->sent;
|
||||
#ifndef DEBUG_SERIAL
|
||||
const auto line_num = this->sent;
|
||||
#else
|
||||
// In DEBUG_SERIAL mode, test line re-synchronization by sending bad line number 1/4 of the time
|
||||
const auto line_num = std::rand() < RAND_MAX/4 ? 0 : this->sent;
|
||||
#endif
|
||||
std::string full_line = "N" + boost::lexical_cast<std::string>(line_num) + " " + line;
|
||||
|
||||
// calculate checksum
|
||||
int cs = 0;
|
||||
|
@ -497,8 +516,9 @@ GCodeSender::do_send()
|
|||
this->last_sent.push_back(line);
|
||||
this->can_send = false;
|
||||
|
||||
if (this->last_sent.size() > KEEP_SENT)
|
||||
this->last_sent.erase(this->last_sent.begin(), this->last_sent.end() - KEEP_SENT);
|
||||
while (this->last_sent.size() > KEEP_SENT) {
|
||||
this->last_sent.pop_front();
|
||||
}
|
||||
|
||||
// we can't supply boost::asio::buffer(full_line) to async_write() because full_line is on the
|
||||
// stack and the buffer would lose its underlying storage causing memory corruption
|
||||
|
|
|
@ -51,7 +51,7 @@ class GCodeSender : private boost::noncopyable {
|
|||
bool can_send;
|
||||
bool queue_paused;
|
||||
size_t sent;
|
||||
std::vector<std::string> last_sent;
|
||||
std::deque<std::string> last_sent;
|
||||
|
||||
// this mutex guards log, T, B
|
||||
mutable boost::mutex log_mutex;
|
||||
|
|
|
@ -243,7 +243,7 @@ void PerimeterGenerator::process()
|
|||
perimeter_spacing / 2;
|
||||
// only apply infill overlap if we actually have one perimeter
|
||||
if (inset > 0)
|
||||
inset -= this->config->get_abs_value("infill_overlap", inset + solid_infill_spacing / 2);
|
||||
inset -= scale_(this->config->get_abs_value("infill_overlap", unscale(inset + solid_infill_spacing / 2)));
|
||||
// simplify infill contours according to resolution
|
||||
Polygons pp;
|
||||
for (ExPolygon &ex : last)
|
||||
|
|
|
@ -948,7 +948,7 @@ PrintConfigDef::PrintConfigDef()
|
|||
def->default_value = new ConfigOptionFloats { 10. };
|
||||
|
||||
def = this->add("min_skirt_length", coFloat);
|
||||
def->label = L("Minimum extrusion length");
|
||||
def->label = L("Minimal filament extrusion length");
|
||||
def->tooltip = L("Generate no less than the number of skirt loops required to consume "
|
||||
"the specified amount of filament on the bottom layer. For multi-extruder machines, "
|
||||
"this minimum applies to each extruder.");
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <boost/thread.hpp>
|
||||
|
||||
#define SLIC3R_FORK_NAME "Slic3r Prusa Edition"
|
||||
#define SLIC3R_VERSION "1.40.0-alpha2"
|
||||
#define SLIC3R_VERSION "1.40.0"
|
||||
#define SLIC3R_BUILD "UNKNOWN"
|
||||
|
||||
typedef int32_t coord_t;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include <algorithm>
|
||||
#include <utility>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <boost/format.hpp>
|
||||
#include <boost/log/trivial.hpp>
|
||||
|
||||
#include <wx/settings.h>
|
||||
|
@ -59,7 +59,7 @@ PrinterPicker::PrinterPicker(wxWindow *parent, const VendorProfile &vendor, cons
|
|||
auto *sizer = new wxBoxSizer(wxVERTICAL);
|
||||
|
||||
auto *printer_grid = new wxFlexGridSizer(models.size(), 0, 20);
|
||||
printer_grid->SetFlexibleDirection(wxVERTICAL);
|
||||
printer_grid->SetFlexibleDirection(wxVERTICAL | wxHORIZONTAL);
|
||||
sizer->Add(printer_grid);
|
||||
|
||||
auto namefont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
|
||||
|
@ -136,7 +136,7 @@ void PrinterPicker::on_checkbox(const Checkbox *cbox, bool checked)
|
|||
// Wizard page base
|
||||
|
||||
ConfigWizardPage::ConfigWizardPage(ConfigWizard *parent, wxString title, wxString shortname) :
|
||||
wxPanel(parent),
|
||||
wxPanel(parent->p->hscroll),
|
||||
parent(parent),
|
||||
shortname(std::move(shortname)),
|
||||
p_prev(nullptr),
|
||||
|
@ -182,8 +182,8 @@ ConfigWizardPage* ConfigWizardPage::chain(ConfigWizardPage *page)
|
|||
void ConfigWizardPage::append_text(wxString text)
|
||||
{
|
||||
auto *widget = new wxStaticText(this, wxID_ANY, text, wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT);
|
||||
widget->Wrap(CONTENT_WIDTH);
|
||||
widget->SetMinSize(wxSize(CONTENT_WIDTH, -1));
|
||||
widget->Wrap(WRAP_WIDTH);
|
||||
widget->SetMinSize(wxSize(WRAP_WIDTH, -1));
|
||||
append(widget);
|
||||
}
|
||||
|
||||
|
@ -285,7 +285,7 @@ PageUpdate::PageUpdate(ConfigWizard *parent) :
|
|||
const auto text_bold = _(L("Updates are never applied without user's consent and never overwrite user's customized settings."));
|
||||
auto *label_bold = new wxStaticText(this, wxID_ANY, text_bold);
|
||||
label_bold->SetFont(boldfont);
|
||||
label_bold->Wrap(CONTENT_WIDTH);
|
||||
label_bold->Wrap(WRAP_WIDTH);
|
||||
append(label_bold);
|
||||
append_text(_(L("Additionally a backup snapshot of the whole configuration is created before an update is applied.")));
|
||||
|
||||
|
@ -615,8 +615,14 @@ void ConfigWizard::priv::load_vendors()
|
|||
// Load vendors from the "vendors" directory in datadir
|
||||
for (fs::directory_iterator it(vendor_dir); it != fs::directory_iterator(); ++it) {
|
||||
if (it->path().extension() == ".ini") {
|
||||
auto vp = VendorProfile::from_ini(it->path());
|
||||
vendors[vp.id] = std::move(vp);
|
||||
try {
|
||||
auto vp = VendorProfile::from_ini(it->path());
|
||||
vendors[vp.id] = std::move(vp);
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
BOOST_LOG_TRIVIAL(error) << boost::format("Error loading vendor bundle %1%: %2%") % it->path() % e.what();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -625,9 +631,14 @@ void ConfigWizard::priv::load_vendors()
|
|||
if (it->path().extension() == ".ini") {
|
||||
const auto id = it->path().stem().string();
|
||||
if (vendors.find(id) == vendors.end()) {
|
||||
auto vp = VendorProfile::from_ini(it->path());
|
||||
vendors_rsrc[vp.id] = it->path().filename().string();
|
||||
vendors[vp.id] = std::move(vp);
|
||||
try {
|
||||
auto vp = VendorProfile::from_ini(it->path());
|
||||
vendors_rsrc[vp.id] = it->path().filename().string();
|
||||
vendors[vp.id] = std::move(vp);
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
BOOST_LOG_TRIVIAL(error) << boost::format("Error loading vendor bundle %1%: %2%") % it->path() % e.what();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -657,7 +668,7 @@ void ConfigWizard::priv::index_refresh()
|
|||
|
||||
void ConfigWizard::priv::add_page(ConfigWizardPage *page)
|
||||
{
|
||||
topsizer->Add(page, 0, wxEXPAND);
|
||||
hscroll_sizer->Add(page, 0, wxEXPAND);
|
||||
|
||||
auto *extra_buttons = page->extra_buttons();
|
||||
if (extra_buttons != nullptr) {
|
||||
|
@ -784,12 +795,19 @@ ConfigWizard::ConfigWizard(wxWindow *parent, RunReason reason) :
|
|||
p->index = new ConfigWizardIndex(this);
|
||||
|
||||
auto *vsizer = new wxBoxSizer(wxVERTICAL);
|
||||
p->topsizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
auto *topsizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
auto *hline = new wxStaticLine(this);
|
||||
p->btnsizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
|
||||
p->topsizer->Add(p->index, 0, wxEXPAND);
|
||||
p->topsizer->AddSpacer(INDEX_MARGIN);
|
||||
// Initially we _do not_ SetScrollRate in order to figure out the overall width of the Wizard without scrolling.
|
||||
// Later, we compare that to the size of the current screen and set minimum width based on that (see below).
|
||||
p->hscroll = new wxScrolledWindow(this);
|
||||
p->hscroll_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
p->hscroll->SetSizer(p->hscroll_sizer);
|
||||
|
||||
topsizer->Add(p->index, 0, wxEXPAND);
|
||||
topsizer->AddSpacer(INDEX_MARGIN);
|
||||
topsizer->Add(p->hscroll, 1, wxEXPAND);
|
||||
|
||||
p->btn_prev = new wxButton(this, wxID_BACKWARD);
|
||||
p->btn_next = new wxButton(this, wxID_FORWARD);
|
||||
|
@ -816,13 +834,25 @@ ConfigWizard::ConfigWizard(wxWindow *parent, RunReason reason) :
|
|||
->chain(p->page_diams)
|
||||
->chain(p->page_temps);
|
||||
|
||||
vsizer->Add(p->topsizer, 1, wxEXPAND | wxALL, DIALOG_MARGIN);
|
||||
vsizer->Add(topsizer, 1, wxEXPAND | wxALL, DIALOG_MARGIN);
|
||||
vsizer->Add(hline, 0, wxEXPAND);
|
||||
vsizer->Add(p->btnsizer, 0, wxEXPAND | wxALL, DIALOG_MARGIN);
|
||||
|
||||
p->set_page(p->page_welcome);
|
||||
SetSizer(vsizer);
|
||||
SetSizerAndFit(vsizer);
|
||||
SetMinSize(GetSize());
|
||||
|
||||
// We can now enable scrolling on hscroll
|
||||
p->hscroll->SetScrollRate(30, 30);
|
||||
// Compare current ("ideal") wizard size with the size of the current screen.
|
||||
// If the screen is smaller, resize wizrad to match, which will enable scrollbars.
|
||||
auto wizard_size = GetSize();
|
||||
unsigned width, height;
|
||||
GUI::get_current_screen_size(width, height);
|
||||
wizard_size.SetWidth(std::min(wizard_size.GetWidth(), (int)(width - 2 * DIALOG_MARGIN)));
|
||||
wizard_size.SetHeight(std::min(wizard_size.GetHeight(), (int)(height - 2 * DIALOG_MARGIN)));
|
||||
SetMinSize(wizard_size);
|
||||
Fit();
|
||||
|
||||
p->btn_prev->Bind(wxEVT_BUTTON, [this](const wxCommandEvent &evt) { this->p->go_prev(); });
|
||||
p->btn_next->Bind(wxEVT_BUTTON, [this](const wxCommandEvent &evt) { this->p->go_next(); });
|
||||
|
|
|
@ -26,7 +26,7 @@ namespace Slic3r {
|
|||
namespace GUI {
|
||||
|
||||
enum {
|
||||
CONTENT_WIDTH = 500,
|
||||
WRAP_WIDTH = 500,
|
||||
|
||||
DIALOG_MARGIN = 15,
|
||||
INDEX_MARGIN = 40,
|
||||
|
@ -196,7 +196,8 @@ struct ConfigWizard::priv
|
|||
std::unordered_map<std::string, std::string> vendors_rsrc;
|
||||
std::unique_ptr<DynamicPrintConfig> custom_config;
|
||||
|
||||
wxBoxSizer *topsizer = nullptr;
|
||||
wxScrolledWindow *hscroll = nullptr;
|
||||
wxBoxSizer *hscroll_sizer = nullptr;
|
||||
wxBoxSizer *btnsizer = nullptr;
|
||||
ConfigWizardPage *page_current = nullptr;
|
||||
ConfigWizardIndex *index = nullptr;
|
||||
|
|
|
@ -199,7 +199,25 @@ namespace Slic3r { namespace GUI {
|
|||
}), temp->GetId());
|
||||
#endif // __WXGTK__
|
||||
|
||||
temp->Bind(wxEVT_TEXT, ([this](wxCommandEvent) { on_change_field(); }), temp->GetId());
|
||||
temp->Bind(wxEVT_TEXT, ([this](wxCommandEvent)
|
||||
{
|
||||
#ifdef __WXGTK__
|
||||
bChangedValueEvent = true;
|
||||
#else
|
||||
on_change_field();
|
||||
#endif //__WXGTK__
|
||||
}), temp->GetId());
|
||||
|
||||
#ifdef __WXGTK__
|
||||
temp->Bind(wxEVT_KEY_UP, [this](wxKeyEvent& event)
|
||||
{
|
||||
if (bChangedValueEvent) {
|
||||
on_change_field();
|
||||
bChangedValueEvent = false;
|
||||
}
|
||||
event.Skip();
|
||||
});
|
||||
#endif //__WXGTK__
|
||||
|
||||
// select all text using Ctrl+A
|
||||
temp->Bind(wxEVT_CHAR, ([temp](wxKeyEvent& event)
|
||||
|
|
|
@ -220,6 +220,9 @@ inline bool is_sizer_field(const t_field& obj) { return !is_bad_field(obj) && ob
|
|||
|
||||
class TextCtrl : public Field {
|
||||
using Field::Field;
|
||||
#ifdef __WXGTK__
|
||||
bool bChangedValueEvent = false;
|
||||
#endif //__WXGTK__
|
||||
public:
|
||||
TextCtrl(const ConfigOptionDef& opt, const t_config_option_key& id) : Field(opt, id) {}
|
||||
TextCtrl(wxWindow* parent, const ConfigOptionDef& opt, const t_config_option_key& id) : Field(parent, opt, id) {}
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include <wx/window.h>
|
||||
#include <wx/msgdlg.h>
|
||||
#include <wx/settings.h>
|
||||
#include <wx/display.h>
|
||||
|
||||
#include "wxExtensions.hpp"
|
||||
|
||||
|
@ -308,6 +309,8 @@ enum ConfigMenuIDs {
|
|||
ConfigMenuCnt,
|
||||
};
|
||||
|
||||
static wxString dots("…", wxConvUTF8);
|
||||
|
||||
void add_config_menu(wxMenuBar *menu, int event_preferences_changed, int event_language_change)
|
||||
{
|
||||
auto local_menu = new wxMenu();
|
||||
|
@ -315,12 +318,12 @@ void add_config_menu(wxMenuBar *menu, int event_preferences_changed, int event_l
|
|||
|
||||
const auto config_wizard_tooltip = wxString::Format(_(L("Run %s")), ConfigWizard::name());
|
||||
// Cmd+, is standard on OS X - what about other operating systems?
|
||||
local_menu->Append(config_id_base + ConfigMenuWizard, ConfigWizard::name() + "\u2026", config_wizard_tooltip);
|
||||
local_menu->Append(config_id_base + ConfigMenuSnapshots, _(L("Configuration Snapshots"))+"\u2026", _(L("Inspect / activate configuration snapshots")));
|
||||
local_menu->Append(config_id_base + ConfigMenuWizard, ConfigWizard::name() + dots, config_wizard_tooltip);
|
||||
local_menu->Append(config_id_base + ConfigMenuSnapshots, _(L("Configuration Snapshots"))+dots, _(L("Inspect / activate configuration snapshots")));
|
||||
local_menu->Append(config_id_base + ConfigMenuTakeSnapshot, _(L("Take Configuration Snapshot")), _(L("Capture a configuration snapshot")));
|
||||
// local_menu->Append(config_id_base + ConfigMenuUpdate, _(L("Check for updates")), _(L("Check for configuration updates")));
|
||||
local_menu->AppendSeparator();
|
||||
local_menu->Append(config_id_base + ConfigMenuPreferences, _(L("Preferences"))+"\u2026\tCtrl+,", _(L("Application preferences")));
|
||||
local_menu->Append(config_id_base + ConfigMenuPreferences, _(L("Preferences"))+dots+"\tCtrl+,", _(L("Application preferences")));
|
||||
local_menu->Append(config_id_base + ConfigMenuLanguage, _(L("Change Application Language")));
|
||||
local_menu->AppendSeparator();
|
||||
local_menu->Append(config_id_base + ConfigMenuFlashFirmware, _(L("Flash printer firmware")), _(L("Upload a firmware image into an Arduino based printer")));
|
||||
|
@ -356,8 +359,7 @@ void add_config_menu(wxMenuBar *menu, int event_preferences_changed, int event_l
|
|||
Config::SnapshotDB::singleton().restore_snapshot(dlg.snapshot_to_activate(), *g_AppConfig).id);
|
||||
g_PresetBundle->load_presets(*g_AppConfig);
|
||||
// Load the currently selected preset into the GUI, update the preset selection box.
|
||||
for (Tab *tab : g_tabs_list)
|
||||
tab->load_current_preset();
|
||||
load_current_presets();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -394,7 +396,7 @@ void add_config_menu(wxMenuBar *menu, int event_preferences_changed, int event_l
|
|||
|
||||
void add_menus(wxMenuBar *menu, int event_preferences_changed, int event_language_change)
|
||||
{
|
||||
add_config_menu(menu, event_language_change, event_language_change);
|
||||
add_config_menu(menu, event_preferences_changed, event_language_change);
|
||||
}
|
||||
|
||||
// This is called when closing the application, when loading a config file or when starting the config wizard
|
||||
|
@ -443,12 +445,16 @@ void config_wizard(int reason)
|
|||
if (! check_unsaved_changes())
|
||||
return;
|
||||
|
||||
ConfigWizard wizard(nullptr, static_cast<ConfigWizard::RunReason>(reason));
|
||||
wizard.run(g_PresetBundle, g_PresetUpdater);
|
||||
try {
|
||||
ConfigWizard wizard(nullptr, static_cast<ConfigWizard::RunReason>(reason));
|
||||
wizard.run(g_PresetBundle, g_PresetUpdater);
|
||||
}
|
||||
catch (const std::exception &e) {
|
||||
show_error(nullptr, e.what());
|
||||
}
|
||||
|
||||
// Load the currently selected preset into the GUI, update the preset selection box.
|
||||
for (Tab *tab : g_tabs_list)
|
||||
tab->load_current_preset();
|
||||
// Load the currently selected preset into the GUI, update the preset selection box.
|
||||
load_current_presets();
|
||||
}
|
||||
|
||||
void open_preferences_dialog(int event_preferences)
|
||||
|
@ -600,6 +606,13 @@ void add_created_tab(Tab* panel)
|
|||
g_wxTabPanel->AddPage(panel, panel->title());
|
||||
}
|
||||
|
||||
void load_current_presets()
|
||||
{
|
||||
for (Tab *tab : g_tabs_list) {
|
||||
tab->load_current_preset();
|
||||
}
|
||||
}
|
||||
|
||||
void show_error(wxWindow* parent, const wxString& message) {
|
||||
ErrorDialog msg(parent, message);
|
||||
msg.ShowModal();
|
||||
|
@ -836,7 +849,7 @@ void add_frequently_changed_parameters(wxWindow* parent, wxBoxSizer* sizer, wxFl
|
|||
|
||||
Line line = { "", "" };
|
||||
line.widget = [config](wxWindow* parent){
|
||||
g_wiping_dialog_button = new wxButton(parent, wxID_ANY, _(L("Purging volumes")) + "\u2026", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
g_wiping_dialog_button = new wxButton(parent, wxID_ANY, _(L("Purging volumes")) + dots, wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
auto sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
sizer->Add(g_wiping_dialog_button);
|
||||
g_wiping_dialog_button->Bind(wxEVT_BUTTON, ([parent](wxCommandEvent& e)
|
||||
|
@ -921,6 +934,14 @@ int get_export_option(wxFileDialog* dlg)
|
|||
|
||||
}
|
||||
|
||||
void get_current_screen_size(unsigned &width, unsigned &height)
|
||||
{
|
||||
wxDisplay display(wxDisplay::GetFromWindow(g_wxMainFrame));
|
||||
const auto disp_size = display.GetClientArea();
|
||||
width = disp_size.GetWidth();
|
||||
height = disp_size.GetHeight();
|
||||
}
|
||||
|
||||
void about()
|
||||
{
|
||||
AboutDialog dlg;
|
||||
|
@ -929,34 +950,51 @@ void about()
|
|||
}
|
||||
|
||||
void desktop_open_datadir_folder()
|
||||
{
|
||||
{
|
||||
// Execute command to open a file explorer, platform dependent.
|
||||
std::string cmd =
|
||||
// FIXME: The const_casts aren't needed in wxWidgets 3.1, remove them when we upgrade.
|
||||
|
||||
const auto path = data_dir();
|
||||
#ifdef _WIN32
|
||||
"explorer "
|
||||
const auto widepath = wxString::FromUTF8(path.data());
|
||||
const wchar_t *argv[] = { L"explorer", widepath.GetData(), nullptr };
|
||||
::wxExecute(const_cast<wchar_t**>(argv), wxEXEC_ASYNC, nullptr);
|
||||
#elif __APPLE__
|
||||
"open "
|
||||
const char *argv[] = { "open", path.data(), nullptr };
|
||||
::wxExecute(const_cast<char**>(argv), wxEXEC_ASYNC, nullptr);
|
||||
#else
|
||||
"xdg-open "
|
||||
const char *argv[] = { "xdg-open", path.data(), nullptr };
|
||||
|
||||
// Check if we're running in an AppImage container, if so, we need to remove AppImage's env vars,
|
||||
// because they may mess up the environment expected by the file manager.
|
||||
// Mostly this is about LD_LIBRARY_PATH, but we remove a few more too for good measure.
|
||||
if (wxGetEnv("APPIMAGE", nullptr)) {
|
||||
// We're running from AppImage
|
||||
wxEnvVariableHashMap env_vars;
|
||||
wxGetEnvMap(&env_vars);
|
||||
|
||||
env_vars.erase("APPIMAGE");
|
||||
env_vars.erase("APPDIR");
|
||||
env_vars.erase("LD_LIBRARY_PATH");
|
||||
env_vars.erase("LD_PRELOAD");
|
||||
env_vars.erase("UNION_PRELOAD");
|
||||
|
||||
wxExecuteEnv exec_env;
|
||||
exec_env.env = std::move(env_vars);
|
||||
|
||||
wxString owd;
|
||||
if (wxGetEnv("OWD", &owd)) {
|
||||
// This is the original work directory from which the AppImage image was run,
|
||||
// set it as CWD for the child process:
|
||||
exec_env.cwd = std::move(owd);
|
||||
}
|
||||
|
||||
::wxExecute(const_cast<char**>(argv), wxEXEC_ASYNC, nullptr, &exec_env);
|
||||
} else {
|
||||
// Looks like we're NOT running from AppImage, we'll make no changes to the environment.
|
||||
::wxExecute(const_cast<char**>(argv), wxEXEC_ASYNC, nullptr, nullptr);
|
||||
}
|
||||
#endif
|
||||
;
|
||||
// Escape the path, platform dependent.
|
||||
std::string path = data_dir();
|
||||
#ifdef _WIN32
|
||||
// Enclose the path into double quotes on Windows. A quote character is forbidden in file names,
|
||||
// therefore it does not need to be escaped.
|
||||
cmd += '"';
|
||||
cmd += path;
|
||||
cmd += '"';
|
||||
#else
|
||||
// Enclose the path into single quotes on Unix / OSX. All single quote characters need to be escaped
|
||||
// inside a file name.
|
||||
cmd += '\'';
|
||||
boost::replace_all(path, "'", "\\'");
|
||||
cmd += path;
|
||||
cmd += '\'';
|
||||
#endif
|
||||
::wxExecute(wxString::FromUTF8(cmd.c_str()), wxEXEC_ASYNC, nullptr);
|
||||
}
|
||||
|
||||
} }
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
#include <vector>
|
||||
#include "Config.hpp"
|
||||
|
||||
#include <wx/intl.h>
|
||||
#include <wx/string.h>
|
||||
|
||||
class wxApp;
|
||||
class wxWindow;
|
||||
class wxFrame;
|
||||
|
@ -30,6 +33,12 @@ class PresetUpdater;
|
|||
class DynamicPrintConfig;
|
||||
class TabIface;
|
||||
|
||||
#define _(s) Slic3r::translate((s))
|
||||
inline wxString translate(const char *s) { return wxGetTranslation(wxString(s, wxConvUTF8)); }
|
||||
inline wxString translate(const wchar_t *s) { return wxGetTranslation(s); }
|
||||
inline wxString translate(const std::string &s) { return wxGetTranslation(wxString(s.c_str(), wxConvUTF8)); }
|
||||
inline wxString translate(const std::wstring &s) { return wxGetTranslation(s.c_str()); }
|
||||
|
||||
// !!! If you needed to translate some wxString,
|
||||
// !!! please use _(L(string))
|
||||
// !!! _() - is a standard wxWidgets macro to translate
|
||||
|
@ -116,6 +125,9 @@ void add_created_tab(Tab* panel);
|
|||
// Change option value in config
|
||||
void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt_key, const boost::any& value, int opt_index = 0);
|
||||
|
||||
// Update UI / Tabs to reflect changes in the currently loaded presets
|
||||
void load_current_presets();
|
||||
|
||||
void show_error(wxWindow* parent, const wxString& message);
|
||||
void show_error_id(int id, const std::string& message); // For Perl
|
||||
void show_info(wxWindow* parent, const wxString& message, const wxString& title);
|
||||
|
@ -157,6 +169,9 @@ wxButton* get_wiping_dialog_button();
|
|||
void add_export_option(wxFileDialog* dlg, const std::string& format);
|
||||
int get_export_option(wxFileDialog* dlg);
|
||||
|
||||
// Returns the dimensions of the screen on which the main frame is displayed
|
||||
void get_current_screen_size(unsigned &width, unsigned &height);
|
||||
|
||||
// Display an About dialog
|
||||
extern void about();
|
||||
// Ask the destop to open the datadir using the default file explorer.
|
||||
|
|
|
@ -101,6 +101,7 @@ PresetBundle::~PresetBundle()
|
|||
void PresetBundle::reset(bool delete_files)
|
||||
{
|
||||
// Clear the existing presets, delete their respective files.
|
||||
this->vendors.clear();
|
||||
this->prints .reset(delete_files);
|
||||
this->filaments.reset(delete_files);
|
||||
this->printers .reset(delete_files);
|
||||
|
@ -840,17 +841,13 @@ size_t PresetBundle::load_configbundle(const std::string &path, unsigned int fla
|
|||
// Load the print, filament or printer preset.
|
||||
const DynamicPrintConfig &default_config = presets->default_preset().config;
|
||||
DynamicPrintConfig config(default_config);
|
||||
std::vector<std::string> config_keys = config.keys();
|
||||
// The following two keys are valid, but they are not mandatory.
|
||||
config_keys.emplace_back("compatible_printers");
|
||||
config_keys.emplace_back("compatible_printers_condition");
|
||||
for (auto &kvp : section.second)
|
||||
config.set_deserialize(kvp.first, kvp.second.data());
|
||||
Preset::normalize(config);
|
||||
// Report configuration fields, which are misplaced into a wrong group.
|
||||
std::string incorrect_keys;
|
||||
size_t n_incorrect_keys = 0;
|
||||
for (const std::string &key : config_keys)
|
||||
for (const std::string &key : config.keys())
|
||||
if (! default_config.has(key)) {
|
||||
if (incorrect_keys.empty())
|
||||
incorrect_keys = key;
|
||||
|
|
|
@ -2,12 +2,7 @@
|
|||
#include <wx/dcbuffer.h>
|
||||
|
||||
#include "RammingChart.hpp"
|
||||
|
||||
|
||||
//! macro used to mark string used at localization,
|
||||
//! return same string
|
||||
#define L(s) s
|
||||
|
||||
#include "GUI.hpp"
|
||||
|
||||
|
||||
wxDEFINE_EVENT(EVT_WIPE_TOWER_CHART_CHANGED, wxCommandEvent);
|
||||
|
@ -83,7 +78,7 @@ void Chart::draw() {
|
|||
int text_height = 0;
|
||||
dc.GetTextExtent(label,&text_width,&text_height);
|
||||
dc.DrawText(label,wxPoint(0.5*(m_rect.GetRight()+m_rect.GetLeft())-text_width/2.f, m_rect.GetBottom()+25));
|
||||
label = _(L("Volumetric speed")) + " (" + _(L("mm")) + "\u00B3/" + _(L("s")) + ")";
|
||||
label = _(L("Volumetric speed")) + " (" + _(L("mm")) + wxString("³/", wxConvUTF8) + _(L("s")) + ")";
|
||||
dc.GetTextExtent(label,&text_width,&text_height);
|
||||
dc.DrawRotatedText(label,wxPoint(0,0.5*(m_rect.GetBottom()+m_rect.GetTop())+text_width/2.f),90);
|
||||
}
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
namespace Slic3r {
|
||||
namespace GUI {
|
||||
|
||||
static wxString dots("…", wxConvUTF8);
|
||||
|
||||
// sub new
|
||||
void Tab::create_preset_tab(PresetBundle *preset_bundle)
|
||||
{
|
||||
|
@ -1261,7 +1263,7 @@ void TabFilament::build()
|
|||
optgroup->append_single_option_line("filament_density");
|
||||
optgroup->append_single_option_line("filament_cost");
|
||||
|
||||
optgroup = page->new_optgroup(_(L("Temperature ")) +" (\u00B0C)"); // degree sign
|
||||
optgroup = page->new_optgroup(_(L("Temperature ")) + wxString("°C", wxConvUTF8));
|
||||
Line line = { _(L("Extruder")), "" };
|
||||
line.append_option(optgroup->get_option("first_layer_temperature"));
|
||||
line.append_option(optgroup->get_option("temperature"));
|
||||
|
@ -1319,7 +1321,7 @@ void TabFilament::build()
|
|||
optgroup->append_single_option_line("filament_toolchange_delay");
|
||||
line = { _(L("Ramming")), "" };
|
||||
line.widget = [this](wxWindow* parent){
|
||||
auto ramming_dialog_btn = new wxButton(parent, wxID_ANY, _(L("Ramming settings"))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
auto ramming_dialog_btn = new wxButton(parent, wxID_ANY, _(L("Ramming settings"))+dots, wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
auto sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
sizer->Add(ramming_dialog_btn);
|
||||
|
||||
|
@ -1441,7 +1443,7 @@ void TabPrinter::build()
|
|||
|
||||
Line line{ _(L("Bed shape")), "" };
|
||||
line.widget = [this](wxWindow* parent){
|
||||
auto btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
|
||||
auto btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
|
||||
// btn->SetFont(Slic3r::GUI::small_font);
|
||||
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("printer_empty.png")), wxBITMAP_TYPE_PNG));
|
||||
|
||||
|
@ -1540,7 +1542,7 @@ void TabPrinter::build()
|
|||
optgroup = page->new_optgroup(_(L("OctoPrint upload")));
|
||||
|
||||
auto octoprint_host_browse = [this, optgroup] (wxWindow* parent) {
|
||||
auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
|
||||
auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
|
||||
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("zoom.png")), wxBITMAP_TYPE_PNG));
|
||||
auto sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
sizer->Add(btn);
|
||||
|
@ -1589,7 +1591,7 @@ void TabPrinter::build()
|
|||
Line cafile_line = optgroup->create_single_option_line("octoprint_cafile");
|
||||
|
||||
auto octoprint_cafile_browse = [this, optgroup] (wxWindow* parent) {
|
||||
auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
|
||||
auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
|
||||
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("zoom.png")), wxBITMAP_TYPE_PNG));
|
||||
auto sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
sizer->Add(btn);
|
||||
|
@ -2054,7 +2056,15 @@ bool Tab::may_discard_current_dirty_preset(PresetCollection* presets /*= nullptr
|
|||
void Tab::OnTreeSelChange(wxTreeEvent& event)
|
||||
{
|
||||
if (m_disable_tree_sel_changed_event) return;
|
||||
|
||||
// There is a bug related to Ubuntu overlay scrollbars, see https://github.com/prusa3d/Slic3r/issues/898 and https://github.com/prusa3d/Slic3r/issues/952.
|
||||
// The issue apparently manifests when Show()ing a window with overlay scrollbars while the UI is frozen. For this reason,
|
||||
// we will Thaw the UI prematurely on Linux. This means destroing the no_updates object prematurely.
|
||||
#ifdef __linux__
|
||||
std::unique_ptr<wxWindowUpdateLocker> no_updates(new wxWindowUpdateLocker(this));
|
||||
#else
|
||||
wxWindowUpdateLocker noUpdates(this);
|
||||
#endif
|
||||
|
||||
Page* page = nullptr;
|
||||
auto selection = m_treectrl->GetItemText(m_treectrl->GetSelection());
|
||||
|
@ -2070,6 +2080,11 @@ void Tab::OnTreeSelChange(wxTreeEvent& event)
|
|||
|
||||
for (auto& el : m_pages)
|
||||
el.get()->Hide();
|
||||
|
||||
#ifdef __linux__
|
||||
no_updates.reset(nullptr);
|
||||
#endif
|
||||
|
||||
page->Show();
|
||||
m_hsizer->Layout();
|
||||
Refresh();
|
||||
|
@ -2211,7 +2226,7 @@ void Tab::update_ui_from_settings()
|
|||
wxSizer* Tab::compatible_printers_widget(wxWindow* parent, wxCheckBox** checkbox, wxButton** btn)
|
||||
{
|
||||
*checkbox = new wxCheckBox(parent, wxID_ANY, _(L("All")));
|
||||
*btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
|
||||
*btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
|
||||
|
||||
(*btn)->SetBitmap(wxBitmap(from_u8(Slic3r::var("printer_empty.png")), wxBITMAP_TYPE_PNG));
|
||||
|
||||
|
|
|
@ -1,15 +1,10 @@
|
|||
#include <algorithm>
|
||||
#include <sstream>
|
||||
#include "WipeTowerDialog.hpp"
|
||||
#include "GUI.hpp"
|
||||
|
||||
#include <wx/sizer.h>
|
||||
|
||||
//! macro used to mark string used at localization,
|
||||
//! return same string
|
||||
#define L(s) s
|
||||
|
||||
|
||||
|
||||
RammingDialog::RammingDialog(wxWindow* parent,const std::string& parameters)
|
||||
: wxDialog(parent, wxID_ANY, _(L("Ramming customization")), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE/* | wxRESIZE_BORDER*/)
|
||||
{
|
||||
|
@ -81,7 +76,7 @@ RammingPanel::RammingPanel(wxWindow* parent, const std::string& parameters)
|
|||
auto gsizer_param = new wxFlexGridSizer(2, 5, 15);
|
||||
gsizer_param->Add(new wxStaticText(this, wxID_ANY, wxString(_(L("Total ramming time")) + " (" + _(L("s")) + "):")), 0, wxALIGN_CENTER_VERTICAL);
|
||||
gsizer_param->Add(m_widget_time);
|
||||
gsizer_param->Add(new wxStaticText(this, wxID_ANY, wxString(_(L("Total rammed volume")) + " (" + _(L("mm")) + "\u00B3):")), 0, wxALIGN_CENTER_VERTICAL);
|
||||
gsizer_param->Add(new wxStaticText(this, wxID_ANY, wxString(_(L("Total rammed volume")) + " (" + _(L("mm")) + wxString("³):", wxConvUTF8))), 0, wxALIGN_CENTER_VERTICAL);
|
||||
gsizer_param->Add(m_widget_volume);
|
||||
gsizer_param->AddSpacer(20);
|
||||
gsizer_param->AddSpacer(20);
|
||||
|
@ -220,7 +215,7 @@ WipingPanel::WipingPanel(wxWindow* parent, const std::vector<float>& matrix, con
|
|||
|
||||
// collect and format sizer
|
||||
format_sizer(m_sizer_advanced, m_page_advanced, m_gridsizer_advanced,
|
||||
wxString::Format(_(L("Here you can adjust required purging volume (mm%s) for any given pair of tools.")), "\u00B3"),
|
||||
_(L("Here you can adjust required purging volume (mm³) for any given pair of tools.")),
|
||||
_(L("Extruder changed to")));
|
||||
|
||||
// Hide preview page before new page creating
|
||||
|
@ -243,7 +238,7 @@ WipingPanel::WipingPanel(wxWindow* parent, const std::vector<float>& matrix, con
|
|||
// collect and format sizer
|
||||
format_sizer(m_sizer_simple, m_page_simple, gridsizer_simple,
|
||||
_(L("Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded.")),
|
||||
wxString::Format(_(L("Volume to purge (mm%s) when the filament is being")), "\u00B3"), 50);
|
||||
_(L("Volume to purge (mm³) when the filament is being")), 50);
|
||||
|
||||
m_sizer = new wxBoxSizer(wxVERTICAL);
|
||||
m_sizer->Add(m_page_simple, 0, wxEXPAND | wxALL, 25);
|
||||
|
|
|
@ -116,6 +116,8 @@ struct PresetUpdater::priv
|
|||
void check_install_indices() const;
|
||||
Updates get_config_updates() const;
|
||||
void perform_updates(Updates &&updates, bool snapshot = true) const;
|
||||
|
||||
static void copy_file(const fs::path &from, const fs::path &to);
|
||||
};
|
||||
|
||||
PresetUpdater::priv::priv(int version_online_event) :
|
||||
|
@ -162,7 +164,7 @@ bool PresetUpdater::priv::get_file(const std::string &url, const fs::path &targe
|
|||
% http_status
|
||||
% error;
|
||||
})
|
||||
.on_complete([&](std::string body, unsigned http_status) {
|
||||
.on_complete([&](std::string body, unsigned /* http_status */) {
|
||||
fs::fstream file(tmp_path, std::ios::out | std::ios::binary | std::ios::trunc);
|
||||
file.write(body.c_str(), body.size());
|
||||
file.close();
|
||||
|
@ -204,7 +206,7 @@ void PresetUpdater::priv::sync_version() const
|
|||
% http_status
|
||||
% error;
|
||||
})
|
||||
.on_complete([&](std::string body, unsigned http_status) {
|
||||
.on_complete([&](std::string body, unsigned /* http_status */) {
|
||||
boost::trim(body);
|
||||
BOOST_LOG_TRIVIAL(info) << boost::format("Got Slic3rPE online version: `%1%`. Sending to GUI thread...") % body;
|
||||
wxCommandEvent* evt = new wxCommandEvent(version_online_event);
|
||||
|
@ -285,7 +287,7 @@ void PresetUpdater::priv::check_install_indices() const
|
|||
|
||||
if (! fs::exists(path_in_cache)) {
|
||||
BOOST_LOG_TRIVIAL(info) << "Install index from resources: " << path.filename();
|
||||
fs::copy_file(path, path_in_cache, fs::copy_option::overwrite_if_exists);
|
||||
copy_file(path, path_in_cache);
|
||||
} else {
|
||||
Index idx_rsrc, idx_cache;
|
||||
idx_rsrc.load(path);
|
||||
|
@ -293,7 +295,7 @@ void PresetUpdater::priv::check_install_indices() const
|
|||
|
||||
if (idx_cache.version() < idx_rsrc.version()) {
|
||||
BOOST_LOG_TRIVIAL(info) << "Update index from resources: " << path.filename();
|
||||
fs::copy_file(path, path_in_cache, fs::copy_option::overwrite_if_exists);
|
||||
copy_file(path, path_in_cache);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -397,7 +399,7 @@ void PresetUpdater::priv::perform_updates(Updates &&updates, bool snapshot) cons
|
|||
for (const auto &update : updates.updates) {
|
||||
BOOST_LOG_TRIVIAL(info) << '\t' << update;
|
||||
|
||||
fs::copy_file(update.source, update.target, fs::copy_option::overwrite_if_exists);
|
||||
copy_file(update.source, update.target);
|
||||
|
||||
PresetBundle bundle;
|
||||
bundle.load_configbundle(update.target.string(), PresetBundle::LOAD_CFGBNDLE_SYSTEM);
|
||||
|
@ -433,6 +435,18 @@ void PresetUpdater::priv::perform_updates(Updates &&updates, bool snapshot) cons
|
|||
}
|
||||
}
|
||||
|
||||
void PresetUpdater::priv::copy_file(const fs::path &source, const fs::path &target)
|
||||
{
|
||||
static const auto perms = fs::owner_read | fs::owner_write | fs::group_read | fs::others_read; // aka 644
|
||||
|
||||
// Make sure the file has correct permission both before and after we copy over it
|
||||
if (fs::exists(target)) {
|
||||
fs::permissions(target, perms);
|
||||
}
|
||||
fs::copy_file(source, target, fs::copy_option::overwrite_if_exists);
|
||||
fs::permissions(target, perms);
|
||||
}
|
||||
|
||||
|
||||
PresetUpdater::PresetUpdater(int version_online_event) :
|
||||
p(new priv(version_online_event))
|
||||
|
@ -553,6 +567,12 @@ bool PresetUpdater::config_update() const
|
|||
if (res == wxID_OK) {
|
||||
BOOST_LOG_TRIVIAL(debug) << "User agreed to perform the update";
|
||||
p->perform_updates(std::move(updates));
|
||||
|
||||
// Reload global configuration
|
||||
auto *app_config = GUI::get_app_config();
|
||||
app_config->reset_selections();
|
||||
GUI::get_preset_bundle()->load_presets(*app_config);
|
||||
GUI::load_current_presets();
|
||||
} else {
|
||||
BOOST_LOG_TRIVIAL(info) << "User refused the update";
|
||||
}
|
||||
|
|
|
@ -66,11 +66,7 @@ bool check_unsaved_changes()
|
|||
|
||||
bool config_wizard_startup(int app_config_exists)
|
||||
%code%{
|
||||
try {
|
||||
RETVAL=Slic3r::GUI::config_wizard_startup(app_config_exists != 0);
|
||||
} catch (std::exception& e) {
|
||||
croak("%s\n", e.what());
|
||||
}
|
||||
RETVAL=Slic3r::GUI::config_wizard_startup(app_config_exists != 0);
|
||||
%};
|
||||
|
||||
void open_preferences_dialog(int preferences_event)
|
||||
|
|