Package: cura / 5.0.0-6
Metadata
Package | Version | Patches format |
---|---|---|
cura | 5.0.0-6 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
1000 exclude fonts.patch | (download) |
CMakeLists.txt |
3 2 + 1 - 0 ! |
fonts should be packaged separately. |
1010 desktop menu location.patch | (download) |
com.ultimaker.cura.desktop.in |
2 1 + 1 - 0 ! |
adjust menu location of program |
2001 no default telemetry.patch | (download) |
plugins/FirmwareUpdateChecker/FirmwareUpdateChecker.py |
2 1 + 1 - 0 ! |
no-default-telemetry Bug: https://github.com/Ultimaker/Cura/issues/2810 |
1011 disable code style test.patch | (download) |
cmake/CuraTests.cmake |
8 0 + 8 - 0 ! |
disable-code-style-test Bug: https://github.com/Ultimaker/Cura/issues/9216 |
0005 delete TestDefinitionContainer test it has too many .patch | (download) |
tests/Settings/TestDefinitionContainer.py |
246 0 + 246 - 0 ! |
delete testdefinitioncontainer test, it has too many failures |
0006 delete quality profile that fails test.patch | (download) |
resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt |
24 0 + 24 - 0 ! |
delete quality profile that fails test |
0007 delete test_setUnknownActiveMachine which fails.patch | (download) |
tests/TestMachineManager.py |
9 0 + 9 - 0 ! |
delete test_setunknownactivemachine which fails |
0008 delete test_compute2DConvexHullMeshData which fails.patch | (download) |
tests/TestConvexHullDecorator.py |
14 0 + 14 - 0 ! |
delete test_compute2dconvexhullmeshdata which fails |
0009 delete test_compute2DConvexHullMeshDataGrouped which.patch | (download) |
tests/TestConvexHullDecorator.py |
23 1 + 22 - 0 ! |
delete test_compute2dconvexhullmeshdatagrouped which fails |
0010 install cura_app.py as cura.patch | (download) |
CMakeLists.txt |
1 1 + 0 - 0 ! |
install cura_app.py as cura |
0011 Fix asserts for called once in Python 3 12.patch | (download) |
tests/API/TestAccount.py |
4 2 + 2 - 0 ! |
--- |
0001 Avoid KeyError material_name crash in Fedora.patch | (download) |
cura/Machines/Models/ExtrudersModel.py |
2 1 + 1 - 0 ! |
[patch] avoid "keyerror: material_name" crash in fedora Traceback (most recent call last): File "/usr/lib/python3.11/site-packages/UM/Qt/ListModel.py", line 54, in data return self._items[index.row()][self._role_names[role].decode("utf-8")] ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ KeyError: 'material_name' Downstream report: https://bugzilla.redhat.com/show_bug.cgi?id=2252195 Community: https://community.ultimaker.com/topic/44538-cura-53-crashs-at-startup/ For reasons unknown, this crash does not happen with the AppImage. Nevertheless, in 2baada8a70b15dd87948a25855e17d15b0ece58c material_name was added as a role, not material_label. Reaming the field in the sentinel extruder makes the crash go away. |