View | Details | Raw Unified | Return to bug 284101 | Differences between
and this patch

Collapse All | Expand All

(-)b/audio/musescore/Makefile (-37 / +34 lines)
Lines 1-27 Link Here
1
PORTNAME=	${GH_PROJECT:tl}
1
PORTNAME=	${GH_PROJECT:tl}
2
DISTVERSIONPREFIX=	v
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	4.2.1
3
DISTVERSION=	4.4.4
4
CATEGORIES=	audio
4
CATEGORIES=	audio
5
5
6
MAINTAINER=	adridg@FreeBSD.org
6
MAINTAINER=	adridg@FreeBSD.org
7
COMMENT=	Free music composition & notation software
7
COMMENT=	Free music composition & notation software
8
WWW=		https://musescore.org/
8
WWW=		https://musescore.org/ \
9
		https://github.com/musescore/MuseScore
9
10
10
LICENSE=	GPLv3
11
LICENSE=	GPLv3
11
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
12
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
12
13
13
LIB_DEPENDS=	libsndfile.so:audio/libsndfile \
14
LIB_DEPENDS=	libsndfile.so:audio/libsndfile \
14
		libasound.so:audio/alsa-lib \
15
		libasound.so:audio/alsa-lib \
15
		libasound_module_pcm_oss.so:audio/alsa-plugins
16
		libasound_module_pcm_oss.so:audio/alsa-plugins \
16
17
		libFLAC.so:audio/flac \
17
USES=		cmake compiler:c++11-lib desktop-file-utils localbase \
18
		libfreetype.so:print/freetype2 \
18
		pkgconfig qt:5 shared-mime-info
19
		libharfbuzz.so:print/harfbuzz \
19
USE_QT=		concurrent core dbus declarative designer graphicaleffects gui \
20
		libopus.so:audio/opus \
20
		network networkauth opengl printsupport \
21
		libopusenc.so:audio/libopusenc \
21
		quickcontrols quickcontrols2 svg \
22
		libtinyxml2.so:textproc/tinyxml2 \
22
		widgets x11extras xml xmlpatterns \
23
		libxkbcommon.so:x11/libxkbcommon
23
		buildtools:build linguisttools:build qmake:build testlib:build \
24
24
		uitools:build
25
USES=		cmake compiler:c++17-lang desktop-file-utils gl localbase \
26
		pkgconfig qt:6 shared-mime-info
27
USE_QT=		base 5compat declarative networkauth scxml svg \
28
		tools:build
29
USE_GL=		gl
25
30
26
USE_GITHUB=	yes
31
USE_GITHUB=	yes
27
GH_PROJECT=	MuseScore
32
GH_PROJECT=	MuseScore
Lines 32-65 GH_PROJECT= MuseScore Link Here
32
# Note needs PORTVERSION:R once there is a .minor version
37
# Note needs PORTVERSION:R once there is a .minor version
33
DATADIR=	${PREFIX}/share/mscore-${PORTVERSION:R}
38
DATADIR=	${PREFIX}/share/mscore-${PORTVERSION:R}
34
39
40
CMAKE_TESTS=	MUE_BUILD_BRAILLE_TESTS MUE_BUILD_ENGRAVING_TESTS MUE_BUILD_IMPORTEXPORT_TESTS MUE_BUILD_NOTATION_TESTS MUE_BUILD_PLAYBACK_TESTS MUE_BUILD_PROJECT_TESTS
41
CMAKE_ON=	MUE_COMPILE_USE_SYSTEM_FLAC \
42
		MUE_COMPILE_USE_SYSTEM_FREETYPE \
43
		MUE_COMPILE_USE_SYSTEM_HARFBUZZ \
44
		MUE_COMPILE_USE_SYSTEM_OPUS \
45
		MUE_COMPILE_USE_SYSTEM_OPUSENC \
46
		MUE_COMPILE_USE_SYSTEM_TINYXML
35
CMAKE_OFF=	MUE_BUILD_CRASHPAD_CLIENT \
47
CMAKE_OFF=	MUE_BUILD_CRASHPAD_CLIENT \
36
		MUE_COMPILE_USE_PCH
48
		MUE_COMPILE_USE_PCH \
49
		${CMAKE_TESTS}
37
CMAKE_BUILD_TYPE=	release
50
CMAKE_BUILD_TYPE=	release
51
CMAKE_ARGS=	-DMUSE_APP_BUILD_MODE="release"
38
52
39
post-stage:
53
post-stage:
40
	find ${STAGEDIR}${PREFIX}/lib -name '*.a' -delete # static libs from gtest
54
	# workaround for https://github.com/musescore/MuseScore/issues/26103
41
	find ${STAGEDIR}${PREFIX}/lib/cmake -name '*.cmake' -delete # cmake configuration for kddockwidget
55
	@${RM} -r \
42
	find ${STAGEDIR}${PREFIX}/include -name '*.h' -delete # headers for gtest, dockwidgets
56
		${STAGEDIR}${PREFIX}/include \
43
	find ${STAGEDIR}${PREFIX}/include -name 'README.md' -delete # readmes from gtest
57
		${STAGEDIR}${PREFIX}/lib \
44
	find ${STAGEDIR}${PREFIX}/libdata -name '*.pc' -delete # pkgconfig from gtest
58
		${STAGEDIR}${PREFIX}/libdata
45
	rmdir \
59
	# workaround for https://github.com/musescore/MuseScore/issues/26104
46
		${STAGEDIR}${PREFIX}/include/gmock/internal/custom \
60
	@${INSTALL_DATA} ${FILESDIR}/mscore.desktop ${STAGEDIR}${PREFIX}/share/applications/
47
		${STAGEDIR}${PREFIX}/include/gmock/internal \
48
		${STAGEDIR}${PREFIX}/include/gmock \
49
		${STAGEDIR}${PREFIX}/include/gtest/internal/custom \
50
		${STAGEDIR}${PREFIX}/include/gtest/internal \
51
		${STAGEDIR}${PREFIX}/include/gtest \
52
		${STAGEDIR}${PREFIX}/include/kddockwidgets/private/indicators \
53
		${STAGEDIR}${PREFIX}/include/kddockwidgets/private/multisplitter \
54
		${STAGEDIR}${PREFIX}/include/kddockwidgets/private/quick \
55
		${STAGEDIR}${PREFIX}/include/kddockwidgets/private \
56
		${STAGEDIR}${PREFIX}/include/kddockwidgets \
57
		${STAGEDIR}${PREFIX}/include/opus \
58
		${STAGEDIR}${PREFIX}/lib/cmake/GTest \
59
		${STAGEDIR}${PREFIX}/lib/cmake/KDDockWidgets \
60
		${STAGEDIR}${PREFIX}/lib/cmake
61
	${INSTALL_DATA} ${FILESDIR}/mscore.desktop ${STAGEDIR}${PREFIX}/share/applications/
62
	${INSTALL_DATA} ${WRKSRC}/share/icons/AppIcon/MS4_AppIcon_48x48.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps/mscore.png
63
64
61
65
.include <bsd.port.mk>
62
.include <bsd.port.mk>
(-)b/audio/musescore/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1707166162
1
TIMESTAMP = 1737006473
2
SHA256 (musescore-MuseScore-v4.2.1_GH0.tar.gz) = 9636b303afdb44228dc6d64dbc14773b60840dec7225602d79b126d97f555680
2
SHA256 (musescore-MuseScore-v4.4.4_GH0.tar.gz) = 13d78c168bbe43e6b9bb213d03cabc727615b7e638a4ef037ef819efd2b4109b
3
SIZE (musescore-MuseScore-v4.2.1_GH0.tar.gz) = 136655690
3
SIZE (musescore-MuseScore-v4.4.4_GH0.tar.gz) = 143607247
(-)a/audio/musescore/files/patch-CMakeLists.txt (-11 lines)
Removed Link Here
1
--- CMakeLists.txt.orig	2024-01-23 09:35:14 UTC
2
+++ CMakeLists.txt
3
@@ -48,7 +48,7 @@ set(MUSESCORE_BUILD_CONFIGURATION "app" CACHE STRING "
4
 # - vtest           - for visual tests (for CI)
5
 # - utest           - for unit tests (for CI)
6
 
7
-set(MUSESCORE_BUILD_MODE "dev" CACHE STRING "Build mode")
8
+set(MUSESCORE_BUILD_MODE "release" CACHE STRING "Build mode")
9
 # Possible MUSESCORE_BUILD_MODE values:
10
 # - dev     - for development/nightly builds
11
 # - testing - for testing versions (alpha, beta, RC)
(-)a/audio/musescore/files/patch-build_cmake_FindQt5.cmake (-42 lines)
Removed Link Here
1
--- build/cmake/FindQt5.cmake.orig	2023-07-14 09:53:57 UTC
2
+++ build/cmake/FindQt5.cmake
3
@@ -2,7 +2,7 @@
4
 include(GetUtilsFunctions) # library of CMake functions ("fn__" namespace)
5
 
6
 # Print Qt version or fail the build if Qt (qmake) is not in PATH.
7
-fn__require_program(QMAKE Qt --version "https://musescore.org/en/handbook/developers-handbook/compilation" qmake)
8
+fn__require_program(QMAKE Qt --version "https://musescore.org/en/handbook/developers-handbook/compilation" qmake-qt5)
9
 
10
 set(CMAKE_AUTOUIC ON)
11
 set(CMAKE_AUTOMOC ON)
12
@@ -41,7 +41,7 @@ if (WIN32)
13
       )
14
 endif(WIN32)
15
 
16
-if (OS_IS_LIN)
17
+if (TRUE)
18
     set(_components
19
       ${_components}
20
       DBus
21
@@ -52,9 +52,13 @@ find_package(Qt5Core ${QT_MIN_VERSION} REQUIRED)
22
 
23
 foreach(_component ${_components})
24
   find_package(Qt5${_component})
25
-  list(APPEND QT_LIBRARIES ${Qt5${_component}_LIBRARIES})
26
-  list(APPEND QT_INCLUDES ${Qt5${_component}_INCLUDE_DIRS})
27
-  add_definitions(${Qt5${_component}_DEFINITIONS})
28
+  if(NOT Qt5${_component}_FOUND)
29
+    message(STATUS "Missing component ${_component}")
30
+  else()
31
+    list(APPEND QT_LIBRARIES ${Qt5${_component}_LIBRARIES})
32
+    list(APPEND QT_INCLUDES ${Qt5${_component}_INCLUDE_DIRS})
33
+    add_definitions(${Qt5${_component}_DEFINITIONS})
34
+  endif()
35
 endforeach()
36
 
37
 include_directories(${QT_INCLUDES})
38
@@ -89,3 +93,4 @@ foreach(_var ${_qmake_vars})
39
 endforeach(_var)
40
 
41
 #add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0)
42
+set(Qt5_FOUND ON)
(-)a/audio/musescore/files/patch-build_cmake_GetPlatformInfo.cmake (-10 lines)
Removed Link Here
1
--- build/cmake/GetPlatformInfo.cmake.orig	2024-02-06 21:53:14 UTC
2
+++ build/cmake/GetPlatformInfo.cmake
3
@@ -29,6 +29,7 @@ elseif(${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows")
4
 elseif(${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux")
5
     set(OS_IS_LIN 1)
6
 elseif(${CMAKE_HOST_SYSTEM_NAME} MATCHES "FreeBSD")
7
+    set(OS_IS_LIN 1)
8
     set(OS_IS_FBSD 1)
9
 elseif(${CMAKE_HOST_SYSTEM_NAME} MATCHES "Darwin")
10
     set(OS_IS_MAC 1)
(-)b/audio/musescore/files/patch-share_icons_CMakeLists.txt (+11 lines)
Added Link Here
1
--- share/icons/CMakeLists.txt.orig	2025-01-16 11:02:26 UTC
2
+++ share/icons/CMakeLists.txt
3
@@ -40,7 +40,7 @@ elseif(OS_IS_WIN)
4
         install(FILES MscxIcon/MS4_MscxIcon.png RENAME mscx.png DESTINATION ${CMAKE_INSTALL_PREFIX}/../AppInfo/FileTypeIcons)
5
     endif()
6
 
7
-elseif(OS_IS_LIN)
8
+elseif(OS_IS_LIN OR OS_IS_FBSD)
9
     foreach(SIZE 16 24 32 48 64 96 128 512)
10
         install(FILES AppIcon/MS4_AppIcon_${SIZE}x${SIZE}.png RENAME mscore${MUSE_APP_INSTALL_SUFFIX}.png DESTINATION share/icons/hicolor/${SIZE}x${SIZE}/apps)
11
     endforeach()
(-)a/audio/musescore/files/patch-src_diagnostics_view_diagnosticspathsmodel.cpp (-11 lines)
Removed Link Here
1
--- src/diagnostics/view/diagnosticspathsmodel.cpp.orig	2023-07-14 10:17:41 UTC
2
+++ src/diagnostics/view/diagnosticspathsmodel.cpp
3
@@ -19,6 +19,8 @@
4
  * You should have received a copy of the GNU General Public License
5
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
6
  */
7
+#include <QUrl>
8
+
9
 #include "diagnosticspathsmodel.h"
10
 
11
 #include "log.h"
(-)b/audio/musescore/files/patch-src_framework_ui_CMakeLists.txt (-2 / +2 lines)
Lines 1-6 Link Here
1
--- src/framework/ui/CMakeLists.txt.orig	2024-02-08 21:39:07 UTC
1
--- src/framework/ui/CMakeLists.txt.orig	2024-12-11 12:43:18 UTC
2
+++ src/framework/ui/CMakeLists.txt
2
+++ src/framework/ui/CMakeLists.txt
3
@@ -48,6 +48,8 @@ elseif(OS_IS_LIN)
3
@@ -49,6 +49,8 @@ elseif(OS_IS_LIN)
4
     set(PLATFORM_THEME_SRC
4
     set(PLATFORM_THEME_SRC
5
         ${CMAKE_CURRENT_LIST_DIR}/internal/platform/linux/linuxplatformtheme.cpp
5
         ${CMAKE_CURRENT_LIST_DIR}/internal/platform/linux/linuxplatformtheme.cpp
6
         ${CMAKE_CURRENT_LIST_DIR}/internal/platform/linux/linuxplatformtheme.h
6
         ${CMAKE_CURRENT_LIST_DIR}/internal/platform/linux/linuxplatformtheme.h
(-)b/audio/musescore/files/patch-src_framework_ui_graphicsapiprovider.cpp (+16 lines)
Added Link Here
1
--- src/framework/ui/graphicsapiprovider.cpp.orig	2025-01-16 06:06:20 UTC
2
+++ src/framework/ui/graphicsapiprovider.cpp
3
@@ -56,6 +56,13 @@ static const std::vector<GraphicsApiProvider::Api > AL
4
 };
5
 #endif
6
 
7
+#ifdef Q_OS_FREEBSD
8
+static const std::vector<GraphicsApiProvider::Api > ALLOWED_APIS = {
9
+    GraphicsApiProvider::OpenGL,
10
+    GraphicsApiProvider::Software
11
+};
12
+#endif
13
+
14
 static const std::vector<std::string> BAD_MESSAGES = {
15
     "Failed to build graphics pipeline state",
16
     "Failed to create RHI",
(-)b/audio/musescore/files/patch-src_framework_ui_internal_platform_stub_stubplatformtheme.cpp (-11 / +5 lines)
Lines 1-17 Link Here
1
--- src/framework/ui/internal/platform/stub/stubplatformtheme.cpp.orig	2024-02-08 19:49:06 UTC
1
--- src/framework/ui/internal/platform/stub/stubplatformtheme.cpp.orig	2025-01-16 06:38:51 UTC
2
+++ src/framework/ui/internal/platform/stub/stubplatformtheme.cpp
2
+++ src/framework/ui/internal/platform/stub/stubplatformtheme.cpp
3
@@ -25,6 +25,8 @@
3
@@ -25,6 +25,8 @@ using namespace muse::async;
4
 using namespace mu::ui;
4
 using namespace muse::ui;
5
 using namespace mu::async;
5
 using namespace muse::async;
6
 
6
 
7
+namespace mu::ui {
8
+StubPlatformTheme::~StubPlatformTheme() = default;
7
+StubPlatformTheme::~StubPlatformTheme() = default;
8
+
9
 void StubPlatformTheme::startListening()
9
 void StubPlatformTheme::startListening()
10
 {
10
 {
11
 }
11
 }
12
@@ -59,4 +61,5 @@ void StubPlatformTheme::applyPlatformStyleOnAppForThem
13
 
14
 void StubPlatformTheme::applyPlatformStyleOnWindowForTheme(QWindow*, const ThemeCode&)
15
 {
16
+}
17
 }
(-)a/audio/musescore/files/patch-src_framework_ui_view_interactiveprovider.h (-10 lines)
Removed Link Here
1
--- src/framework/ui/view/interactiveprovider.h.orig	2023-07-14 10:15:25 UTC
2
+++ src/framework/ui/view/interactiveprovider.h
3
@@ -26,6 +26,7 @@
4
 #include <QVariant>
5
 #include <QMap>
6
 #include <QStack>
7
+#include <QEventLoop>
8
 
9
 #include "modularity/ioc.h"
10
 #include "../iinteractiveprovider.h"
(-)a/audio/musescore/files/patch-src_importexport_musicxml_internal_musicxml_exportxml.cpp (-24 lines)
Removed Link Here
1
--- src/importexport/musicxml/internal/musicxml/exportxml.cpp.orig	2024-02-05 22:14:10 UTC
2
+++ src/importexport/musicxml/internal/musicxml/exportxml.cpp
3
@@ -3624,8 +3624,8 @@ static void writeBeam(XmlWriter& xml, ChordRest* const
4
         // TODO: correctly handle Beam::Mode::AUTO
5
         // when equivalent to BEGIN32 or BEGIN64
6
         if ((blp < i && bln >= i)
7
-            || bmc == BeamMode::BEGIN16 && i > 1
8
-            || bmc == BeamMode::BEGIN32 && i > 2) {
9
+            || (bmc == BeamMode::BEGIN16 && i > 1)
10
+            || (bmc == BeamMode::BEGIN32 && i > 2)) {
11
             text = "begin";
12
         } else if (blp < i && bln < i) {
13
             if (bln > 0) {
14
@@ -3634,8 +3634,8 @@ static void writeBeam(XmlWriter& xml, ChordRest* const
15
                 text = "backward hook";
16
             }
17
         } else if ((blp >= i && bln < i)
18
-                   || bmn == BeamMode::BEGIN16 && i > 1
19
-                   || bmn == BeamMode::BEGIN32 && i > 2) {
20
+                   || (bmn == BeamMode::BEGIN16 && i > 1)
21
+                   || (bmn == BeamMode::BEGIN32 && i > 2)) {
22
             text = "end";
23
         } else if (blp >= i && bln >= i) {
24
             text = "continue";
(-)a/audio/musescore/files/patch-src_importexport_musicxml_internal_musicxml_importmxmlpass1.h (-11 lines)
Removed Link Here
1
--- src/importexport/musicxml/internal/musicxml/importmxmlpass1.h.orig	2024-02-05 22:17:12 UTC
2
+++ src/importexport/musicxml/internal/musicxml/importmxmlpass1.h
3
@@ -179,7 +179,7 @@ class MusicXMLParserPass1 (public)
4
     bool hasBeamingInfo() const { return _hasBeamingInfo; }
5
     bool isVocalStaff(const QString& id) const { return _parts[id].isVocalStaff(); }
6
     static VBox* createAndAddVBoxForCreditWords(Score* const score, const int miny = 0, const int maxy = 75);
7
-    const int maxDiff() { return _maxDiff; }
8
+    int maxDiff() const { return _maxDiff; }
9
     void insertAdjustedDuration(Fraction key, Fraction value) { _adjustedDurations.insert(key, value); }
10
     QMap<Fraction, Fraction>& adjustedDurations() { return _adjustedDurations; }
11
     void insertSeenDenominator(int val) { _seenDenominators.emplace(val); }
(-)b/audio/musescore/files/patch-src_importexport_musicxml_internal_musicxml_musicxmlsupport.cpp (-3 / +3 lines)
Lines 1-6 Link Here
1
--- src/importexport/musicxml/internal/musicxml/musicxmlsupport.cpp.orig	2024-02-05 22:18:41 UTC
1
--- src/importexport/musicxml/internal/musicxml/musicxmlsupport.cpp.orig	2024-12-11 12:43:18 UTC
2
+++ src/importexport/musicxml/internal/musicxml/musicxmlsupport.cpp
2
+++ src/importexport/musicxml/internal/musicxml/musicxmlsupport.cpp
3
@@ -34,6 +34,8 @@
3
@@ -36,6 +36,8 @@
4
 
4
 
5
 #include "log.h"
5
 #include "log.h"
6
 
6
 
Lines 8-11 Link Here
8
+
8
+
9
 using AccidentalType = mu::engraving::AccidentalType;
9
 using AccidentalType = mu::engraving::AccidentalType;
10
 using SymId = mu::engraving::SymId;
10
 using SymId = mu::engraving::SymId;
11
 const static QMap<QString, AccidentalType> smuflAccidentalTypes {
11
 
(-)a/audio/musescore/files/patch-src_learn_view_learnpagemodel.h (-11 lines)
Removed Link Here
1
--- src/learn/view/learnpagemodel.h.orig	2023-07-14 10:22:05 UTC
2
+++ src/learn/view/learnpagemodel.h
3
@@ -23,6 +23,8 @@
4
 #define MU_LEARN_LEARNPAGEMODEL_H
5
 
6
 #include <QObject>
7
+#include <QVariantMap>
8
+#include <QString>
9
 
10
 #include "async/asyncable.h"
11
 
(-)b/audio/musescore/files/patch-src_project_internal_exporttype.h (-2 / +2 lines)
Lines 1-6 Link Here
1
--- src/project/internal/exporttype.h.orig	2024-01-23 09:35:14 UTC
1
--- src/project/internal/exporttype.h.orig	2024-12-11 12:43:18 UTC
2
+++ src/project/internal/exporttype.h
2
+++ src/project/internal/exporttype.h
3
@@ -26,6 +26,10 @@
3
@@ -28,6 +28,10 @@
4
 
4
 
5
 #include "containers.h"
5
 #include "containers.h"
6
 
6
 
(-)b/audio/musescore/pkg-plist (-9 / +28 lines)
Lines 1-6 Link Here
1
bin/mscore
1
bin/mscore
2
bin/musescore
2
share/applications/mscore.desktop
3
share/applications/mscore.desktop
3
share/applications/org.musescore.MuseScore.desktop
4
share/icons/hicolor/128x128/apps/mscore.png
4
share/icons/hicolor/128x128/apps/mscore.png
5
share/icons/hicolor/16x16/apps/mscore.png
5
share/icons/hicolor/16x16/apps/mscore.png
6
share/icons/hicolor/24x24/apps/mscore.png
6
share/icons/hicolor/24x24/apps/mscore.png
Lines 11-20 share/icons/hicolor/512x512/mimetypes/application-x-musescore+xml.png Link Here
11
share/icons/hicolor/512x512/mimetypes/application-x-musescore.png
11
share/icons/hicolor/512x512/mimetypes/application-x-musescore.png
12
share/icons/hicolor/64x64/apps/mscore.png
12
share/icons/hicolor/64x64/apps/mscore.png
13
share/icons/hicolor/96x96/apps/mscore.png
13
share/icons/hicolor/96x96/apps/mscore.png
14
share/man/man1/mscore.1.gz
15
share/man/man1/musescore.1.gz
16
share/metainfo/org.musescore.MuseScore.appdata.xml
17
share/mime/packages/musescore.xml
18
%%DATADIR%%/autobotscripts/TC1.1_CreateSimpleScore.js
14
%%DATADIR%%/autobotscripts/TC1.1_CreateSimpleScore.js
19
%%DATADIR%%/autobotscripts/TC1.2_CreateSimpleScoreWithRandomInstruments.js
15
%%DATADIR%%/autobotscripts/TC1.2_CreateSimpleScoreWithRandomInstruments.js
20
%%DATADIR%%/autobotscripts/TC2_CreateSimpleScoreByTemplate.js
16
%%DATADIR%%/autobotscripts/TC2_CreateSimpleScoreByTemplate.js
Lines 33-38 share/mime/packages/musescore.xml Link Here
33
%%DATADIR%%/autobotscripts/steps/NoteInput.js
29
%%DATADIR%%/autobotscripts/steps/NoteInput.js
34
%%DATADIR%%/autobotscripts/steps/Palette.js
30
%%DATADIR%%/autobotscripts/steps/Palette.js
35
%%DATADIR%%/autobotscripts/steps/Score.js
31
%%DATADIR%%/autobotscripts/steps/Score.js
32
%%DATADIR%%/extensions/colornotes/color_notes.png
33
%%DATADIR%%/extensions/colornotes/main.js
34
%%DATADIR%%/extensions/colornotes/manifest.json
35
%%DATADIR%%/extensions/courtesy_accidentals/accidentals.png
36
%%DATADIR%%/extensions/courtesy_accidentals/add.js
37
%%DATADIR%%/extensions/courtesy_accidentals/configure.qml
38
%%DATADIR%%/extensions/courtesy_accidentals/manifest.json
39
%%DATADIR%%/extensions/courtesy_accidentals/remove.js
40
%%DATADIR%%/extensions/example1/Main.qml
41
%%DATADIR%%/extensions/example1/manifest.json
42
%%DATADIR%%/extensions/example2/main.js
43
%%DATADIR%%/extensions/example2/manifest.json
44
%%DATADIR%%/extensions/example3/add.js
45
%%DATADIR%%/extensions/example3/configure.qml
46
%%DATADIR%%/extensions/example3/manifest.json
47
%%DATADIR%%/extensions/example3/remove.js
36
%%DATADIR%%/instruments/instruments.xml
48
%%DATADIR%%/instruments/instruments.xml
37
%%DATADIR%%/instruments/orders.xml
49
%%DATADIR%%/instruments/orders.xml
38
%%DATADIR%%/instruments/string_tunings_presets.json
50
%%DATADIR%%/instruments/string_tunings_presets.json
Lines 98-103 share/mime/packages/musescore.xml Link Here
98
%%DATADIR%%/locale/instruments_sr.qm
110
%%DATADIR%%/locale/instruments_sr.qm
99
%%DATADIR%%/locale/instruments_sr_RS.qm
111
%%DATADIR%%/locale/instruments_sr_RS.qm
100
%%DATADIR%%/locale/instruments_sv.qm
112
%%DATADIR%%/locale/instruments_sv.qm
113
%%DATADIR%%/locale/instruments_sv_SE.qm
101
%%DATADIR%%/locale/instruments_th.qm
114
%%DATADIR%%/locale/instruments_th.qm
102
%%DATADIR%%/locale/instruments_tr.qm
115
%%DATADIR%%/locale/instruments_tr.qm
103
%%DATADIR%%/locale/instruments_uk.qm
116
%%DATADIR%%/locale/instruments_uk.qm
Lines 169-174 share/mime/packages/musescore.xml Link Here
169
%%DATADIR%%/locale/musescore_sr.qm
182
%%DATADIR%%/locale/musescore_sr.qm
170
%%DATADIR%%/locale/musescore_sr_RS.qm
183
%%DATADIR%%/locale/musescore_sr_RS.qm
171
%%DATADIR%%/locale/musescore_sv.qm
184
%%DATADIR%%/locale/musescore_sv.qm
185
%%DATADIR%%/locale/musescore_sv_SE.qm
172
%%DATADIR%%/locale/musescore_th.qm
186
%%DATADIR%%/locale/musescore_th.qm
173
%%DATADIR%%/locale/musescore_tr.qm
187
%%DATADIR%%/locale/musescore_tr.qm
174
%%DATADIR%%/locale/musescore_uk.qm
188
%%DATADIR%%/locale/musescore_uk.qm
Lines 191-201 share/mime/packages/musescore.xml Link Here
191
%%DATADIR%%/locale/qt_tr.qm
205
%%DATADIR%%/locale/qt_tr.qm
192
%%DATADIR%%/locale/qt_vi.qm
206
%%DATADIR%%/locale/qt_vi.qm
193
%%DATADIR%%/plugins/colornotes/color_notes.png
207
%%DATADIR%%/plugins/colornotes/color_notes.png
194
%%DATADIR%%/plugins/colornotes/colornotes.qml
208
%%DATADIR%%/plugins/colornotes/colornotes.qml_disabled
195
%%DATADIR%%/plugins/courtesy_accidentals/accidentals.png
209
%%DATADIR%%/plugins/courtesy_accidentals/accidentals.png
196
%%DATADIR%%/plugins/courtesy_accidentals/addCourtesyAccidentals.qml
210
%%DATADIR%%/plugins/courtesy_accidentals/addCourtesyAccidentals.qml_disabled
197
%%DATADIR%%/plugins/courtesy_accidentals/configCourtesyAccidentals.qml
211
%%DATADIR%%/plugins/courtesy_accidentals/configCourtesyAccidentals.qml_disabled
198
%%DATADIR%%/plugins/courtesy_accidentals/removeCourtesyAccidentals.qml
212
%%DATADIR%%/plugins/courtesy_accidentals/removeCourtesyAccidentals.qml_disabled
213
%%DATADIR%%/plugins/dev_test_websocket/dev_test_websocket.qml_disabled
199
%%DATADIR%%/plugins/intervals/mirror-intervals-3.qml
214
%%DATADIR%%/plugins/intervals/mirror-intervals-3.qml
200
%%DATADIR%%/plugins/intervals/mirror_intervals.png
215
%%DATADIR%%/plugins/intervals/mirror_intervals.png
201
%%DATADIR%%/plugins/lilyrics/lilyrics.png
216
%%DATADIR%%/plugins/lilyrics/lilyrics.png
Lines 888-893 share/mime/packages/musescore.xml Link Here
888
%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra/audiosettings.json
903
%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra/audiosettings.json
889
%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra/score_style.mss
904
%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra/score_style.mss
890
%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra/viewsettings.json
905
%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra/viewsettings.json
906
%%DATADIR%%/templates/Marching_Bass_Drums.drm
907
%%DATADIR%%/templates/Marching_Cymbals.drm
908
%%DATADIR%%/templates/Marching_Snare_Drums.drm
909
%%DATADIR%%/templates/Marching_Tenors.drm
891
%%DATADIR%%/templates/My_First_Score.mscx
910
%%DATADIR%%/templates/My_First_Score.mscx
892
%%DATADIR%%/templates/categories.json
911
%%DATADIR%%/templates/categories.json
893
%%DATADIR%%/templates/drumset_fr.drm
912
%%DATADIR%%/templates/drumset_fr.drm

Return to bug 284101