Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package musescore for openSUSE:Factory checked in at 2023-03-16 22:59:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/musescore (Old) and /work/SRC/openSUSE:Factory/.musescore.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "musescore" Thu Mar 16 22:59:56 2023 rev:33 rq:1072377 version:4.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/musescore/musescore.changes 2023-03-12 16:26:06.245255746 +0100 +++ /work/SRC/openSUSE:Factory/.musescore.new.31432/musescore.changes 2023-03-16 23:00:01.527953820 +0100 @@ -1,0 +2,42 @@ +Thu Mar 16 10:21:13 UTC 2023 - Michael Vetter <mvet...@suse.com> + +- Update to 4.0.2: + * Score corruption fixes + - Multiple issues causing score corruption have been fixed + - Part scores are now scanned for corruptions + - There is now a more comprehensive system for alerting you + when there are corruptions identified on your score (including + a mechanism to help you avoid saving those corruptions) + * Usability improvements + - The Properties panel has been improved so it's possible to edit + the visibility, colour and play settings of individual notes within chords + - Toggling visibility of notes within chords now produces more predictable results + - Images in frames can now be deleted + - Parts can now be reset to their original layout + - The UI is now easier to interact with when the user is holding the mouse unsteadily + - The audio export process can now be cancelled + - There's a new feature to save relevant diagnostic files (making it + easier to get support from MuseScore developers) + * Performance enhancements + - Major improvements to how MuseScore handles with WASAPI (Benefits Windows users) + * Bugs squashed and regressions repaired + - Various crashes have been fixed (including numerous VST-related crashes) + - Zoom controls in the status bar are easier to use and more intuitive + - Various problems with the visual behaviour of the app on second monitors are now resolved + - Text line spacing option has been reinstated in Properties + - Some playback problems have been resolved, including when entering tablature + notation, and when changing the tempo using the tempo slider + - Multiple other minor bug fixes + * A ton of engraving fixes and improvements + - Multiple fixes to system-line objects + - Several errors arising from setting notes to cue size are resolved + - Fixes to the behaviour of system objects + - Various fixes to the behaviour of stems + - Voices now align correctly in 'full' tab staves + - Sticking in percussion music no longer breaks slurs + - Slurs now show correctly in parts when only some voices are displayed + - Cross-page glissando lines have been finessed + - Various collisions have been resolved (clefs and key signatures, accidentals and cross-staff beams) +- Add musescore-4.0.2-return.patch: to make the compiler happy + +------------------------------------------------------------------- Old: ---- MuseScore-4.0.1.tar.gz New: ---- MuseScore-4.0.2.tar.gz musescore-4.0.2-return.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ musescore.spec ++++++ --- /var/tmp/diff_new_pack.IlmpdA/_old 2023-03-16 23:00:03.767964851 +0100 +++ /var/tmp/diff_new_pack.IlmpdA/_new 2023-03-16 23:00:03.771964871 +0100 @@ -26,7 +26,7 @@ %define fontdir %{_datadir}/fonts/%{name} %define docdir %{_docdir}/%{name} Name: musescore -Version: 4.0.1 +Version: 4.0.2 Release: 0 Summary: A WYSIWYG music score typesetter # Licenses in MuseScore are a mess. To help other maintainers I give the following overview: @@ -65,6 +65,8 @@ Patch0: use-qtmake-qt5.patch # PATCH-FIX-UPSTREAM: fix build with jack on linux. Patch1: 0dde64eef84.patch +# PATCH-FIX-UPSTREAM: make compiler happy by adding returns +Patch2: musescore-4.0.2-return.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++ ++++++ 0dde64eef84.patch ++++++ --- /var/tmp/diff_new_pack.IlmpdA/_old 2023-03-16 23:00:03.799965009 +0100 +++ /var/tmp/diff_new_pack.IlmpdA/_new 2023-03-16 23:00:03.803965028 +0100 @@ -4,10 +4,10 @@ Fix cmake error when building with jack on Linux -diff --git a/build/cmake/FindJack.cmake b/build/cmake/FindJack.cmake -index 6713e3aeef..d1676fa82b 100644 ---- a/build/cmake/FindJack.cmake -+++ b/build/cmake/FindJack.cmake +Index: MuseScore-4.0.2/build/cmake/FindJack.cmake +=================================================================== +--- MuseScore-4.0.2.orig/build/cmake/FindJack.cmake ++++ MuseScore-4.0.2/build/cmake/FindJack.cmake @@ -28,6 +28,7 @@ IF(BUILD_JACK) set (JACK_LIB "$ENV{${progenv}}/Jack/lib/libjack.a") MESSAGE("JACK support enabled.") ++++++ MuseScore-4.0.1.tar.gz -> MuseScore-4.0.2.tar.gz ++++++ /work/SRC/openSUSE:Factory/musescore/MuseScore-4.0.1.tar.gz /work/SRC/openSUSE:Factory/.musescore.new.31432/MuseScore-4.0.2.tar.gz differ: char 28, line 1 ++++++ musescore-4.0.2-return.patch ++++++ Index: MuseScore-4.0.2/src/project/internal/projectactionscontroller.cpp =================================================================== --- MuseScore-4.0.2.orig/src/project/internal/projectactionscontroller.cpp +++ MuseScore-4.0.2/src/project/internal/projectactionscontroller.cpp @@ -934,6 +934,7 @@ bool ProjectActionsController::askIfUser default: return false; } + return false; } void ProjectActionsController::warnScoreWithoutPartsCannotBeSaved() @@ -960,6 +961,7 @@ bool ProjectActionsController::askIfUser case SaveLocationType::Undefined: return false; } + return false; } void ProjectActionsController::warnCorruptedScoreCannotBeSavedOnCloud(const std::string& errorText, bool canRevert) @@ -1040,6 +1042,7 @@ bool ProjectActionsController::askIfUser case SaveLocationType::Undefined: return false; } + return false; } void ProjectActionsController::showErrCorruptedScoreCannotBeSaved(const SaveLocation& location, const std::string& errorText)