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-09-18Remove shrinkage percentage setting aliasGhostkeeper
This alias shouldn't be written any more since the firmware misinterprets the setting value and errors when it's more than 100%. Contributes to issue CURA-7724.
2020-06-15Consistent typing with function this is overridingGhostkeeper
The function in the parent class has changed its type in commit 7968fe6d56205b20be9ba47e5a19be9f5914b084. This one should also change type.
2020-05-29Remove trailing whitespace from Python filesNino van Hooff
2020-05-28Convert doxygen to rst for X3DReader, XmlMaterialProfile, XRayViewNino van Hooff
2020-04-10Remove a number of unused importsJaime van Kessel
2019-12-30Fix typingJaime van Kessel
CURA-6255
2019-12-30Hardcode plugin id for UsbPrinter and XmlMaterialProfileNino van Hooff
Previous solution was more defensive but also introduced dependencies and extra files for minor benefit CURA-6255
2019-12-24Use plugin Id instead of __file__ for XmlMaterialProfileNino van Hooff
CURA-6255
2019-12-23Merge branch '4.4'Ghostkeeper
Conflicts: cura/Machines/MaterialNode.py -> Due to some automated formatting tool. Please disable those tools, people.
2019-12-19Fix typo.Remco Burema
part of CURA-7041
2019-12-18Add 6 Material Station specific material settings.Nino van Hooff
These settings are currently unused by cura, but passed into the PPA output. Some considerations: - material_ prepended to all. Even though they are not all material specific. The consistency is more developer-friendly imho - defaults taken from generic_pla - type is float for all, consistent with what I found in this file CURA-7041
2019-12-12Add missing 'material break preparation temperature'.Remco Burema
part of CURA-6971 (cherry picked from commit 25f0460231fd970b73744fb3fe1c004dc68a5dc9)
2019-11-22Add missing 'material break preparation temperature'.Remco Burema
part of CURA-6971
2019-11-12Small refactor: Rename in UM.Remco Burema
part of CURA-6856
2019-10-31Make verified material containers read-only, even for variants.Remco Burema
part CURA-6856
2019-10-31Move verification check from plugin to the import of containers.Remco Burema
part of CURA-6856
2019-10-29Add possibility to check material-profiles.Remco Burema
Needed to add the filename to deserialize, feels a bit unsafe as an optional parameter, will discuss tomorrow. part of CURA-6856
2019-10-22Fix setMetaDataEntry() dependency on ContainerRegisteryLipu Fei
CURA-6920
2019-10-09Ensure that all material profiles get metadata updatesJaime van Kessel
CURA-6868
2019-09-13Don't use material groups to update metadataGhostkeeper
The material groups are not filled any more in the material manager so this fails. This might make updating metadata of material profiles slightly slower, but when testing this I noticed no difference. The function becomes a lot simpler though. And it works again. Contributes to issue CURA-6600.
2019-09-10Merge branch 'master' into feature_intent_container_treeDiego Prado Gesto
2019-09-06Added some missing typingJaime van Kessel
2019-09-06Convert some class functions to staticJaime van Kessel
Since they didn't access any class attributes, there is no need for them to be classMethods
2019-09-06Add some tests for XMLMaterialProfileJaime van Kessel
2019-09-06Convert some functions to staticJaime van Kessel
2019-08-27Fix serialising materials without nozzle profile againGhostkeeper
Oops. This is simpler anyway. Contributes to issue CURA-6600.
2019-08-27Remove unused container_tree variableGhostkeeper
Contributes to issue CURA-6600.
2019-08-27Don't add to variant-specific mapping if it's not variant-specificGhostkeeper
Otherwise we'll encounter that the variant name is None when serialising that subprofile. Contributes to issue CURA-6600.
2019-08-27Fix serialising materials with submaterials in not loaded container treesGhostkeeper
Material profiles need to serialise subprofiles that belong to different printers as well. Some of these materials may not be loaded in the ContainerTree structure. To prevent having to load that as well, we're just not going to use the container tree any more. It turns out that the only reason it was using the container tree was to get the hardware_type metadata from the node in the tree. So just get that from the container itself and we're fine. Contributes to issue CURA-6600.
2019-08-27Use container tree to check for variants when serialisingGhostkeeper
Not the variant manager, because it's deprecated. Contributes to issue CURA-6600.
2019-08-19Prevent crashes when duplicating a materialJaime van Kessel
CURA-6600
2019-08-15Replace deprecated .getContainer() calls with .containerRemco Burema
part of CURA-6600
2019-08-13Merge branch 'feature_intent' into feature_intent_container_treeGhostkeeper
Conflicts: .gitlab-ci.yml cura/Machines/MaterialManager.py cura/Machines/VariantManager.py cura/Settings/ContainerManager.py cura/Settings/MachineManager.py tests/TestMachineManager.py
2019-08-12Remove buildplate loading of materials and don't check if variant is thereGhostkeeper
So now we no longer make material subprofiles per buildplate. And now we create subprofiles for variants regardless if the variant exists or not. Contributes to issue CURA-6600.
2019-08-12Move getting variant manager out of the loopGhostkeeper
This mostly just makes it easier for me to debug where the manager is obtained from the deprecated singleton signal. Contributes to issue CURA-6600.
2019-07-23Fix typing issuesJaime van Kessel
They were caused by upgrading to a higher mypy version, which found more mistakes
2019-07-22Use set for unordered collections of thingsGhostkeeper
Contributes to issue CURA-6672.
2019-07-22Ensure that metadata entries in cura namespace are stored correctlyJaime van Kessel
CURA-6672
2019-07-16Change the name of the original depriming settingsDiego Prado Gesto
Change to align with the name in the XML material files. Contributes to CURA-6662.
2019-06-26Rename deprime settings with the new nameGhostkeeper
These have been renamed for greater clarity. We also have to rename them on this side now. Contributes to issue CURA-6329.
2019-06-19Merge branch 'master' into CURA-6329_add_crystallinity_settingGhostkeeper
2019-06-18Fix value update in material profileLipu Fei
CURA-6590
2019-06-04Also remove translation for break preparation temperatureGhostkeeper
This setting is no longer used. If I don't remove it, it'll complain when syncing materials with the printer because it tries to serialise the material profiles then. Contributes to issue CURA-6329.
2019-06-04Add translations for deprime settingsGhostkeeper
These need to be read for the deprime experiments in the PPA. Contributes to issue CURA-6329.
2019-04-26Add build volume temperatureLipu Fei
CURA-6156
2019-04-25Don't serialize 'compatible' metadata keyGhostkeeper
It is already serialised in the 'hardware compatible' settings.
2019-03-05Fix iterating over 'hardware compatible' keysGhostkeeper
This is both faster and actually functions properly. Contributes to issue CURA-6272.
2019-02-21Merge branch '4.0'Ghostkeeper
2019-02-20Merge branch 'ppa_contribute_compatible_format' into 4.0Remco Burema
2019-02-20Don't serialize "definition" for material profileJaime van Kessel
CURA-5787