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
2022-06-17Remove incorrect enum usageJaime van Kessel
This only needs to happen in code that uses PyQt, not in qml code
2022-05-10Render labels using `Text.QtRendering` on OSXc.lamboo
Fonts were looking a bit to thick on when using `Text.NativeRendering`, so using `Text.QtRendering` instead. After this the font weight looks identical to figma (as far as I can see). In this commit I also changed all `Label`'s to `UM.Label`'s and removed default properties where I could. CURA-9154
2022-05-10Revert "Render labels using `Text.QtRendering` on OSX"c.lamboo
This reverts commit f0e3c19a34d1fde3b7ec4fd95677fbefa2028b26.
2022-05-10Render labels using `Text.QtRendering` on OSXc.lamboo
Fonts were looking a bit to thick on when using `Text.NativeRendering`, so using `Text.QtRendering` instead. After this the font weight looks identical to figma (as far as I can see). In this commit I also changed all `Label`'s to `UM.Label`'s and removed default properties where I could. CURA-9154
2022-04-20Upgrade SDK version to 8.0.0 for Cura 5.0upgrade_sdk_to_800Remco Burema
2022-03-24Merge branch 'master' into CURA-8640_PyQt6Jelle Spijker
# Conflicts: # cura/CuraApplication.py # resources/qml/Preferences/Materials/MaterialsSyncDialog.qml # resources/qml/Preferences/Materials/MaterialsView.qml
2022-02-28Fix styling for Machine SettingsJaime van Kessel
CURA-8688
2022-01-25Set checked tab for TabRowButtonGhostkeeper
We're changing this so that the button doesn't set this by itself. This is necessary so that I can use this TabRowButton also when it's not in a repeater (for the global stack in the profile manager). Contributes to issue CURA-8686.
2021-12-29Qt5->Qt6: Even more renaming stuff.Remco Burema
part of CURA-8591
2021-12-28Search/replace Qt5->Qt6.Remco Burema
part of upgrading Qt to v6.2: CURA-8591
2021-06-17Now unused API field only took integers originally.Remco Burema
We want to keep it this way so people can still make plugins work for older versions of Cura, like 3.6, where the 'api' field with just a single major version, instead of the 'supported_sdk_versions', which can be either a version-string like '7.6.0' or a list of version strings.
2021-06-15Update SDK/API from 7.5.0 to 7.6.0 for 4.10Remco Burema
CURA-8320
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.
2021-03-30Fix QML warnings due to depricated on<signal> calls in ConnectionsKostas Karmas
As of 5.12, the signals used in connections should not be declared as on<signal>, but as function on<signal>(arguments).
2021-02-04Merge branch 'master' of https://github.com/RFBomb/CuraJaime van Kessel
2021-01-31Update comment before Pull RequestRobert B
Functionality has been tested.
2021-01-26Correct comment spacingRFBomb
2021-01-26correct spacing again....RFBomb
2021-01-26correct spacingRFBomb
2021-01-26Correct syntax error that prevented checkbox showing upRFBomb
2021-01-25Adds checkbox for 'machine_use_extruder_offset_to_offset_coords' in printer ↵RFBomb
settings page.
2020-12-07Fix validator for floats in Machine Settings dialogfieldOfView
The DoubleValidator depends on the system locale, requiring users with certain locales to enter floats with a comma instead of a dot (though confusingly floats are always represented with a decimal a dot). Instead of configuring the DoubleValidator with a locale that only accepts decimal dots, this commit uses a RegExpValidator, like other numeric fields in Cura does.
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.