Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-24Round temperatures when displaying themGhostkeeper
These are long lines for some screens. It'll save a bit of space. No PID controller can really control down to fractional degrees. Fan speed and flow rates are already integer settings. For speeds and retraction lenghts the fractions can be important. Done for #8967.
2020-11-26Update plugins/PostProcessingPlugin/scripts/TimeLapse.pyLucas Teske
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2020-11-26Update plugins/PostProcessingPlugin/scripts/TimeLapse.pyLucas Teske
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2020-11-26Update plugins/PostProcessingPlugin/scripts/TimeLapse.pyLucas Teske
Co-authored-by: Jaime van Kessel <nallath@gmail.com>
2020-11-17Add Z-Hop and filament retraction to TimelapseLucas Teske
So less string occurs
2020-10-22Fix displaying time estimation with Griffin headerGhostkeeper
Otherwise it can't find the time and then doesn't output any time remaining commands. Contributes to issue CURA-7787.
2020-10-22Split time remaining setting into activation and methodGhostkeeper
It's a bit more elegant to have two separate settings for it, and show only the method if relevant. Contributes to issue CURA-7787.
2020-10-22Merge branch 'postprocess_periodic_progress' of https://github.com/KimmoHop/CuraGhostkeeper
2020-10-22Merge branch '4.8' of github.com:Ultimaker/CuraJaime van Kessel
2020-10-22Up the SDK version to 7.4.0Kostas Karmas
In preparation for release of the 4.8. CURA-7795
2020-10-21Ensure changeAtZ script sees speed 100 as defaultJaime van Kessel
The speed is asumed to be default at 100%. This is so much assumed that the g-code doesn't even put a m220 s100 command as the basis anymore CURA-7773
2020-10-20Merge branch 'master' of https://github.com/Ultimaker/CuraRemco Burema
2020-10-20'M220' doesn't take a 'T' parameter in any format.Remco Burema
2020-10-16More fixes for PyCapsule_GetPointer race conditionGhostkeeper
One of the weirdest errors out there, and as far as I know we're the only ones suffering from it, due to having multiple packages of Python bindings created with Sip as well as having PyQt and different threads.
2020-10-05Raise error if there is a syntax error in stored post-processing scriptsGhostkeeper
Instead of just crashing the entire application. Fixes Sentry issue CURA-19W.
2020-09-09Added M73 remaining time option and option to output remaining time more oftenKimmo Toivanen
2020-08-20Revert "Revert "Merge branch '4.7' of github.com:Ultimaker/Cura into 4.7""Ghostkeeper
This reverts commit 28f4d8513db7efce17bfd8b80fa7c8b237fd1c18. The original revert was to revert an accidental merge from master to 4.7. This now reverts the revert on Master, so that we still have those changes on Master.
2020-08-20Merge branch '4.7'Ghostkeeper
2020-08-20Revert "Merge branch '4.7' of github.com:Ultimaker/Cura into 4.7"Ghostkeeper
This reverts commit 7f47f12bf0a9cf305542b6c21600ce9b804c1dfd, reversing changes made to dd42c87da762d2030ee2220bc6f0a3e44cf85c28.
2020-08-19Code style: Fields have lower camel casingGhostkeeper
As specified in the Ultimaker/Meta repository.
2020-08-19Remove unused importGhostkeeper
Done during investigation of #8075.
2020-08-10Merge branch '4.7'Ghostkeeper
2020-08-07Don't apply printspeed to travel movesGhostkeeper
As the documentation says, only apply it to extrusion moves. Done as a 5 minute fix.
2020-08-07Fix crash when processLinearMove gets called on something else than G0 or G1Ghostkeeper
Return the original line then.
2020-08-07Update the SDK version to 7.3.0 for 4.7Kostas Karmas
CURA-7641
2020-07-20Correct and consistent spelling of g-codeGhostkeeper
This spelling is in Ultimaker's style guide. We use g-code, and capitalise the G if it's at the start of a sentence or header. Pretty good score, considering there are literally thousands of user- or log-visible strings mentioning g-code across Cura.
2020-07-20Remove default value for g-code before pauseGhostkeeper
It's best to just leave it as is. Not everyone appreciates bleeps. Contributes to issue CURA-7599.
2020-07-20Correct spelling of 'g-code'Ghostkeeper
This is the convention we're holding in this application.
2020-07-20Merge branch 'master' of https://github.com/rodrigosclosa/Cura into ↵Ghostkeeper
rodrigosclosa-master Conflicts: plugins/PostProcessingPlugin/scripts/PauseAtHeight.py -> Merging other pausing scripts into this one plugins/PostProcessingPlugin/scripts/PauseAtHeightforRepetier.py -> Has been removed upstream
2020-07-08Merge pull request #7726 from Bostwickenator/masterKonstantinos Karmas
Add PostProcessingPlugin script DisplayProgressOnLCD
2020-07-08Apply suggestions from code reviewAlexander Gee
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2020-06-23Improved readability of putValueLouis Wouters
2020-06-19Fixed double ";" when using putValue on a line with a commentLouis Wouters
2020-06-18Merge pull request #7919 from adripo/patch-2Nino van Hooff
Fixed next XY return position after pause
2020-06-11Added whitelist G0..G4 instead of blacklistadripo
2020-06-11Fixed next XY return position after pauseadripo
2020-06-11Adjusted correct pause_method for FlyingBear Ghost 4Sadripo
2020-06-09Merge pull request #7775 from sgtnoodle/fix_stretch_feedNino van Hooff
Fix extruder and feed rate after extruder-only moves in post stretch …
2020-05-29Fix running automated tests from source with different SIP versionGhostkeeper
This prevents the PyCapsule_GetPointer error when running the tests for this plug-in. Done during Turbo Testing and Tooling.
2020-05-29Remove trailing whitespace from Python filesNino van Hooff
2020-05-28Merge remote-tracking branch 'origin/master' into ↵Nino van Hooff
doxygen_to_restructuredtext_comments # Conflicts: # cura/API/__init__.py # cura/Settings/CuraContainerRegistry.py # cura/Settings/ExtruderManager.py # plugins/PostProcessingPlugin/scripts/PauseAtHeight.py # plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py # plugins/UM3NetworkPrinting/src/Cloud/ToolPathUploader.py # plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py
2020-05-24Refactor setting names for consistancy, migration scriptAlexander Gee
2020-05-23Add line_set to avoid infinte loopsAlexander Gee
2020-05-23Extract methodAlexander Gee
2020-05-23Incorperate percentage and time remaining scriptsAlexander Gee
2020-05-23Rename to DisplayProgressOnLCDAlexander Gee
2020-05-23Add PostProcessingPlugin script DisplayPercentCompleteOnLCDAlexander Gee
2020-05-17Fix extruder and feed rate after extruder-only moves in post stretch script ↵Jeff Rogers
(issue 7755)
2020-05-15Merge remote-tracking branch 'origin/master' into ↵Nino van Hooff
doxygen_to_restructuredtext_comments # Conflicts: # cura/API/Account.py # plugins/SimulationView/SimulationView.py
2020-05-14Merge branch 'master' into feature_unify_pause_at_heightfieldOfView
# Conflicts: # plugins/PostProcessingPlugin/scripts/BQ_PauseAtHeight.py