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
path: root/cura
AgeCommit message (Collapse)Author
2022-05-23Also send short OpenGL versionGhostkeeper
This is the one we're more likely to be interested in. Done as a 5 minute fix.
2022-05-23Fix translation containing HTML tagsGhostkeeper
Let's not confuse the translators by requiring to translate these in the future. Done as a 5 minute fix.
2022-05-10Remove extra resource path from Python fileCURA-9147_double_resource_pathsGhostkeeper
This was recently added. However it appears that we have the same path multiple times in the resources, leading to the resources being found twice. This would normally get removed by virtue of being a set, but not this time since it's a different way of writing the same path. For the themes, it finds the following paths (in my unpacked directory): {'/home/trin/tempy/cura5/UM/../share/uranium/resources/themes', '/home/trin/tempy/cura5/cura/../share/cura/resources/themes', '/home/trin/tempy/cura5/share/cura/resources/themes', '/home/trin/.local/share/cura/5.0/themes', '/home/trin/tempy/cura5/share/uranium/resources/themes'} For both Cura and Uranium, this points to /home/trin/tempy/cura5/curanium/resources/themes twice. So let's remove this one. Contributes to issue CURA-9147.
2022-05-09Merge remote-tracking branch 'origin/gracefully_fail_cloud_printer' into 5.0Jelle Spijker
2022-05-06Merge pull request #12114 from Ultimaker/CURA-9141_translate_5.0Casper Lamboo
Cura 9141 translate 5.0
2022-05-05Add catalog to files that weren't translatingCURA-9141_translate_5.0j.delarago
CURA-9141
2022-05-05Fix error checking never setting state to "hasError"Jaime van Kessel
CURA-9249 Fixes #12082
2022-05-04Use correct role for standardbuttonJaime van Kessel
Otherwise the no won't register... CURA-9229
2022-04-26Always return int's.Remco Burema
The problem was probably 'max', but cast the others just to be sure. (This would cause the C++ part of Qt to think it wasbeing given a float from Pyton somehow.) should fix CURA-9196
2022-04-22Use right enums for single instanceJaime van Kessel
CURA-9183
2022-04-21Merge remote-tracking branch 'origin/fix_wait_for_first_slice' into 5.0Jelle Spijker
2022-04-20Upgrade SDK version to 8.0.0 for Cura 5.0upgrade_sdk_to_800Remco Burema
2022-04-19Check multiple settings per update of event loopJaime van Kessel
It seems that in Qt5, the update loop was triggered a lot more often than in qt6. Since we used that to handle the error checking, this made it so that you sometimes had to wait for quite some time untill the slicing would start (as that is blocked by the error checker)
2022-04-19Fail gracefully when adding unknown cloud printergracefully_fail_cloud_printerJaime van Kessel
2022-04-19Fix Cura not closing properly on Windows.Remco Burema
May be a bit crude, but simple and readable, and we're supposed to have handled everything anyway at the point the event comes in. CURA-9155
2022-04-14Use minus sign for extra version infoj.spijker@ultimaker.com
Contributes to CURA-8640
2022-04-14Fix version on splash screenj.spijker@ultimaker.com
Contributes to CURA-8640
2022-04-13Fix thumbnail creationJaime van Kessel
CURA-9120
2022-04-13Add extra warnings if it failed to create snapshotJaime van Kessel
CURA-9120
2022-04-13Use right enum for message dialogJaime van Kessel
2022-04-13Give text more room on splashscreenJaime van Kessel
CURA-9151
2022-04-11Fix enum to FormDataTypeGhostkeeper
Stupid enum change... Contributes to issue CURA-9119.
2022-04-08Add search path for the pyinstaller locationsJelle Spijker
Contributes to CURA-8640
2022-04-08Merge branch 'master' into qt6_beyond_the_splashJelle Spijker
2022-04-08Remove unneeded clearJaime van Kessel
2022-04-07Set ownership of MaterialBrandsModel to cppJaime van Kessel
This hopefully prevents the crash for MacOS
2022-04-07Remove setting parent from basematerialJaime van Kessel
2022-04-07Scale convex hull only by X/Y shrinkage, and handle 0% gracefullyGhostkeeper
Only the X/Y shrinkage influences the convex hull collision area. Not the Z, nor the parent setting. Also, don't scale the collision area to 0. This value is not allowed by the setting system, so it'd indicate an error when slicing, but before slicing the convex hull gets calculated which results in degenerate polygons. Don't do that. Instead, we'll just let it pretend the scale factor is 1. Contributes to issue CURA-9091.
2022-04-06Merge branch 'master' into qt6_beyond_the_splashj.delarago
# Conflicts: # cura/PrinterOutput/PrinterOutputDevice.py
2022-04-06Removed the rather hacky implementation of the shrinkage factor averaging. ↵p.kuiper
Issues with dual extrusion were the second extruder is not used should solved in a different way. Relates to PP-77
2022-04-05Update enum, this fixes connecting to printersj.delarago
CURA-8640
2022-04-01Fix warning about DurationJaime van Kessel
2022-04-01Removed the settings: "material_shrinkage_percentage" and update code that ↵PP-77_shrinkage_compensation_for_PLA_TPLA_PETGp.kuiper
was using this parameter. material_shrinkage_percentage_xy and material_shrinkage_percentage_z cannot depend on material_shrinkage_percentage otherwise their resolve function will not execute properly. I noticed that the shrinkage factors do not get the correct value if a wrong nozzle is chosen for a material. However, in that case the slicer will also not slice, so in practice this is not an issue Relates to PP-77
2022-03-31Return account widget to it's former gloryJaime van Kessel
2022-03-31Fix warnings that "instanceContainer" is not a recognised typeJaime van Kessel
2022-03-31Use correct keyboard enumsJaime van Kessel
2022-03-30Merge branch 'CURA-8466_version_upgrade_50' of github.com:Ultimaker/CuraJaime van Kessel
2022-03-30Prevent crash on setConnectionState when no global stack is setJaime van Kessel
2022-03-29Increment setting_version to 20Ghostkeeper
We've removed a bunch of settings and transformed others. To allow profiles to be checked for these and edited if necessary, we now need to increment this version number. Contributes to issue CURA-8466.
2022-03-28Merge branch 'master' into CURA-8640_PyQt6Jelle Spijker
# Conflicts: # cura/UI/CuraSplashScreen.py
2022-03-25Merge pull request #11706 from Ultimaker/CURA-7810_remove_deprecated_functionsJoey de l'Arago
Remove deprecated functions
2022-03-25Merge branch 'new-splashscreen' of github.com:Ultimaker/CuraJaime van Kessel
2022-03-24Remove Extruders property from global stackCURA-7810_remove_deprecated_functionsJaime van Kessel
CURA-7810
2022-03-24Remove printeroutput modelJaime van Kessel
CURA-7810
2022-03-24Remove old arranger codeJaime van Kessel
Major vesion upgrade, time to clean some stuff up! CURA-7810
2022-03-24Remove cura.PrinterOutputDeviceJaime van Kessel
Since we are moving up a major version, time to clean up deprecation warnings CURA-7810
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-03-22Merge branch 'fix_disallowed_brim_gap_distance' of github.com:Ultimaker/CuraJaime van Kessel
2022-03-16updated splash screens10r3n20
2022-03-16Use intConversion instead of Str for extruder & optionalExtruderCURA-8981_resolve_for_interface_and_raft_extruderJaime van Kessel
CURA-8981