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
2021-04-06Increment SDK version to 7.5.0Ghostkeeper
The Cura 4.9 release will have expanded functionality. If you have a plug-in that uses this functionality, marking it as using SDK 7.5.0 will notify older Cura releases that they can't use that plug-in.
2020-10-22Up the SDK version to 7.4.0Kostas Karmas
In preparation for release of the 4.8. CURA-7795
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-05-29Use extruderList rather than deprecated extruders propertyGhostkeeper
Done during Turbo Testing and Tooling.
2020-05-29Remove trailing whitespace from Python filesNino van Hooff
2020-05-08Convert doxygen to rst for GcodeReader, GcodeGzReader/Writer,Nino van Hooff
GCodeProfileReader
2020-04-21Update missed sdk versions from 7.1 to 7.2.0 for Cura 4.6Nino van Hooff
CURA-7383
2020-02-24lil: optimize parsing gcode arg letterTim Kuipers
CURA-7066
2020-02-24fix E-values after G92 when parsing gcodeTim Kuipers
CURA-7066
2020-02-24Avoid showing infinitely wide lines in gcodeTim Kuipers
lines less than zero wide are displayed as very wide; prevent negative extrusion lines from being generated in the first place CURA-7066
2020-02-10Bump SDK version number of Cura 4.5 to 7.1Ghostkeeper
We've added new things to our API. This allows plug-in developers to use them. Contributes to issue CURA-7205.
2020-02-05Ignore g-code lines with syntax errorsGhostkeeper
Discovered while working on CURA-7145.
2019-10-21Change SDK version to 7.0.0Nino van Hooff
CURA-6858
2019-09-05Add doc for the need of filename in processGCodeStream()Lipu Fei
2019-09-03Do not trigger slicing if there's no slicable objectLipu Fei
CURA-6604
2019-09-03Fix regex in FlavorParserLipu Fei
2019-08-30Fix multi extrusion gcode loadingLipu Fei
CURA-6604
2019-08-27Fix typingLipu Fei
CURA-6643
2019-08-27F5 reloads gcode fileLipu Fei
CURA-6643
2019-05-06Include the prime tower to the time calculationsDiego Prado Gesto
Contributes to CURA-6509.
2019-05-06Fix colour of prime towerGhostkeeper
2019-04-03Fix typingLipu Fei
2019-03-08Add the skeleton of the pluginDiego Prado Gesto
Contributes to CURA-5155.
2019-01-28Fix error if layer number ends up out of rangeGhostkeeper
It normally doesn't go out of range, but some defensive coding just in case it does. And to fix a typing error of course.
2018-12-17Add missing type for g-code readerJaime van Kessel
2018-12-17Update plugin versions to match package versionsLipu Fei
CURA-6019
2018-12-14Increment API version to 6Ghostkeeper
All plug-ins now have to re-check whether they are still compatible with the current version of Cura. Contributes to issue CURA-6019.
2018-10-24Merge branch 'CURA-5769_gcode_retraction'Ghostkeeper
2018-10-24Correct typoGhostkeeper
intented -> intended
2018-10-19Show retraction for G92 commandAleksei S
CURA-5769
2018-10-17Typing error in CI CURA-5769alekseisasin
2018-10-16Display retractions lines for the loaded Gcode filesAleksei S
CURA-5769
2018-09-27Move MIME type declarations into constructors of readersGhostkeeper
So that if you disable the plug-in, the MIME type declaration is also not added. Fixes #4151.
2018-09-27Define gcode.gz extension in GCodeGzReaderGhostkeeper
So if you were to disable the GCodeGzReader plug-in, you will now no longer see the extension in the files you can read. Fixes #4151.
2018-09-07Cleanup extruder managerJaime van Kessel
Few more unused functions removed & simplified. It also fixes a few more typing issues that I encountered.
2018-08-27Increase plugin API version to 5Aleksei S
CURA-5627
2018-07-06Merge branch 'master' into fix_tests_cura_engine_backendIan Paschal
2018-07-05Fixes for FlavorParserIan Paschal
2018-07-05Fix style in some componentsDiego Prado Gesto
2018-06-29Merge branch 'master' into mypy_fixesLipu Fei
2018-06-29Removed unneeded application reference in construction of meshreadersJaime van Kessel
2018-06-15Fix type errorsGhostkeeper
Contributes to issue CURA-5330.
2018-06-15Don't override boundingbox of SceneNodeGhostkeeper
Whatever was intended here, it didn't work. Because when a method is called it is called on the class of the object. Methods are not attributes of instances but attributes of the class. The attribute of the class was never changed, so this had no effect. Contributes to issue CURA-5330.
2018-06-13CURA-5330 Fix code style and typing in GCodeReader pluginDiego Prado Gesto
2018-05-23CURA-5164 Make the mesh readers compliant with the new signature of the mesh ↵Diego Prado Gesto
reader. Also adapt the tests.
2018-05-14Merge branch 'master' into WIP_improve_initializationDiego Prado Gesto
2018-05-11CURA-5164 The Preferences is not a singleton class anymore since in some pointDiego Prado Gesto
several instances need to be created. - In the ThreeMFWorkspaceReader we need to create some temporal instances of Preferences that makes it not singleton anymore. - The current preferences are kept in the Application class and so all the calls to the preferences are changed to get the preferences from Application. - The method getInstance in Preferences is kept as deprecated since some external plugins.
2018-05-09Show g-code in position it would printRuben D
Rather than trying to retrieve from the g-code what the position was that it was originally sliced. It was trying to find whether it was sliced for a printer with center_is_zero by seeing if there are any negative coordinates in the g-code, which was faulty. Now we don't even try to do that any more. We just find where the print would end up if it were printed with the currently selected printer. Contributes to issue CURA-5068 and fixes #3634.
2018-05-09Fix typing of pathsRuben D
There is still something up with the E values. Most probably an actual bug. We'll investigate. Contributes to issue CURA-5330.