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-07Force update when changing nozzle size in custom FFFJaime van Kessel
Fixes #8306
2020-08-21Hide Shared Heater functionalityGhostkeeper
See the explanation in the comment here as to why.
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-21Update missed sdk versions from 7.1 to 7.2.0 for Cura 4.6Nino van Hooff
CURA-7383
2020-03-20Disallow printers larger than 2kmGhostkeeper
To do this, I'm giving more power to the NumericTextFieldWithUnit QML element, to allow an arbitrary minimum and maximum. Enforcing this minimum and maximum is fairly simple with a JavaScript hook. This hook is necessary because the DoubleValidator allows intermediary values which defeats the purpose, essentially allowing any number as long as it has the correct number of digits. Printers larger than 2km would start to give overflow errors in its X and Y coordinates. Z is okay up to about 9 billion kilometres in theory, since we don't need to do any squaring math on those coordinates afaik. In practice I'm doing this because at very high values the Arranger also gives errors because Numpy can't handle those extremely big arrays (since the arranger creates a 2mm grid). Fixes Sentry issue CURA-CB.
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-12-23Remove themed color from machinesettings actionJaime van Kessel
Since it's partially in a system themed style, it shouldn't use color. If it does use color, it gets messed up if the user uses dark theme (white text on gray background doesn't work) CURA-7059
2019-11-14Merge branch 'mb-shared-heater' of https://github.com/smartavionics/CuraJaime van Kessel
2019-11-05Add machine name to the machine settings dialogLipu Fei
2019-10-22Remove deprecated functions in MachineManagerLipu Fei
CURA-6858
2019-10-21Change SDK version to 7.0.0Nino van Hooff
CURA-6858
2019-09-24Fix merge conflicts with masterLipu Fei
2019-09-23Merge branch '4.3'Ghostkeeper
2019-09-19Implement allowPositive for printhead settingsNino van Hooff
CURA-6690
2019-09-19Fix typingLipu Fei
2019-09-19Do not transform negative printhead min max values to positive whileNino van Hooff
displaying CURA-6690
2019-09-18Simplify the machinesettings qmlJaime van Kessel
2019-09-18Remove anchors that were causing qml warningsJaime van Kessel
2019-09-17Fix setting default material after g-code flavour changes has_materialsGhostkeeper
Don't use the material manager here any more. Contributes to issue CURA-6600.
2019-09-17Re-build container tree if has_materials changes during runtimeGhostkeeper
A bit of a hack and it'll be very slow. But it should work. Right now this crashes though because it still calls the Material Manager. Contributes to issue CURA-6600.
2019-08-28Fix metadata checkingLipu Fei
2019-08-14Add machine_heated_build_volume.Remco Burema
See also the engine. part of CURA-6717
2019-06-06Fix width of labels in machine settingsGhostkeeper
- Elide the titles in the columns. - Give the width of a ratio so that it doesn't matter if the font renders differently or if we resize the window. Fixes #5742.
2019-06-03Added machine_extruders_share_heater setting and associated machine settings ↵Mark Burton
dialog checkbox.
2019-05-28Allow negative values for nozzle offsets and print head shapeCherubim
That's half of the point of these settings, anyway. Fixes #5784.
2019-05-17Change the font size of settings in extruder tabDiego Prado Gesto
To make it consistent with the sizes in the Printer tab.
2019-05-06Use loader for machine actions in dialogLipu Fei
CURA-6495
2019-05-02Fix number of extruders not being updatedLipu Fei
2019-04-17Fix themingLipu Fei
CURA-6435
2019-04-08Adjust printer setup page for MacLipu Fei
CURA-6057
2019-04-03Change the font of the customMachineSettings windowJaime van Kessel
CURA-6057
2019-04-03Fix small display issue where a line was drawn between the tabsJaime van Kessel
CURA-6057
2019-03-20WIP: Cleanup MachineSettingsActionLipu Fei
2019-03-19WIP: Cleanup and unify MachineAction stylesLipu Fei
2019-03-19WIP: Add first-start machine actionsLipu Fei
2018-12-18Remove back Cura.ExtrudersModel{}, because if retrieve the model from backendAleksei S
the tabs cannot be removed after model update. The QML bug CURA-6036
2018-12-18Remove extruder tabs from tabViewAleksei S
CURA-6036
2018-12-18Fix ExtruderModel reference in machine settings dialogLipu Fei
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-13Reduce the creations of ExtrudersModelsLipu Fei
CURA-6015
2018-12-03Use ListModel.count instead of rowCountGhostkeeper
The .count property properly updates when the model is changed. Contributes to issue CURA-5876.
2018-10-29Fix extruder index for material diameter box in MachineSettings dialogLipu Fei
CURA-5857
2018-10-25The MachineManager doesn't have the extruder stacks but the activeDiego Prado Gesto
machine does, so use it when setting the compatible material diameter to the current extruder. Contributes to CURA-5857.
2018-10-25Fix setting extruder material diameter in Machine Settings dialogLipu Fei
CURA-5857 It should update the value of the selected Extruder TAB, not the active extruder on the printer.
2018-10-23Fix typo in the getCompatibleMaterialDiameter function.Diego Prado Gesto
Contributes to CURA-5834.
2018-10-22Add doc for using setCompatibleMaterialDiameter() in QMLLipu Fei
CURA-5834