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-09-02Fix check of model checker to take new unit of shrinkage factor into accountGhostkeeper
It's now based around 100%, so this should be adjusted. Contributes to issue CURA-7118.
2020-08-07Update the SDK version to 7.3.0 for 4.7Kostas Karmas
CURA-7641
2020-05-29Remove trailing whitespace from Python filesNino van Hooff
2020-05-08Convert doxygen to rst for GcodeWriter, LegacyProfileReader,Nino van Hooff
MachineSettingsAction, ModelChecker
2020-04-29Check the bounding box before using itGhostkeeper
Some objects don't have a bounding box if they are improperly constructed by a plug-in. Fixes Sentry issue CURA-N3.
2020-04-21Update missed sdk versions from 7.1 to 7.2.0 for Cura 4.6Nino van Hooff
CURA-7383
2020-04-10Remove a number of unused variablesJaime van Kessel
2020-02-28Skip nodes in modelchecker without active extruderJaime van Kessel
Fixes CURA-5S
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
2019-09-13Remove use of deprecated extruders propertyJaime van Kessel
2019-02-21Ensure the model checker doesn't update a gazillion times on multiplyJaime van Kessel
CURA-6237
2019-02-19Ignore sceneChange signals if the camera triggered them in some placesJaime van Kessel
These places weren't interested in all changes. They can probably be more strict, but the camera is a really safe bet (and already greatly decreases the number of updates, especially when just moving the camera)
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-12-06Align the additional components to the right of the job specsDiego Prado Gesto
The model checker now shows centered
2018-12-04Remove sourceSize.width: width from all RecolorImagesGhostkeeper
It is now the default in Uranium. Contributes to issue CURA-5876.
2018-10-18Fix code styleGhostkeeper
Most stuff here was recently changed. Some of it was where I found a pattern in something that was likely copy-pasted from somewhere else, so I did a global search and replace on that. Contributes to issue CURA-5784.
2018-10-03Remove unnecessary import and declaration of i18n in pluginsfieldOfView
2018-08-27Increase plugin API version to 5Aleksei S
CURA-5627
2018-05-28Textual fix for MarketingMark
2018-04-24Fix optional arguments in MA _onChanged3.3.0Lipu Fei
2018-04-24Do not keep triggering on changed in MALipu Fei
2018-04-16Schedule model check for later if a machine change has not done yetLipu Fei
CURA-5239
2018-04-16Update model checker textLipu Fei
CURA-5237
2018-04-16Rename model checker property to hasWarningsLipu Fei
CURA-5237
2018-03-26CURA-4557 Minor changes in the message.Diego Prado Gesto
2018-03-22Adjust description of buttonGhostkeeper
You now no longer click to check if there's something wrong. Contributes to issue CURA-4557.
2018-03-22Make _getMaterialShrinkage protectedRuben D
No need to expose this. Contributes to issue CURA-4557.
2018-03-22Remove unnecessary _has_warningsRuben D
We just always show the message because the button can only be pressed while there are warnings. Contributes to issue CURA-4557.
2018-03-22Let shrinkage check set its own messageRuben D
Another attempt to keep the shrinkage check contained to functions related to shrinkage more. Contributes to issue CURA-4557.
2018-03-22Move shrinkage parameters into shrinkage functionRuben D
So that they are closer to where they are relevant if we're going to have more checks in this class. Contributes to issue CURA-4557.
2018-03-22No need to create view again upon showing warningsRuben D
It is now already done when initialization is completed. Contributes to issue CURA-4557.
2018-03-22Remove happy messageRuben D
Since the button can only get shown when there is something wrong, the happy message can never be shown any more. Contributes to issue CURA-4557.
2018-03-22Only display plug-in checker when there's really a warningRuben D
As discussed with LukeChen-Ultimaker, we only want to display a button when there is really something up with the current set-up, not when there might be something up. Most users will be confused to see a button that always says that everything is fine. This also simplifies the signal handling a lot. Contributes to issue CURA-4557.
2018-03-22Remove unused parameterRuben D
Contributes to issue CURA-4557.
2018-03-22Call checkObjectsForShrinkage directly from runChecksRuben D
I'd like to transition to a state where you can read in runChecks all the checks that are being run. The former function checkAllSliceableNodes is now a helper function to list sliceable nodes. Contributes to issue CURA-4557.
2018-03-22Remove debug codeRuben D
Contributes to issue CURA-4557.
2018-03-22Remove unused codeRuben D
The IDs, group, and xlink and such are not used at all. Contributes to issue CURA-4557.
2018-03-22Add documentation for globalsRuben D
And maybe they should not be globals. Contributes to issue CURA-4557.
2018-03-22Hide outdated message if checking againRuben D
And if the result is different. Contributes to issue CURA-4557.
2018-03-22Reuse message instancesRuben D
Slightly more performant. And now if you click on the button again you won't get a spammy new message each time. Contributes to issue CURA-4557.
2018-03-22Make model checker warning easier to translateRuben D
It's often more clear to have a variable name in there so that the translator knows what'll be filled in for the variable. Contributes to issue CURA-4557.
2018-03-22Improve wording of warning for too large modelsRuben D
A bit simpler English here. Contributes to issue CURA-4557.
2018-03-22Remove debug codeRuben D
This code was put in to allow debugging before the branches are merged. We should just assume that the two branches get merged at the same time. Contributes to issue CURA-4557.
2018-03-21CURA-4557 it's now a small button next to the job spec when one of the ↵Jack Ha
warping materials is selected
2018-03-21CURA-4557 added iconJack Ha
2018-03-20CURA-4557 rename ratio percentage to percentageJack Ha
2018-03-20CURA-4557 model checker is now a tool, click to activateJack Ha