Package: cura / 5.0.0-6

Metadata

Package Version Patches format
cura 5.0.0-6 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
1000 exclude fonts.patch | (download)

CMakeLists.txt | 3 2 + 1 - 0 !
1 file changed, 2 insertions(+), 1 deletion(-)

 fonts should be packaged separately.
1010 desktop menu location.patch | (download)

com.ultimaker.cura.desktop.in | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 adjust menu location of program
2001 no default telemetry.patch | (download)

plugins/FirmwareUpdateChecker/FirmwareUpdateChecker.py | 2 1 + 1 - 0 !
plugins/SliceInfoPlugin/SliceInfo.py | 2 1 + 1 - 0 !
2 files changed, 2 insertions(+), 2 deletions(-)

 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 !
1 file changed, 8 deletions(-)

 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 !
1 file changed, 246 deletions(-)

 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 !
1 file changed, 24 deletions(-)

 delete quality profile that fails test


0007 delete test_setUnknownActiveMachine which fails.patch | (download)

tests/TestMachineManager.py | 9 0 + 9 - 0 !
1 file changed, 9 deletions(-)

 delete test_setunknownactivemachine which fails


0008 delete test_compute2DConvexHullMeshData which fails.patch | (download)

tests/TestConvexHullDecorator.py | 14 0 + 14 - 0 !
1 file changed, 14 deletions(-)

 delete test_compute2dconvexhullmeshdata which fails


0009 delete test_compute2DConvexHullMeshDataGrouped which.patch | (download)

tests/TestConvexHullDecorator.py | 23 1 + 22 - 0 !
1 file changed, 1 insertion(+), 22 deletions(-)

 delete test_compute2dconvexhullmeshdatagrouped which fails


0010 install cura_app.py as cura.patch | (download)

CMakeLists.txt | 1 1 + 0 - 0 !
1 file changed, 1 insertion(+)

 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 !
tests/Settings/TestCuraStackBuilder.py | 4 2 + 2 - 0 !
tests/TestOAuth2.py | 8 4 + 4 - 0 !
3 files changed, 8 insertions(+), 8 deletions(-)

---
0001 Avoid KeyError material_name crash in Fedora.patch | (download)

cura/Machines/Models/ExtrudersModel.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 [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.