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-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-29Codestyle & readability cleanup for g-codeprofile readerJaime van Kessel
2020-05-29Remove trailing whitespace from Python filesNino van Hooff
2020-05-27Fix return type in GCodeProfileReaderNino 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-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.
2019-10-21Change SDK version to 7.0.0Nino van Hooff
CURA-6858
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-08-27Increase plugin API version to 5Aleksei S
CURA-5627
2018-06-11Set encoding correctly when opening files everywhereGhostkeeper
Otherwise the encoding is interpreted differently on Windows and Mac.
2018-05-01Merge master into material marketplaceLipu Fei
2018-04-06Catch ContainerFormatError when deserialising containersGhostkeeper
Only the deserialize() functions themselves may pass the ContainerFormatError on, because their callers will have to handle those errors anyway. Contributes to issue CURA-5045.
2018-04-05Create module cura.ReaderWritersLipu Fei
CURA-4644 Move all reader writer classes into cura.ReaderWriters.
2018-03-09Better info on no profiles to import for gcodeLipu Fei
CIRA-4946 If a gcode is sliced with default profiles, there won't be any custom profiles to import from that gcode. In that case, we show a info message telling the user about this instead of showing an error message.
2018-02-13Streamline usage of g-code (vs. GCode, Gcode, G-code, gcode, etc.)Ghostkeeper
This makes it all the same. It is something that came up in our translation pass this time. Contributes to issue CURA-4883.
2017-09-28Changing AGPLv3 to LGPLv3Mark
2017-06-28Set author to Ultimaker B.V. instead of UltimakerGhostkeeper
To be consistent with the rest of the plug-ins and with the material files. Contributes to issue CURA-3857.
2017-06-22Fix code styleLipu Fei
CURA-3712
2017-06-21Replaced catalog metadata entry with i18n-catalogJaime van Kessel
CURA-3712 & Cura-3856
2017-06-21Moved certain meta data entries to seperate fileJaime van Kessel
CURA-3856 & CURA-3712
2017-05-08GCodeProfileReader: make deserialization more robustLipu Fei
CURA-3770
2016-11-17Importing profiles from g-code made by Cura 2.3 is now possible againJaime van Kessel
CURA-2943
2016-07-12Store the Quality profile for the 'global' and extruders in the gcode. Read ↵Simon Edwards
in all of the quality profile during import. Contributes to CURA-1727 GCode Profile reading/writing: Broken and needs update
2016-07-05Remove unused name/id when importing a profile from a gcode filefieldOfView
A unique name will be set from the filename by ContainerRegistry CURA-1615
2016-06-24GCodeProfileReader: Fixing read of profiles from GCodeThomas Karl Pietrowski
2016-06-23GCodeProfileReader: Increasing the setting versionThomas Karl Pietrowski
2016-06-23Remove some trailing spacesfieldOfView
CURA-1615
2016-06-23GCodeProfileReader: Removing useless containernameThomas Karl Pietrowski
2016-06-17Changing the profile name to something unique.Thomas Karl Pietrowski
Imported profiles will be now called "Custom profile (<G-code filename>)"
2016-06-17Removing setReadOnly(False)Thomas Karl Pietrowski
The profile is writable by default.
2016-06-17Use the same id as set when exportingThomas Karl Pietrowski
Nothing special. Doesn't fix anything..
2016-06-16Updating API to 3Thomas Karl Pietrowski
2016-06-16CURA-1615: Updating GCodeProfileReaderThomas Karl Pietrowski
I got the plugin most of all working. At least the "successfully" imported profile XY" dialog appears. But sadly the profile does not appear in the list of profiles after that. I can only guess something is blocking here. Additionally it should be noted that G-Code exported from Cura 2.1.x does not work here anymore on Cura 2.2.x.
2016-04-28Codestyle & documentationJaime van Kessel
CURA-537
2016-03-02Fix commentGhostkeeper
It had some variable name pasted into it by accident. Contributes to issue CURA-936.
2016-03-01Loaded profiles are now marked as dirty so they are saved correctlyJaime van Kessel
CURA-936
2016-03-01Profile importing now checks if it's the right file typeJaime van Kessel
Contributes to CURA-936
2015-12-17Escape characters of escape_characters dict at initialisationGhostkeeper
Instead of escaping it each time you read a function with that ugly inline for loop, escape the characters when initialising the dict itself. Contributes to issue CURA-34.
2015-12-17Move escape characters to be a static class variableGhostkeeper
It is static and constant, so it won't need to initialise this dictionary every time it reads. Contributes to issue CURA-34.
2015-12-17Move prefix length out of for loopGhostkeeper
It is cached so it only needs to be computed once. Contributes to issue CURA-34.
2015-12-17Move serialised version number to top of GCode reader/writerGhostkeeper
The version number is more clearly exposed there. Contributes to issue CURA-34.
2015-12-17Allowing profile readers to read multiple file types per pluginGhostkeeper
Both of these plugins only read one file type, but it's allowed now. Contributes to issue CURA-34.
2015-12-17Update documentationGhostkeeper
The doxygen documentation of the class and both its functions was also out of date. Contributes to issue CURA-34.
2015-12-17Update documentationGhostkeeper
Just a slight inaccuracy in the documentation of one of the imports. Contributes to issue CURA-34.
2015-12-17GCodeProfileReader plugin properly returns a profileGhostkeeper
Instead of setting the profile as the current profile, return the resulting profile. Contributes to issue CURA-34.
2015-12-17Rename GCodeReader to GCodeProfileReaderGhostkeeper
The new name is more appropriate since it reads only the profiles from the g-code. In the future there might be some other plug-in that reads the actual g-code as for instance a mesh. Contributes to issue CURA-34.