forked from pool/musescore
45afd75cd7
- 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 OBS-URL: https://build.opensuse.org/request/show/1072363 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/musescore?expand=0&rev=129
19 lines
830 B
Diff
19 lines
830 B
Diff
commit 0dde64eef849027d16a0ac83b15bc8789d678564
|
|
Author: Jerry James <loganjerry@gmail.com>
|
|
Date: Tue Dec 6 13:19:35 2022 -0700
|
|
|
|
Fix cmake error when building with jack on Linux
|
|
|
|
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.")
|
|
ELSE(MINGW OR MSVC)
|
|
+ include(UsePkgConfig1)
|
|
PKGCONFIG1 (jack ${JACK_MIN_VERSION} JACK_INCDIR JACK_LIBDIR JACK_LIB JACK_CPP)
|
|
IF(JACK_INCDIR)
|
|
MESSAGE(STATUS "${JACK_LONGNAME} >= ${JACK_MIN_VERSION} found. jack support enabled.")
|