Index: head/audio/musescore/Makefile =================================================================== --- head/audio/musescore/Makefile (revision 492686) +++ head/audio/musescore/Makefile (revision 492687) @@ -1,83 +1,79 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= musescore -DISTVERSION= 3.0.0 -PORTREVISION= 2 +DISTVERSION= 3.0.2 CATEGORIES= audio MASTER_SITES= http://ftp.osuosl.org/pub/musescore/releases/MuseScore-${DISTVERSION}/ DISTNAME= MuseScore-${DISTVERSION} NO_WRKSUBDIR= yes MAINTAINER= adridg@FreeBSD.org COMMENT= Free music composition & notation software LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.GPL -# Because of webengine -ONLY_FOR_ARCHS= i386 amd64 - LIB_DEPENDS= libmp3lame.so:audio/lame \ libsndfile.so:audio/libsndfile \ libvorbis.so:audio/libvorbis \ libogg.so:audio/libogg \ libfreetype.so:print/freetype2 USES= cmake compiler:c++11-lib desktop-file-utils \ pkgconfig qt:5 shared-mime-info zip USE_QT= core declarative gui widgets opengl concurrent designer help network \ scripttools svg sql printsupport testlib \ xml xmlpatterns \ buildtools_build linguisttools_build qmake_build uitools_build ALL_TARGET= lrelease manpages all INSTALLS_ICONS= yes CMAKE_ARGS+= -DUSE_SYSTEM_FREETYPE="ON" \ -DBUILD_PORTMIDI=OFF \ -DBUILD_PCH=OFF DATADIR= ${PREFIX}/share/mscore-${PORTVERSION:R} -OPTIONS_DEFINE= ALSA JACK PORTAUDIO PULSEAUDIO OCR WEBENGINE +# WebEngine is only available on i386/amd64; defaults to ON there. +# If enabled on arches that don't have WebEngine, the build breaks. +OPTIONS_DEFINE= ALSA JACK PORTAUDIO PULSEAUDIO WEBENGINE OPTIONS_DEFAULT= PORTAUDIO OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE -OCR_DESC= Optical Character Recognition WEBENGINE_DESC= Use WebEngine in the welcome panel ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CMAKE_BOOL= BUILD_ALSA JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_CMAKE_BOOL= BUILD_JACK PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio PORTAUDIO_CMAKE_BOOL= BUILD_PORTAUDIO PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_CMAKE_BOOL= BUILD_PULSEAUDIO -OCR_CMAKE_BOOL= OCR WEBENGINE_USE= qt=webengine WEBENGINE_CMAKE_BOOL= BUILD_WEBENGINE .include .if ${CHOSEN_COMPILER_TYPE} == clang CXXFLAGS+= -Wno-inconsistent-missing-override .endif post-extract: @${RM} -r ${WRKSRC}/thirdparty/freetype post-patch: @${FIND} ${WRKSRC} -name "CMakeLists.txt" -print0 | ${XARGS} -0 \ ${REINPLACE_CMD} -e \ '/RELEASE/s|-O2 ||; \ /COMPILE_FLAGS/s|-g ||; \ s|share/man|man|; \ /COMPILE_FLAGS/s|$${PCH_INCLUDE} |-include $${PROJECT_BINARY_DIR}/all.h |' @${REINPLACE_CMD} -e \ 's||| ; \ s||| ; \ s||| ; \ s|||' ${WRKSRC}/all.h .include Index: head/audio/musescore/distinfo =================================================================== --- head/audio/musescore/distinfo (revision 492686) +++ head/audio/musescore/distinfo (revision 492687) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547127510 -SHA256 (MuseScore-3.0.0.zip) = 8a764a1f8911502cb9887c84cde4a8dda193a766337b8e477e89185cbf3722c6 -SIZE (MuseScore-3.0.0.zip) = 116183004 +TIMESTAMP = 1549439898 +SHA256 (MuseScore-3.0.2.zip) = 620ba2a56d80528c6654f4f59dcfe968b5667ac49fecfd63742ceb92aad5e0b1 +SIZE (MuseScore-3.0.2.zip) = 116531283 Index: head/audio/musescore/files/patch-git_bb0c1a9b =================================================================== --- head/audio/musescore/files/patch-git_bb0c1a9b (nonexistent) +++ head/audio/musescore/files/patch-git_bb0c1a9b (revision 492687) @@ -0,0 +1,155 @@ +Upstream commit to fix non-WebEngine builds. + +https://github.com/musescore/MuseScore/commit/bb0c1a9b4940f3f6b52c0df535289ec8a3bc9e03 + +diff --git a/mscore/logindialog.h b/mscore/logindialog.h +index 4e86ae7985..f44511d8c0 100644 +--- mscore/logindialog.h ++++ mscore/logindialog.h +@@ -21,6 +21,8 @@ class LoginManager; + + //--------------------------------------------------------- + // LoginDialog ++// Old-style login dialog in case QtWebEngine is ++// unavailable. + //--------------------------------------------------------- + + class LoginDialog : public QDialog, public Ui::LoginDialog +diff --git a/mscore/musescore.cpp b/mscore/musescore.cpp +index 80c712aea9..5bb8354992 100644 +--- mscore/musescore.cpp ++++ mscore/musescore.cpp +@@ -7572,12 +7572,14 @@ bool MuseScore::exportPartsPdfsToJSON(const QString& inFilePath, const QString& + } + + //--------------------------------------------------------- +-// getQmlEngine ++// getPluginEngine + //--------------------------------------------------------- + ++#ifdef SCRIPT_INTERFACE + QmlPluginEngine* MuseScore::getPluginEngine() + { + if (!_qmlEngine) + _qmlEngine = new QmlPluginEngine(this); + return _qmlEngine; + } ++#endif +diff --git a/mscore/network/loginmanager.cpp b/mscore/network/loginmanager.cpp +index a53d7fe811..664786ccc8 100644 +--- mscore/network/loginmanager.cpp ++++ mscore/network/loginmanager.cpp +@@ -18,7 +18,9 @@ + #include "kQOAuth/kqoauthrequest.h" + #include "kQOAuth/kqoauthrequest_xauth.h" + ++#ifdef USE_WEBENGINE + #include ++#endif + + namespace Ms { + +@@ -286,8 +288,11 @@ void LoginManager::onTryLoginError(const QString& error) + disconnect(this, SIGNAL(getUserError(QString)), this, SLOT(onTryLoginError(QString))); + connect(this, SIGNAL(loginSuccess()), this, SLOT(tryLogin())); + logout(); ++#ifdef USE_WEBENGINE + loginInteractive(); +-// mscore->showLoginDialog(); // TODO: switch depending on USE_WEBENGINE ++#else ++ mscore->showLoginDialog(); ++#endif + } + /*------- END - TRY LOGIN ROUTINES ----------------------------*/ + +@@ -295,6 +300,7 @@ void LoginManager::onTryLoginError(const QString& error) + // loginInteractive + //--------------------------------------------------------- + ++#ifdef USE_WEBENGINE + void LoginManager::loginInteractive() + { + QWebEngineView* webView = new QWebEngineView; +@@ -326,6 +332,7 @@ void LoginManager::loginInteractive() + webView->load(ApiInfo::loginUrl); + webView->show(); + } ++#endif + + //--------------------------------------------------------- + // login +@@ -346,7 +353,7 @@ void LoginManager::login(QString login, QString password) + connect(reply, &QNetworkReply::finished, this, [this, reply] { + onReplyFinished(reply, RequestType::LOGIN); + }); +- } ++ } + + //--------------------------------------------------------- + // onLoginSuccessReply +@@ -874,6 +881,7 @@ ApiRequest ApiRequestBuilder::build() const + // musescore.com + //--------------------------------------------------------- + ++#ifdef USE_WEBENGINE + void ApiWebEngineRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo& request) + { + const ApiInfo& apiInfo = ApiInfo::instance(); +@@ -881,4 +889,5 @@ void ApiWebEngineRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo& + request.setHttpHeader(apiInfo.clientIdHeader, apiInfo.clientId); + request.setHttpHeader(apiInfo.apiKeyHeader, apiInfo.apiKey); + } ++#endif + } +diff --git a/mscore/network/loginmanager.h b/mscore/network/loginmanager.h +index 584eeea30d..327d9fc966 100644 +--- mscore/network/loginmanager.h ++++ mscore/network/loginmanager.h +@@ -13,6 +13,8 @@ + #ifndef __LOGINMANAGER_H__ + #define __LOGINMANAGER_H__ + ++#include "config.h" ++ + namespace Ms { + + //--------------------------------------------------------- +@@ -83,7 +85,9 @@ class LoginManager : public QObject + public: + LoginManager(QAction* uploadAudioMenuAction, QObject* parent = 0); + void login(QString login, QString password); ++#ifdef USE_WEBENGINE + void loginInteractive(); ++#endif + void upload(const QString& path, int nid, const QString& title, const QString& description, const QString& priv, const QString& license, const QString& tags, const QString& changes); + bool hasAccessToken(); + void getUser(); +diff --git a/mscore/network/loginmanager_p.h b/mscore/network/loginmanager_p.h +index 88228a3958..2848dde35a 100644 +--- mscore/network/loginmanager_p.h ++++ mscore/network/loginmanager_p.h +@@ -20,6 +20,8 @@ + #ifndef __LOGINMANAGER_P_H__ + #define __LOGINMANAGER_P_H__ + ++#include "config.h" ++ + namespace Ms { + + //--------------------------------------------------------- +@@ -102,6 +104,7 @@ class ApiRequestBuilder + // ApiWebEngineRequestInterceptor + //--------------------------------------------------------- + ++#ifdef USE_WEBENGINE + class ApiWebEngineRequestInterceptor : public QWebEngineUrlRequestInterceptor + { + Q_OBJECT +@@ -109,6 +112,7 @@ class ApiWebEngineRequestInterceptor : public QWebEngineUrlRequestInterceptor + ApiWebEngineRequestInterceptor(QObject* parent) : QWebEngineUrlRequestInterceptor(parent) {} + void interceptRequest(QWebEngineUrlRequestInfo& info) override; + }; ++#endif + + //--------------------------------------------------------- + // HttpStatus Property changes on: head/audio/musescore/files/patch-git_bb0c1a9b ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/musescore/pkg-plist =================================================================== --- head/audio/musescore/pkg-plist (revision 492686) +++ head/audio/musescore/pkg-plist (revision 492687) @@ -1,428 +1,430 @@ bin/mscore bin/musescore man/man1/mscore.1.gz man/man1/musescore.1.gz share/appdata/mscore.appdata.xml share/applications/mscore.desktop share/icons/hicolor/128x128/apps/mscore.png share/icons/hicolor/16x16/apps/mscore.png share/icons/hicolor/24x24/apps/mscore.png share/icons/hicolor/32x32/apps/mscore.png share/icons/hicolor/48x48/apps/mscore.png share/icons/hicolor/48x48/mimetypes/application-vnd.recordare.musicxml+xml.png share/icons/hicolor/48x48/mimetypes/application-vnd.recordare.musicxml.png share/icons/hicolor/48x48/mimetypes/application-x-musescore+xml.png share/icons/hicolor/48x48/mimetypes/application-x-musescore.png share/icons/hicolor/512x512/apps/mscore.png share/icons/hicolor/64x64/apps/mscore.png share/icons/hicolor/96x96/apps/mscore.png share/icons/hicolor/scalable/apps/mscore.svg share/icons/hicolor/scalable/mimetypes/application-vnd.recordare.musicxml+xml.svg share/icons/hicolor/scalable/mimetypes/application-vnd.recordare.musicxml.svg share/icons/hicolor/scalable/mimetypes/application-x-musescore+xml.svg share/icons/hicolor/scalable/mimetypes/application-x-musescore.svg share/mime/packages/musescore.xml %%DATADIR%%/demos/Fugue_1.mscx %%DATADIR%%/demos/Reunion.mscz %%DATADIR%%/demos/Unclaimed_Gift.mscx %%DATADIR%%/instruments/instruments.xml %%DATADIR%%/locale/qt_bg.qm %%DATADIR%%/locale/qt_el.qm %%DATADIR%%/locale/qt_eu.qm %%DATADIR%%/locale/qt_gd.qm %%DATADIR%%/locale/qt_id.qm %%DATADIR%%/locale/qt_lv.qm %%DATADIR%%/locale/qt_nb.qm %%DATADIR%%/locale/qt_nl.qm %%DATADIR%%/locale/qt_nl_BE.qm %%DATADIR%%/locale/qt_pt_BR.qm %%DATADIR%%/locale/qt_ro.qm %%DATADIR%%/locale/qt_tr.qm %%DATADIR%%/locale/qt_vi.qm %%DATADIR%%/locale/instruments_af.qm %%DATADIR%%/locale/instruments_ar.qm %%DATADIR%%/locale/instruments_ar_DZ.qm %%DATADIR%%/locale/instruments_ar_EG.qm %%DATADIR%%/locale/instruments_ar_SD.qm %%DATADIR%%/locale/instruments_ast.qm %%DATADIR%%/locale/instruments_be.qm %%DATADIR%%/locale/instruments_bg.qm %%DATADIR%%/locale/instruments_ca.qm %%DATADIR%%/locale/instruments_ca@valencia.qm %%DATADIR%%/locale/instruments_cs.qm %%DATADIR%%/locale/instruments_cy.qm %%DATADIR%%/locale/instruments_da.qm %%DATADIR%%/locale/instruments_de.qm %%DATADIR%%/locale/instruments_el.qm %%DATADIR%%/locale/instruments_en_GB.qm %%DATADIR%%/locale/instruments_en_US.qm %%DATADIR%%/locale/instruments_eo.qm %%DATADIR%%/locale/instruments_es.qm %%DATADIR%%/locale/instruments_et.qm %%DATADIR%%/locale/instruments_eu.qm %%DATADIR%%/locale/instruments_fa.qm %%DATADIR%%/locale/instruments_fi.qm +%%DATADIR%%/locale/instruments_fil.qm %%DATADIR%%/locale/instruments_fo.qm %%DATADIR%%/locale/instruments_fr.qm %%DATADIR%%/locale/instruments_ga.qm %%DATADIR%%/locale/instruments_gd.qm %%DATADIR%%/locale/instruments_gl.qm %%DATADIR%%/locale/instruments_he.qm %%DATADIR%%/locale/instruments_hi_IN.qm %%DATADIR%%/locale/instruments_hr.qm %%DATADIR%%/locale/instruments_hu.qm %%DATADIR%%/locale/instruments_hy.qm %%DATADIR%%/locale/instruments_id.qm %%DATADIR%%/locale/instruments_ig.qm %%DATADIR%%/locale/instruments_it.qm %%DATADIR%%/locale/instruments_ja.qm %%DATADIR%%/locale/instruments_ka.qm %%DATADIR%%/locale/instruments_kab.qm %%DATADIR%%/locale/instruments_ko.qm %%DATADIR%%/locale/instruments_lt.qm %%DATADIR%%/locale/instruments_lv.qm %%DATADIR%%/locale/instruments_ml.qm %%DATADIR%%/locale/instruments_mn_MN.qm %%DATADIR%%/locale/instruments_nb.qm %%DATADIR%%/locale/instruments_nl.qm %%DATADIR%%/locale/instruments_nn.qm %%DATADIR%%/locale/instruments_pl.qm %%DATADIR%%/locale/instruments_pt.qm %%DATADIR%%/locale/instruments_pt_BR.qm %%DATADIR%%/locale/instruments_ro.qm %%DATADIR%%/locale/instruments_ru.qm %%DATADIR%%/locale/instruments_sk.qm %%DATADIR%%/locale/instruments_sl.qm %%DATADIR%%/locale/instruments_sr.qm %%DATADIR%%/locale/instruments_sr_RS.qm %%DATADIR%%/locale/instruments_sv.qm %%DATADIR%%/locale/instruments_th.qm %%DATADIR%%/locale/instruments_tr.qm %%DATADIR%%/locale/instruments_uk.qm %%DATADIR%%/locale/instruments_uz@Latn.qm %%DATADIR%%/locale/instruments_vi.qm %%DATADIR%%/locale/instruments_zh_CN.qm %%DATADIR%%/locale/instruments_zh_TW.qm %%DATADIR%%/locale/languages.xml %%DATADIR%%/locale/mscore_af.qm %%DATADIR%%/locale/mscore_ar.qm %%DATADIR%%/locale/mscore_ar_DZ.qm %%DATADIR%%/locale/mscore_ar_EG.qm %%DATADIR%%/locale/mscore_ar_SD.qm %%DATADIR%%/locale/mscore_ast.qm %%DATADIR%%/locale/mscore_be.qm %%DATADIR%%/locale/mscore_bg.qm %%DATADIR%%/locale/mscore_ca.qm %%DATADIR%%/locale/mscore_ca@valencia.qm %%DATADIR%%/locale/mscore_cs.qm %%DATADIR%%/locale/mscore_cy.qm %%DATADIR%%/locale/mscore_da.qm %%DATADIR%%/locale/mscore_de.qm %%DATADIR%%/locale/mscore_el.qm %%DATADIR%%/locale/mscore_en_GB.qm %%DATADIR%%/locale/mscore_en_US.qm %%DATADIR%%/locale/mscore_eo.qm %%DATADIR%%/locale/mscore_es.qm %%DATADIR%%/locale/mscore_et.qm %%DATADIR%%/locale/mscore_eu.qm %%DATADIR%%/locale/mscore_fa.qm %%DATADIR%%/locale/mscore_fi.qm +%%DATADIR%%/locale/mscore_fil.qm %%DATADIR%%/locale/mscore_fo.qm %%DATADIR%%/locale/mscore_fr.qm %%DATADIR%%/locale/mscore_ga.qm %%DATADIR%%/locale/mscore_gd.qm %%DATADIR%%/locale/mscore_gl.qm %%DATADIR%%/locale/mscore_he.qm %%DATADIR%%/locale/mscore_hi_IN.qm %%DATADIR%%/locale/mscore_hr.qm %%DATADIR%%/locale/mscore_hu.qm %%DATADIR%%/locale/mscore_hy.qm %%DATADIR%%/locale/mscore_id.qm %%DATADIR%%/locale/mscore_ig.qm %%DATADIR%%/locale/mscore_it.qm %%DATADIR%%/locale/mscore_ja.qm %%DATADIR%%/locale/mscore_ka.qm %%DATADIR%%/locale/mscore_kab.qm %%DATADIR%%/locale/mscore_ko.qm %%DATADIR%%/locale/mscore_lt.qm %%DATADIR%%/locale/mscore_lv.qm %%DATADIR%%/locale/mscore_ml.qm %%DATADIR%%/locale/mscore_mn_MN.qm %%DATADIR%%/locale/mscore_nb.qm %%DATADIR%%/locale/mscore_nl.qm %%DATADIR%%/locale/mscore_nn.qm %%DATADIR%%/locale/mscore_pl.qm %%DATADIR%%/locale/mscore_pt.qm %%DATADIR%%/locale/mscore_pt_BR.qm %%DATADIR%%/locale/mscore_ro.qm %%DATADIR%%/locale/mscore_ru.qm %%DATADIR%%/locale/mscore_sk.qm %%DATADIR%%/locale/mscore_sl.qm %%DATADIR%%/locale/mscore_sr.qm %%DATADIR%%/locale/mscore_sr_RS.qm %%DATADIR%%/locale/mscore_sv.qm %%DATADIR%%/locale/mscore_th.qm %%DATADIR%%/locale/mscore_tr.qm %%DATADIR%%/locale/mscore_uk.qm %%DATADIR%%/locale/mscore_uz@Latn.qm %%DATADIR%%/locale/mscore_vi.qm %%DATADIR%%/locale/mscore_zh_CN.qm %%DATADIR%%/locale/mscore_zh_TW.qm %%DATADIR%%/locale/tours_af.qm %%DATADIR%%/locale/tours_ar.qm %%DATADIR%%/locale/tours_ar_DZ.qm %%DATADIR%%/locale/tours_ar_EG.qm %%DATADIR%%/locale/tours_ar_SD.qm %%DATADIR%%/locale/tours_ast.qm %%DATADIR%%/locale/tours_be.qm %%DATADIR%%/locale/tours_bg.qm %%DATADIR%%/locale/tours_ca.qm %%DATADIR%%/locale/tours_ca@valencia.qm %%DATADIR%%/locale/tours_cs.qm %%DATADIR%%/locale/tours_cy.qm %%DATADIR%%/locale/tours_da.qm %%DATADIR%%/locale/tours_de.qm %%DATADIR%%/locale/tours_el.qm %%DATADIR%%/locale/tours_en.qm %%DATADIR%%/locale/tours_en_GB.qm %%DATADIR%%/locale/tours_en_US.qm %%DATADIR%%/locale/tours_eo.qm %%DATADIR%%/locale/tours_es.qm %%DATADIR%%/locale/tours_et.qm %%DATADIR%%/locale/tours_eu.qm %%DATADIR%%/locale/tours_fa.qm %%DATADIR%%/locale/tours_fi.qm +%%DATADIR%%/locale/tours_fil.qm %%DATADIR%%/locale/tours_fo.qm %%DATADIR%%/locale/tours_ga.qm %%DATADIR%%/locale/tours_gd.qm %%DATADIR%%/locale/tours_gl.qm %%DATADIR%%/locale/tours_he.qm %%DATADIR%%/locale/tours_hi_IN.qm %%DATADIR%%/locale/tours_hr.qm %%DATADIR%%/locale/tours_hu.qm %%DATADIR%%/locale/tours_hy.qm %%DATADIR%%/locale/tours_id.qm %%DATADIR%%/locale/tours_ig.qm %%DATADIR%%/locale/tours_it.qm %%DATADIR%%/locale/tours_ja.qm %%DATADIR%%/locale/tours_ka.qm %%DATADIR%%/locale/tours_kab.qm %%DATADIR%%/locale/tours_ko.qm %%DATADIR%%/locale/tours_lt.qm %%DATADIR%%/locale/tours_lv.qm %%DATADIR%%/locale/tours_ml.qm %%DATADIR%%/locale/tours_mn_MN.qm %%DATADIR%%/locale/tours_nb.qm %%DATADIR%%/locale/tours_nl.qm %%DATADIR%%/locale/tours_nn.qm %%DATADIR%%/locale/tours_pl.qm %%DATADIR%%/locale/tours_pt.qm %%DATADIR%%/locale/tours_pt_BR.qm %%DATADIR%%/locale/tours_ro.qm %%DATADIR%%/locale/tours_ru.qm %%DATADIR%%/locale/tours_sk.qm %%DATADIR%%/locale/tours_sl.qm %%DATADIR%%/locale/tours_sr.qm %%DATADIR%%/locale/tours_sr_RS.qm %%DATADIR%%/locale/tours_sv.qm %%DATADIR%%/locale/tours_th.qm %%DATADIR%%/locale/tours_tr.qm %%DATADIR%%/locale/tours_uk.qm %%DATADIR%%/locale/tours_uz@Latn.qm %%DATADIR%%/locale/tours_vi.qm %%DATADIR%%/locale/tours_zh_CN.qm %%DATADIR%%/locale/tours_zh_TW.qm %%DATADIR%%/manual/plugins/accidental.html %%DATADIR%%/manual/plugins/ambitus.html %%DATADIR%%/manual/plugins/arpeggio.html %%DATADIR%%/manual/plugins/articulation.html %%DATADIR%%/manual/plugins/barline.html %%DATADIR%%/manual/plugins/beam.html %%DATADIR%%/manual/plugins/bend.html %%DATADIR%%/manual/plugins/box.html %%DATADIR%%/manual/plugins/bracket.html %%DATADIR%%/manual/plugins/breath.html %%DATADIR%%/manual/plugins/bsymbol.html %%DATADIR%%/manual/plugins/chord.html %%DATADIR%%/manual/plugins/chordline.html %%DATADIR%%/manual/plugins/chordrest.html %%DATADIR%%/manual/plugins/clef.html %%DATADIR%%/manual/plugins/compound.html %%DATADIR%%/manual/plugins/connectorinfo.html %%DATADIR%%/manual/plugins/connectorinforeader.html %%DATADIR%%/manual/plugins/connectorinfowriter.html -%%DATADIR%%/manual/plugins/cursor.html %%DATADIR%%/manual/plugins/durationelement.html %%DATADIR%%/manual/plugins/dynamic.html %%DATADIR%%/manual/plugins/element.html %%DATADIR%%/manual/plugins/excerpt.html %%DATADIR%%/manual/plugins/fbox.html %%DATADIR%%/manual/plugins/figuredbass.html %%DATADIR%%/manual/plugins/figuredbassitem.html %%DATADIR%%/manual/plugins/fileio.html %%DATADIR%%/manual/plugins/fingering.html %%DATADIR%%/manual/plugins/fretdiagram.html %%DATADIR%%/manual/plugins/fsymbol.html %%DATADIR%%/manual/plugins/glissandosegment.html %%DATADIR%%/manual/plugins/groups.html %%DATADIR%%/manual/plugins/hairpin.html %%DATADIR%%/manual/plugins/hairpinsegment.html %%DATADIR%%/manual/plugins/harmony.html %%DATADIR%%/manual/plugins/hbox.html %%DATADIR%%/manual/plugins/hook.html %%DATADIR%%/manual/plugins/image.html %%DATADIR%%/manual/plugins/instrumentchange.html %%DATADIR%%/manual/plugins/jump.html %%DATADIR%%/manual/plugins/keysig.html %%DATADIR%%/manual/plugins/layoutbreak.html %%DATADIR%%/manual/plugins/ledgerline.html %%DATADIR%%/manual/plugins/letring.html %%DATADIR%%/manual/plugins/letringsegment.html %%DATADIR%%/manual/plugins/linesegment.html %%DATADIR%%/manual/plugins/manual.css %%DATADIR%%/manual/plugins/marker.html %%DATADIR%%/manual/plugins/measure.html %%DATADIR%%/manual/plugins/measurebase.html %%DATADIR%%/manual/plugins/mscore.png %%DATADIR%%/manual/plugins/musescore.html %%DATADIR%%/manual/plugins/note.html %%DATADIR%%/manual/plugins/notedot.html %%DATADIR%%/manual/plugins/notehead.html %%DATADIR%%/manual/plugins/noteline.html %%DATADIR%%/manual/plugins/ossia.html %%DATADIR%%/manual/plugins/ottava.html %%DATADIR%%/manual/plugins/ottavasegment.html %%DATADIR%%/manual/plugins/page.html %%DATADIR%%/manual/plugins/pageformat.html %%DATADIR%%/manual/plugins/palmmute.html %%DATADIR%%/manual/plugins/palmmutesegment.html %%DATADIR%%/manual/plugins/part.html %%DATADIR%%/manual/plugins/pedal.html %%DATADIR%%/manual/plugins/pedalsegment.html %%DATADIR%%/manual/plugins/plugins.html %%DATADIR%%/manual/plugins/qprocess.html %%DATADIR%%/manual/plugins/rehearsalmark.html %%DATADIR%%/manual/plugins/repeatmeasure.html %%DATADIR%%/manual/plugins/rest.html %%DATADIR%%/manual/plugins/score.html %%DATADIR%%/manual/plugins/scoreview.html %%DATADIR%%/manual/plugins/segment.html %%DATADIR%%/manual/plugins/sline.html %%DATADIR%%/manual/plugins/slur.html %%DATADIR%%/manual/plugins/slursegment.html %%DATADIR%%/manual/plugins/slurtie.html %%DATADIR%%/manual/plugins/spacer.html %%DATADIR%%/manual/plugins/spanner.html %%DATADIR%%/manual/plugins/spannersegment.html %%DATADIR%%/manual/plugins/stafflines.html %%DATADIR%%/manual/plugins/staffstate.html %%DATADIR%%/manual/plugins/stafftypechange.html %%DATADIR%%/manual/plugins/stem.html %%DATADIR%%/manual/plugins/stemslash.html %%DATADIR%%/manual/plugins/svggenerator.html %%DATADIR%%/manual/plugins/symbol.html %%DATADIR%%/manual/plugins/tbox.html %%DATADIR%%/manual/plugins/tempotext.html %%DATADIR%%/manual/plugins/textline.html %%DATADIR%%/manual/plugins/textlinebase.html %%DATADIR%%/manual/plugins/textlinebasesegment.html %%DATADIR%%/manual/plugins/textlinesegment.html %%DATADIR%%/manual/plugins/tie.html %%DATADIR%%/manual/plugins/tiesegment.html %%DATADIR%%/manual/plugins/timesig.html %%DATADIR%%/manual/plugins/tremolo.html %%DATADIR%%/manual/plugins/tremolobar.html %%DATADIR%%/manual/plugins/trill.html %%DATADIR%%/manual/plugins/trillsegment.html %%DATADIR%%/manual/plugins/tuplet.html %%DATADIR%%/manual/plugins/vbox.html %%DATADIR%%/manual/plugins/vibratosegment.html %%DATADIR%%/manual/plugins/volta.html %%DATADIR%%/manual/plugins/voltasegment.html %%DATADIR%%/plugins/abc_import.qml %%DATADIR%%/plugins/colornotes.qml %%DATADIR%%/plugins/createscore.qml %%DATADIR%%/plugins/helloqml/helloqml.qml %%DATADIR%%/plugins/helloqml/translations/locale_de.qm %%DATADIR%%/plugins/helloqml/translations/locale_de.ts %%DATADIR%%/plugins/notenames.qml %%DATADIR%%/plugins/panel.qml %%DATADIR%%/plugins/random.qml %%DATADIR%%/plugins/random2.qml %%DATADIR%%/plugins/run.qml %%DATADIR%%/plugins/scorelist.qml %%DATADIR%%/plugins/view.qml %%DATADIR%%/plugins/walk.qml %%DATADIR%%/sound/MuseScore_General-License.md %%DATADIR%%/sound/MuseScore_General.sf3 %%DATADIR%%/styles/MuseJazz.mss %%DATADIR%%/styles/cchords_muse.xml %%DATADIR%%/styles/cchords_nrb.xml %%DATADIR%%/styles/cchords_rb.xml %%DATADIR%%/styles/cchords_sym.xml %%DATADIR%%/styles/chords.xml %%DATADIR%%/styles/chords_jazz.xml %%DATADIR%%/styles/chords_std.xml %%DATADIR%%/styles/jazzchords.xml %%DATADIR%%/styles/stdchords.xml %%DATADIR%%/templates/01-General/00-Blank.mscx %%DATADIR%%/templates/01-General/01-Treble_Clef.mscx %%DATADIR%%/templates/01-General/02-Bass_Clef.mscx %%DATADIR%%/templates/01-General/03-Grand_Staff.mscx %%DATADIR%%/templates/02-Choral/01-SATB.mscx %%DATADIR%%/templates/02-Choral/02-SATB_+_Organ.mscx %%DATADIR%%/templates/02-Choral/03-SATB_+_Piano.mscx %%DATADIR%%/templates/02-Choral/04-SATB_Closed_Score.mscx %%DATADIR%%/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscx %%DATADIR%%/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscx %%DATADIR%%/templates/02-Choral/07-Voice_+_Piano.mscx %%DATADIR%%/templates/02-Choral/08-Barbershop_Quartet.mscx %%DATADIR%%/templates/02-Choral/09-Liturgical_Unmetrical.mscx %%DATADIR%%/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscx %%DATADIR%%/templates/03-Chamber_Music/01-String_Quartet.mscx %%DATADIR%%/templates/03-Chamber_Music/02-Wind_Quartet.mscx %%DATADIR%%/templates/03-Chamber_Music/03-Wind_Quintet.mscx %%DATADIR%%/templates/03-Chamber_Music/04-Saxophone_Quartet.mscx %%DATADIR%%/templates/03-Chamber_Music/05-Brass_Quartet.mscx %%DATADIR%%/templates/03-Chamber_Music/06-Brass_Quintet.mscx %%DATADIR%%/templates/04-Solo/01-Guitar.mscx %%DATADIR%%/templates/04-Solo/02-Guitar_+_Tablature.mscx %%DATADIR%%/templates/04-Solo/03-Guitar_Tablature.mscx %%DATADIR%%/templates/04-Solo/04-Piano.mscx %%DATADIR%%/templates/05-Jazz/01-Jazz_Lead_Sheet.mscx %%DATADIR%%/templates/05-Jazz/02-Big_Band.mscx %%DATADIR%%/templates/05-Jazz/03-Jazz_Combo.mscx %%DATADIR%%/templates/06-Popular/01-Rock_Band.mscx %%DATADIR%%/templates/06-Popular/02-Bluegrass_Band.mscx %%DATADIR%%/templates/07-Band_and_Percussion/01-Concert_Band.mscx %%DATADIR%%/templates/07-Band_and_Percussion/02-Small_Concert_Band.mscx %%DATADIR%%/templates/07-Band_and_Percussion/03-Brass_Band.mscx %%DATADIR%%/templates/07-Band_and_Percussion/04-Marching_Band.mscx %%DATADIR%%/templates/07-Band_and_Percussion/05-Small_Marching_Band.mscx %%DATADIR%%/templates/07-Band_and_Percussion/06-Battery_Percussion.mscx %%DATADIR%%/templates/07-Band_and_Percussion/07-Large_Pit_Percussion.mscx %%DATADIR%%/templates/07-Band_and_Percussion/08-Small_Pit_Percussion.mscx %%DATADIR%%/templates/08-Orchestral/01-Classical_Orchestra.mscx %%DATADIR%%/templates/08-Orchestral/02-Symphony_Orchestra.mscx %%DATADIR%%/templates/08-Orchestral/03-String_Orchestra.mscx %%DATADIR%%/templates/drumset_fr.drm %%DATADIR%%/templates/orchestral.drm %%DATADIR%%/tours/autoplace.tour %%DATADIR%%/tours/inspector.tour %%DATADIR%%/tours/mmrest.tour %%DATADIR%%/tours/navigate.tour %%DATADIR%%/tours/noteinput.tour %%DATADIR%%/tours/palette.tour %%DATADIR%%/tours/select.tour %%DATADIR%%/tours/timeline.tour %%DATADIR%%/tours/welcome.tour %%DATADIR%%/wallpaper/background1.png %%DATADIR%%/wallpaper/paper1.png %%DATADIR%%/wallpaper/paper2.png %%DATADIR%%/wallpaper/paper3.png %%DATADIR%%/wallpaper/paper4.png %%DATADIR%%/wallpaper/paper5.png %%DATADIR%%/wallpaper/paper6.png %%DATADIR%%/wallpaper/paper7.png %%DATADIR%%/workspaces/Advanced.workspace %%DATADIR%%/workspaces/Basic.workspace