Cura/plugins
Jelle Spijker d87c7a70cb
Switch return order for Repetier pauseAtHeight
While testing I noticed that the movement after the pause will
first move the head down and then move to the position before
the pause. This could result in noticeable artifacts or
accidentally push thin towers from the bed.) See the code below.

```gcode
;TYPE:CUSTOM
;added code by post processing
;script: PauseAtHeight.py
;current z: 5
;current height: 5.0
M83 ; switch to relative E values for any needed retraction
G1 F300 Z6 ; move up a millimeter to get out of the way
G1 F9000 X190 Y190
G1 F300 Z20.0
M84 E0
@pause now change filament and press ; Do the actual pause
G1 F300 Z5
G1 F9000 X30.759 Y30.759
G1 F1800 ; restore extrusion feedrate
```
I have switched the lines in the script such that it will first move to the correct X, Y and then move down
```python
prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n"
prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + "\n"
```
As shown in the code below
```gcode
;TYPE:CUSTOM
;added code by post processing
;script: PauseAtHeight.py
;current z: 5
;current height: 5.0
M83 ; switch to relative E values for any needed retraction
G1 F300 Z6 ; move up a millimeter to get out of the way
G1 F9000 X190 Y190
G1 F300 Z20.0
M84 E0
@pause now change filament and press ; Do the actual pause
G1 F9000 X30.759 Y30.759
G1 F300 Z5
G1 F1800 ; restore extrusion feedrate
```
2021-08-17 13:38:50 +02:00
..
3MFReader Update messages to use the message_types 2021-07-27 11:54:43 +02:00
3MFWriter Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
AMFReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
CuraDrive Updated message with message types 2021-07-28 08:45:42 +02:00
CuraEngineBackend Set type of engine crash message to Error 2021-08-12 11:17:38 +02:00
CuraProfileReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
CuraProfileWriter Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
DigitalLibrary Fix look for string in enum-type. 2021-08-12 10:05:16 +02:00
FirmwareUpdateChecker Remove unneeded () 2021-07-29 11:40:11 +02:00
FirmwareUpdater Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
GCodeGzReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
GCodeGzWriter Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
GCodeProfileReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
GCodeReader Updated message with message types 2021-07-28 08:45:42 +02:00
GCodeWriter Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
ImageReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
LegacyProfileReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
MachineSettingsAction Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
ModelChecker Update messages to use the message_types 2021-07-27 11:54:43 +02:00
MonitorStage Set header border and color by default in ExpandablePopup and Component 2021-07-01 14:20:57 +02:00
PerObjectSettingsTool Override all settings that might influence infill mesh shells to 0 2021-07-15 18:46:20 +02:00
PostProcessingPlugin Switch return order for Repetier pauseAtHeight 2021-08-17 13:38:50 +02:00
PrepareStage Remove the "Open file" label from the open file dropdown menu 2021-07-21 14:13:50 +02:00
PreviewStage Align sizes of prepare and preview menus 2021-07-07 11:36:10 +02:00
RemovableDriveOutputDevice Updated message with message types 2021-07-28 08:45:42 +02:00
SentryLogger Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
SimulationView Updated message with message types 2021-07-28 08:45:42 +02:00
SliceInfoPlugin Add fallback for if the example file can't be read 2021-06-28 14:32:12 +02:00
SolidView Update messages to use the message_types 2021-07-27 11:54:43 +02:00
SupportEraser Unrevert new icon set for all of Cura's interface 2021-06-28 17:16:56 +02:00
Toolbox Remove incorrect log 2021-08-12 15:43:11 +02:00
TrimeshReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
UFPReader Update SDK/API from 7.5.0 to 7.6.0 for 4.10 2021-06-15 16:08:07 +02:00
UFPWriter Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
UltimakerMachineActions Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
UM3NetworkPrinting Fix crashing when clicking the "Manage in browser" 2021-08-12 09:51:27 +02:00
USBPrinting Updated message with message types 2021-07-28 08:45:42 +02:00
VersionUpgrade Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
X3DReader Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
XmlMaterialProfile Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
XRayView Now unused API field only took integers originally. 2021-06-17 11:15:33 +02:00
README_plugins.txt Add Readme's to plugins and resources folders. 2021-07-27 11:08:01 +02:00