mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
- Update to 1.0.0
PR: 177923 Submitted by: Ports Fury
This commit is contained in:
parent
bf85b3e3ad
commit
e1b6fc8a47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=317988
12 changed files with 127 additions and 142 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= denemo
|
||||
PORTVERSION= 0.9.6
|
||||
PORTVERSION= 1.0.0
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= GNU
|
||||
|
||||
|
@ -18,7 +18,8 @@ LIB_DEPENDS= aubio:${PORTSDIR}/audio/aubio \
|
|||
evview:${PORTSDIR}/graphics/evince \
|
||||
guile:${PORTSDIR}/lang/guile \
|
||||
fftw3:${PORTSDIR}/math/fftw3
|
||||
RUN_DEPENDS= portaudio>=19:${PORTSDIR}/audio/portaudio2
|
||||
RUN_DEPENDS= portaudio>=19:${PORTSDIR}/audio/portaudio2 \
|
||||
xdg-open:${PORTSDIR}/devel/xdg-utils
|
||||
|
||||
LICENSE= GPLv3
|
||||
|
||||
|
@ -28,7 +29,8 @@ LILYPOND_DESC= Install LilyPond (Printing)
|
|||
USE_GNOME= gtk20 gtksourceview2 librsvg2 libxml2
|
||||
USES= bison
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --enable-jack \
|
||||
CONFIGURE_ARGS= --enable-gtk2 \
|
||||
--enable-jack \
|
||||
--disable-portmidi \
|
||||
--sysconfdir=${PREFIX}/etc
|
||||
MAKE_JOBS_SAFE= yes
|
||||
|
@ -46,13 +48,26 @@ RUN_DEPENDS+= lilypond:${PORTSDIR}/print/lilypond
|
|||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e \
|
||||
's|evince-view-2.30|evince-view-2.32|g' ${WRKSRC}/configure
|
||||
'/^CFLAGS=/s|_LIBS|_CFLAGS| ; \
|
||||
s|-lpthread|-pthread|' ${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e \
|
||||
'/^SUBDIRS/s|doc|| ; \
|
||||
/\/examples/d' ${WRKSRC}/Makefile.in
|
||||
/) install-data-hook/s|^|#|' ${WRKSRC}/Makefile.in
|
||||
@${REINPLACE_CMD} -e \
|
||||
's|"firefox"|"xdg-open"|' ${WRKSRC}/src/prefops.c
|
||||
|
||||
post-install:
|
||||
@${LN} -sf ${DOCSDIR}/manual ${DATADIR}/manual
|
||||
@${MKDIR} ${DATADIR}
|
||||
.for i in actions templates
|
||||
@(cd ${WRKSRC} && ${TAR} --exclude "*Makefile*" -cf - ${i}) | \
|
||||
(cd ${DATADIR} && ${TAR} --unlink -xf -)
|
||||
@${FIND} ${DATADIR}/${i} -print0 | \
|
||||
${XARGS} -0 ${CHOWN} ${SHAREOWN}:${SHAREGRP}
|
||||
@${FIND} ${DATADIR}/${i} -type d -print0 | \
|
||||
${XARGS} -0 ${CHMOD} a+rx
|
||||
@${FIND} ${DATADIR}/${i} -type f -print0 | \
|
||||
${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
||||
.endfor
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for i in AUTHORS ChangeLog NEWS README
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (denemo-0.9.6.tar.gz) = b04299fbf2f3207438da043b1a6d3748c86e48e9ee8af00de8bb2dec7795b6d4
|
||||
SIZE (denemo-0.9.6.tar.gz) = 13273412
|
||||
SHA256 (denemo-1.0.0.tar.gz) = a13795e7ad17753b9db5886a6deb6abad7de3f16dc19a592c99dbd4237076945
|
||||
SIZE (denemo-1.0.0.tar.gz) = 13810392
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
--- src/alsabackend.h
|
||||
+++ src/alsabackend.h
|
||||
@@ -0,0 +1,23 @@
|
||||
+/*
|
||||
+ * alsabackend.h
|
||||
+ * ALSA sequencer MIDI backend.
|
||||
+ *
|
||||
+ * for Denemo, a gtk+ frontend to GNU Lilypond
|
||||
+ * Copyright (C) 2011 Dominic Sacré
|
||||
+ *
|
||||
+ * This program is free software: you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License as published by
|
||||
+ * the Free Software Foundation, either version 3 of the License, or
|
||||
+ * (at your option) any later version.
|
||||
+ */
|
||||
+
|
||||
+#ifndef ALSABACKEND_H
|
||||
+#define ALSABACKEND_H
|
||||
+
|
||||
+#include "audiointerface.h"
|
||||
+
|
||||
+extern backend_t alsa_seq_midi_backend;
|
||||
+
|
||||
+
|
||||
+#endif // ALSABACKEND_H
|
||||
+
|
|
@ -1,10 +0,0 @@
|
|||
--- src/audiointerface.c.orig 2012-09-20 22:44:28.771017000 +0900
|
||||
+++ src/audiointerface.c 2012-10-05 06:05:30.000000000 +0900
|
||||
@@ -14,6 +14,7 @@
|
||||
#include "audiointerface.h"
|
||||
#include "eventqueue.h"
|
||||
#include "dummybackend.h"
|
||||
+#include "sourceaudio.h"
|
||||
|
||||
#ifdef _HAVE_JACK_
|
||||
#include "jackbackend.h"
|
|
@ -1,10 +0,0 @@
|
|||
--- src/eventqueue.c.orig 2012-09-20 22:44:28.795017000 +0900
|
||||
+++ src/eventqueue.c 2012-10-05 06:05:30.000000000 +0900
|
||||
@@ -13,6 +13,7 @@
|
||||
|
||||
#include "eventqueue.h"
|
||||
#include "midi.h"
|
||||
+#include "moveviewport.h"
|
||||
|
||||
#include <glib.h>
|
||||
#include <string.h>
|
11
audio/denemo/files/patch-src__file.c
Normal file
11
audio/denemo/files/patch-src__file.c
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- src/file.c.orig
|
||||
+++ src/file.c
|
||||
@@ -556,7 +556,7 @@
|
||||
default_template_path = local_template_path;
|
||||
} else if(local==EXAMPLE){
|
||||
if(system_example_path==NULL) {
|
||||
- system_example_path = g_build_filename (get_data_dir (), "examples", NULL);
|
||||
+ system_example_path = g_build_filename (get_data_dir (), "..", "examples", "denemo", NULL);
|
||||
GDir *denemo_path = g_dir_open(system_example_path, 0, NULL);
|
||||
if(denemo_path == NULL) {
|
||||
warningdialog ("No examples directory in installation");
|
11
audio/denemo/files/patch-src__help.c
Normal file
11
audio/denemo/files/patch-src__help.c
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- src/help.c.orig
|
||||
+++ src/help.c
|
||||
@@ -63,7 +63,7 @@
|
||||
GError *error = NULL;
|
||||
|
||||
/* get the uri to the manual */
|
||||
- gchar *manualpath = g_build_filename (get_data_dir (), "manual",
|
||||
+ gchar *manualpath = g_build_filename (get_data_dir (), "..", "doc", "denemo", "manual",
|
||||
"denemo-manual.html", NULL);
|
||||
gchar *manualuri = url?g_strdup(url):g_filename_to_uri (manualpath, NULL, NULL);
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
--- src/jackbackend.h
|
||||
+++ src/jackbackend.h
|
||||
@@ -0,0 +1,23 @@
|
||||
+/*
|
||||
+ * jackbackend.h
|
||||
+ * JACK audio and MIDI backends.
|
||||
+ *
|
||||
+ * for Denemo, a gtk+ frontend to GNU Lilypond
|
||||
+ * Copyright (C) 2011 Dominic Sacré
|
||||
+ *
|
||||
+ * This program is free software: you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License as published by
|
||||
+ * the Free Software Foundation, either version 3 of the License, or
|
||||
+ * (at your option) any later version.
|
||||
+ */
|
||||
+
|
||||
+#ifndef JACKBACKEND_H
|
||||
+#define JACKBACKEND_H
|
||||
+
|
||||
+#include "audiointerface.h"
|
||||
+
|
||||
+extern backend_t jack_audio_backend;
|
||||
+extern backend_t jack_midi_backend;
|
||||
+
|
||||
+
|
||||
+#endif // JACKBACKEND_H
|
|
@ -1,40 +0,0 @@
|
|||
--- src/jackutil.h
|
||||
+++ src/jackutil.h
|
||||
@@ -0,0 +1,37 @@
|
||||
+/*
|
||||
+ * jackutil.h
|
||||
+ * JACK utility functions.
|
||||
+ *
|
||||
+ * for Denemo, a gtk+ frontend to GNU Lilypond
|
||||
+ * Copyright (C) 2011 Dominic Sacré
|
||||
+ *
|
||||
+ * This program is free software: you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License as published by
|
||||
+ * the Free Software Foundation, either version 3 of the License, or
|
||||
+ * (at your option) any later version.
|
||||
+ */
|
||||
+
|
||||
+#ifndef JACKUTIL_H
|
||||
+#define JACKUTIL_H
|
||||
+
|
||||
+#include <glib.h>
|
||||
+
|
||||
+/**
|
||||
+ * Returns a list of available JACK port names, that is, ports to which our
|
||||
+ * own input/output ports can be connected.
|
||||
+ *
|
||||
+ * If the JACK server is not running or there are no available ports, this
|
||||
+ * function returns NULL.
|
||||
+ *
|
||||
+ * @param midi if TRUE returns MIDI ports, otherwise audio ports.
|
||||
+ * @param output if TRUE returns output ports, otherwise input ports.
|
||||
+ */
|
||||
+GList *get_jack_ports(gboolean midi, gboolean output);
|
||||
+
|
||||
+/**
|
||||
+ * Frees a list returned by get_jack_ports()
|
||||
+ */
|
||||
+void free_jack_ports(GList *list);
|
||||
+
|
||||
+
|
||||
+#endif // JACKUTIL_H
|
10
audio/denemo/files/patch-src__playback.c
Normal file
10
audio/denemo/files/patch-src__playback.c
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- src/playback.c.orig
|
||||
+++ src/playback.c
|
||||
@@ -7,6 +7,7 @@
|
||||
|
||||
|
||||
#include <denemo/denemo.h>
|
||||
+#include "playback.h"
|
||||
#include "exportlilypond.h"
|
||||
#include "exportmidi.h"
|
||||
#include "staffops.h"
|
|
@ -1,10 +0,0 @@
|
|||
--- src/portaudiobackend.c.orig 2012-09-20 22:44:28.823018000 +0900
|
||||
+++ src/portaudiobackend.c 2012-10-05 06:05:30.000000000 +0900
|
||||
@@ -16,6 +16,7 @@
|
||||
#include "portaudioutil.h"
|
||||
#include "midi.h"
|
||||
#include "fluid.h"
|
||||
+#include "audiointerface.h"
|
||||
|
||||
#include <portaudio.h>
|
||||
#include <glib.h>
|
|
@ -17,9 +17,6 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/Default.shortcuts
|
||||
%%DATADIR%%/actions/LilyPond.commands
|
||||
%%DATADIR%%/actions/LilyPond.shortcuts
|
||||
%%DATADIR%%/actions/Makefile
|
||||
%%DATADIR%%/actions/Makefile.am
|
||||
%%DATADIR%%/actions/Makefile.in
|
||||
%%DATADIR%%/actions/Simple.commands
|
||||
%%DATADIR%%/actions/Simple.scm
|
||||
%%DATADIR%%/actions/Simple.shortcuts
|
||||
|
@ -643,6 +640,8 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/AddLowestUpPerfect1.scm
|
||||
%%DATADIR%%/actions/commandscripts/AddLowestUpPerfect4.scm
|
||||
%%DATADIR%%/actions/commandscripts/AddLowestUpPerfect5.scm
|
||||
%%DATADIR%%/actions/commandscripts/AdjustBassFigureHeight.scm
|
||||
%%DATADIR%%/actions/commandscripts/AdjustFiguredBassHeights.scm
|
||||
%%DATADIR%%/actions/commandscripts/Allegro.scm
|
||||
%%DATADIR%%/actions/commandscripts/AllegroAssai.scm
|
||||
%%DATADIR%%/actions/commandscripts/AllowLineBreak.scm
|
||||
|
@ -653,6 +652,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/ApplyToSelection.scm
|
||||
%%DATADIR%%/actions/commandscripts/ArbitraryTextAbove.scm
|
||||
%%DATADIR%%/actions/commandscripts/ArpeggioSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/AttachedText.scm
|
||||
%%DATADIR%%/actions/commandscripts/AudioPlay.scm
|
||||
%%DATADIR%%/actions/commandscripts/Augment.scm
|
||||
%%DATADIR%%/actions/commandscripts/AutoAccidentals.scm
|
||||
|
@ -662,6 +662,12 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/Bb-Major.scm
|
||||
%%DATADIR%%/actions/commandscripts/Bb-Pentascale.scm
|
||||
%%DATADIR%%/actions/commandscripts/Beam1234.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamLeftOne.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamLeftThree.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamLeftTwo.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamRightOne.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamRightThree.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamRightTwo.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamingOff.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeamingOn.scm
|
||||
%%DATADIR%%/actions/commandscripts/BeatChange.scm
|
||||
|
@ -746,7 +752,9 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/CriticalCommentaryIntro.scm
|
||||
%%DATADIR%%/actions/commandscripts/CursorToHighestNote.scm
|
||||
%%DATADIR%%/actions/commandscripts/CursorToLowestNote.scm
|
||||
%%DATADIR%%/actions/commandscripts/Custos.scm
|
||||
%%DATADIR%%/actions/commandscripts/D.C.AlFine.scm
|
||||
%%DATADIR%%/actions/commandscripts/DalSegno.scm
|
||||
%%DATADIR%%/actions/commandscripts/Db-Major.scm
|
||||
%%DATADIR%%/actions/commandscripts/Db-Pentascale.scm
|
||||
%%DATADIR%%/actions/commandscripts/DeactivateTimeSignatureStencil.scm
|
||||
|
@ -772,10 +780,11 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/DownbowSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/DrumGM2Custom.scm
|
||||
%%DATADIR%%/actions/commandscripts/DuplicateChord.scm
|
||||
%%DATADIR%%/actions/commandscripts/DynamicsDialog.scm
|
||||
%%DATADIR%%/actions/commandscripts/DynamicText.scm
|
||||
%%DATADIR%%/actions/commandscripts/Eb-Major.scm
|
||||
%%DATADIR%%/actions/commandscripts/Eb-Pentascale.scm
|
||||
%%DATADIR%%/actions/commandscripts/EditProlog.scm
|
||||
%%DATADIR%%/actions/commandscripts/EnableAccordion16v.scm
|
||||
%%DATADIR%%/actions/commandscripts/EndBeam.scm
|
||||
%%DATADIR%%/actions/commandscripts/EndPhrasingSlur.scm
|
||||
%%DATADIR%%/actions/commandscripts/EndSecondTimeBar.scm
|
||||
|
@ -788,6 +797,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/F-sharp-Major.scm
|
||||
%%DATADIR%%/actions/commandscripts/F-sharp-Pentascale.scm
|
||||
%%DATADIR%%/actions/commandscripts/FermataSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/Ficta.scm
|
||||
%%DATADIR%%/actions/commandscripts/FiguredBassExercises.scm
|
||||
%%DATADIR%%/actions/commandscripts/FiguredBassFilterOn.scm
|
||||
%%DATADIR%%/actions/commandscripts/FindEditPoint.scm
|
||||
|
@ -799,6 +809,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/Finger3.scm
|
||||
%%DATADIR%%/actions/commandscripts/Finger4.scm
|
||||
%%DATADIR%%/actions/commandscripts/Finger5.scm
|
||||
%%DATADIR%%/actions/commandscripts/FingeringPosition.scm
|
||||
%%DATADIR%%/actions/commandscripts/FingeringsDoublestroke.scm
|
||||
%%DATADIR%%/actions/commandscripts/FinishCadenza.scm
|
||||
%%DATADIR%%/actions/commandscripts/FirstTimeBar.scm
|
||||
|
@ -823,6 +834,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/HalfBarline.scm
|
||||
%%DATADIR%%/actions/commandscripts/HalfDiminished7OrDiminshed7.scm
|
||||
%%DATADIR%%/actions/commandscripts/HarmonicSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/HelpAllFeatures.scm
|
||||
%%DATADIR%%/actions/commandscripts/HelpForReturnKey.scm
|
||||
%%DATADIR%%/actions/commandscripts/HiHat.scm
|
||||
%%DATADIR%%/actions/commandscripts/HiHatFoot.scm
|
||||
|
@ -853,6 +865,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/InsertBreveRest.scm
|
||||
%%DATADIR%%/actions/commandscripts/InsertCaptureMeasure.scm
|
||||
%%DATADIR%%/actions/commandscripts/InsertCaptureMeasureForStaff.scm
|
||||
%%DATADIR%%/actions/commandscripts/InsertDefinedLilyPond.scm
|
||||
%%DATADIR%%/actions/commandscripts/InsertLonga.scm
|
||||
%%DATADIR%%/actions/commandscripts/InsertLongaRest.scm
|
||||
%%DATADIR%%/actions/commandscripts/InsertOneNote.scm
|
||||
|
@ -871,6 +884,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/LHFinger.scm
|
||||
%%DATADIR%%/actions/commandscripts/Largo.scm
|
||||
%%DATADIR%%/actions/commandscripts/LheelSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/LilyPondDefinition.scm
|
||||
%%DATADIR%%/actions/commandscripts/LilyPondInclude.scm
|
||||
%%DATADIR%%/actions/commandscripts/LimitInterSystemSpace.scm
|
||||
%%DATADIR%%/actions/commandscripts/LineBreak.scm
|
||||
|
@ -888,6 +902,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/MarcatoSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/MergeRests.scm
|
||||
%%DATADIR%%/actions/commandscripts/MergeWithNextMeasure.scm
|
||||
%%DATADIR%%/actions/commandscripts/MetronomeMark.scm
|
||||
%%DATADIR%%/actions/commandscripts/MetronomeMarking.scm
|
||||
%%DATADIR%%/actions/commandscripts/MezzoForte.scm
|
||||
%%DATADIR%%/actions/commandscripts/MezzoPiano.scm
|
||||
|
@ -928,6 +943,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/NextHigher.scm
|
||||
%%DATADIR%%/actions/commandscripts/NoBarline.scm
|
||||
%%DATADIR%%/actions/commandscripts/NoBeam.scm
|
||||
%%DATADIR%%/actions/commandscripts/NoLineBreak.scm
|
||||
%%DATADIR%%/actions/commandscripts/NoOp.scm
|
||||
%%DATADIR%%/actions/commandscripts/NoTupletNumbers.scm
|
||||
%%DATADIR%%/actions/commandscripts/NonPrintingStaff.scm
|
||||
|
@ -982,17 +998,21 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/Piece.scm
|
||||
%%DATADIR%%/actions/commandscripts/PitchShift.scm
|
||||
%%DATADIR%%/actions/commandscripts/PlaceFiguredBassBelow.scm
|
||||
%%DATADIR%%/actions/commandscripts/PlayAtCursor.scm
|
||||
%%DATADIR%%/actions/commandscripts/PointAndClick.scm
|
||||
%%DATADIR%%/actions/commandscripts/PortatoSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/Presto.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrevBookmark.scm
|
||||
%%DATADIR%%/actions/commandscripts/Preview4Bars.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintAccompanistsScore.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintAllLayouts.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintBassPartWithoutFigures.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintPartWithTitlePage.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintScoreAndParts.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintThreeReduced.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintTwoReduced.scm
|
||||
%%DATADIR%%/actions/commandscripts/PrintWithAmbitus.scm
|
||||
%%DATADIR%%/actions/commandscripts/RHFinger.scm
|
||||
%%DATADIR%%/actions/commandscripts/ReBar.scm
|
||||
%%DATADIR%%/actions/commandscripts/ReadingNoteNames.scm
|
||||
%%DATADIR%%/actions/commandscripts/ReadingNoteNamesSolfege.scm
|
||||
|
@ -1126,8 +1146,10 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/Tempo.scm
|
||||
%%DATADIR%%/actions/commandscripts/TenutoSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/TextAbove.scm
|
||||
%%DATADIR%%/actions/commandscripts/TextAnnotation.scm
|
||||
%%DATADIR%%/actions/commandscripts/ThumbSelectionSwitcher.scm
|
||||
%%DATADIR%%/actions/commandscripts/TimbalesStyle.scm
|
||||
%%DATADIR%%/actions/commandscripts/TimesigWithBeatStructure.scm
|
||||
%%DATADIR%%/actions/commandscripts/TinyNotehead.scm
|
||||
%%DATADIR%%/actions/commandscripts/TinyStaff.scm
|
||||
%%DATADIR%%/actions/commandscripts/TinyStaffAllMovements.scm
|
||||
|
@ -1151,6 +1173,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/ToggleLtoe.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleMarcato.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleMordent.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleNoteTie.scm
|
||||
%%DATADIR%%/actions/commandscripts/TogglePlayAlongPlayback.scm
|
||||
%%DATADIR%%/actions/commandscripts/TogglePortato.scm
|
||||
%%DATADIR%%/actions/commandscripts/TogglePrall.scm
|
||||
|
@ -1163,6 +1186,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/ToggleSignumcongruentiae.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleStaccatissimo.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleStaccato.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleStemSupport.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleStopped.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleTenuto.scm
|
||||
%%DATADIR%%/actions/commandscripts/ToggleThumb.scm
|
||||
|
@ -1181,6 +1205,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/Trill+Above.scm
|
||||
%%DATADIR%%/actions/commandscripts/Trill+Below.scm
|
||||
%%DATADIR%%/actions/commandscripts/Tutorial.scm
|
||||
%%DATADIR%%/actions/commandscripts/TypesetVersesAtEnd.scm
|
||||
%%DATADIR%%/actions/commandscripts/TypesettingOff.scm
|
||||
%%DATADIR%%/actions/commandscripts/TypesettingOn.scm
|
||||
%%DATADIR%%/actions/commandscripts/UnGraceAfter.scm
|
||||
|
@ -1195,11 +1220,13 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/commandscripts/VoicePresetAutomatic.scm
|
||||
%%DATADIR%%/actions/commandscripts/VoiceSetting.scm
|
||||
%%DATADIR%%/actions/commandscripts/VoicesDoublestroke.scm
|
||||
%%DATADIR%%/actions/commandscripts/WholeMeasureRepeat.scm
|
||||
%%DATADIR%%/actions/commandscripts/WholeMeasureRest.scm
|
||||
%%DATADIR%%/actions/commandscripts/ZoomDialog.scm
|
||||
%%DATADIR%%/actions/commandscripts/ZoomIn.scm
|
||||
%%DATADIR%%/actions/commandscripts/ZoomOut.scm
|
||||
%%DATADIR%%/actions/commandscripts/ZoomReset.scm
|
||||
%%DATADIR%%/actions/commandscripts/init.scm
|
||||
%%DATADIR%%/actions/denemo-modules/abstractionmovement.scm
|
||||
%%DATADIR%%/actions/denemo-modules/ans.scm
|
||||
%%DATADIR%%/actions/denemo-modules/commandlist.scm
|
||||
|
@ -1213,6 +1240,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/denemo-modules/scheme.scm
|
||||
%%DATADIR%%/actions/denemo-modules/selection.scm
|
||||
%%DATADIR%%/actions/denemo-modules/types.scm
|
||||
%%DATADIR%%/actions/denemo-modules/wysiwyg.scm
|
||||
%%DATADIR%%/actions/denemo.scm
|
||||
%%DATADIR%%/actions/editscripts/D.C.AlFine.scm
|
||||
%%DATADIR%%/actions/editscripts/LHFinger.scm
|
||||
|
@ -1295,9 +1323,11 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintAllLayouts
|
||||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintBassPartWithoutFigures
|
||||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintPartWithTitlePage
|
||||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintScoreAndParts
|
||||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintThreeReduced
|
||||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintTwoReduced
|
||||
%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintWithAmbitus
|
||||
%%DATADIR%%/actions/menus/MainMenu/HelpMenu/HelpAllFeatures
|
||||
%%DATADIR%%/actions/menus/MainMenu/HelpMenu/HelpForReturnKey
|
||||
%%DATADIR%%/actions/menus/MainMenu/HelpMenu/IRC
|
||||
%%DATADIR%%/actions/menus/MainMenu/HelpMenu/SetNewbieStatus
|
||||
|
@ -1359,6 +1389,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/ConvertMidiForBass
|
||||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/DenemoPlayCursorToEnd
|
||||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/PitchShift
|
||||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/PlayAtCursor
|
||||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/RecordAndConvert
|
||||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/RecreateTimebase
|
||||
%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/ToggleConduct
|
||||
|
@ -1426,11 +1457,13 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Conditional-Directives/NotForLayout
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Conditional-Directives/OnlyForLayout
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/CriticalComment
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/DynamicsDialog
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/DynamicText
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/EnableAccordion16v
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/EndVolta
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/FinishCadenza
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/FreeFermata
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Hide
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/InsertDefinedLilyPond
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/InsertStandaloneDirective
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/LineBreak
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChangeBalance
|
||||
|
@ -1455,7 +1488,8 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/Temperament/StartEqualTemperament
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/Temperament/StartQCMeanTone
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/init.scm
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/MetronomeMarking
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/MetronomeMark
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/NoLineBreak
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/OpenFirstTimeBar
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/OpenSecondTimeBar
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Ottava
|
||||
|
@ -1472,7 +1506,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/StartStaff
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/StopStaff
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/UnHideNotes
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Tempo
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/TextAnnotation
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Tuning/SetTuningAllStaffs
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Tuning/SetTuningStaff
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/TypesettingOff
|
||||
|
@ -1484,9 +1518,12 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Voices/VoicePresetAutomatic
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Voices/VoiceSetting
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Directives/Voices/VoicesDoublestroke
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Key/FlattenInitialKeysigs
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Key/FlattenKeysig
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Key/HideKeysig
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Key/SharpenInitialKeysigs
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Key/SharpenKeysig
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Lyrics/TypesetVersesAtEnd
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/AddDuplicateMeasure
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/CheckTupletsInMeasure
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/MergeWithNextMeasure
|
||||
|
@ -1499,10 +1536,12 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/ShortMeasure
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/SplitMeasure
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Upbeat
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/WholeMeasureRepeat
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/CaptureScore/CaptureMeasures
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/CaptureScore/DeleteCapturedMeasure
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/CaptureScore/InsertCaptureMeasure
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/CreateIntro
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Custos
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/EvenOutStaffLengths
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/HideBarlines
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/HideMovement
|
||||
|
@ -1530,6 +1569,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Book Titles/Section
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Book Titles/TitledPiece
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Book Titles/init.scm
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Simple Titles/MovementComposer
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Simple Titles/MovementPiece
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Simple Titles/MovementSubtitle
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles/Simple Titles/MovementTitle
|
||||
|
@ -1549,6 +1589,14 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/SingleRandomNote/NotationMagick-RandomWithinClefRangeDiatonic
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Augment
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/Beam1234
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamLeftNone
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamLeftOne
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamLeftThree
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamLeftTwo
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamRightNone
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamRightOne
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamRightThree
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/BeamRightTwo
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/DeleteBeamingDirective
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/EndBeam
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/NoBeam
|
||||
|
@ -1577,6 +1625,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/CautionaryAccidental
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/ChangeEnharmonicDown
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/ChangeEnharmonicUp
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/Ficta
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/MoveNoteToCursor
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/ReminderAccidental
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/RemoveDotSelectionSwitcher
|
||||
|
@ -1635,6 +1684,9 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/ToggleUpBow
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/ToggleVeryLongFermata
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/UpBowSelectionSwitcher
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/AttachedText
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/FiguredBass/AdjustBassFigureHeight
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/FiguredBass/AdjustFiguredBassHeights
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/FiguredBass/PlaceFiguredBassBelow
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/ToggleCoda
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/ToggleMordent
|
||||
|
@ -1646,18 +1698,21 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/ToggleUpPrall
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/Trill+Above
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/Trill+Below
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/FingeringPosition
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger0
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger1
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger2
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger3
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger4
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger5
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/LHFinger
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/RHFinger
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/StringNum
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/ToggleStemSupport
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextAbove
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/ArbitraryTextAbove
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Congruentia
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/D.C.AlFine
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/DalSegno
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/DeleteDynamic
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/Forte
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/Fortissimo
|
||||
|
@ -1713,6 +1768,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/StemControl/StartDownStems
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/StemControl/StartUpStems
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/TiedNotes/InsertTiedNoteDuration
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/TiedNotes/ToggleNoteTie
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftDown
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealDialogDown
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealDialogUp
|
||||
|
@ -1728,7 +1784,9 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/StartTuplet
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTripleting
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTupletBrackets
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTupletBracketsIfBeamed
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTupletNumbering
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/init.scm
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/init.scm
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/split.scm
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/AccompanistsScore
|
||||
|
@ -1736,6 +1794,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/Score/DeactivateTimeSignatureStencil
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/DenemoBar
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/EditProlog
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/LilyPondDefinition
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/LilyPondInclude
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/NormalBeamEndings
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/Score/PointAndClick
|
||||
|
@ -1829,6 +1888,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/MergeRests
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/NewVoice
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/NoteColumnShift
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/PartCombine
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/SetCurrentStaffAsVoice
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/SetCurrentVoiceAsStaff
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/ShiftOff
|
||||
|
@ -1836,6 +1896,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/menus/ObjectMenu/TimeSig/ChooseTimeSignature
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/TimeSig/HideTimesig
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/TimeSig/SingleDigitTimeSig
|
||||
%%DATADIR%%/actions/menus/ObjectMenu/TimeSig/TimesigWithBeatStructure
|
||||
%%DATADIR%%/actions/multilex.scm
|
||||
%%DATADIR%%/actions/musicgames/ReadingNoteNames.denemo
|
||||
%%DATADIR%%/actions/mxml2ly2denemo/import_nwctext.scm
|
||||
|
@ -1851,7 +1912,6 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/actions/testinclude.ly
|
||||
%%DATADIR%%/denemoui.xml
|
||||
%%DATADIR%%/instruments.xml
|
||||
%%DATADIR%%/manual
|
||||
%%DATADIR%%/pixmaps/accent.svg
|
||||
%%DATADIR%%/pixmaps/downbow.svg
|
||||
%%DATADIR%%/pixmaps/fermata.svg
|
||||
|
@ -1989,9 +2049,7 @@ share/applications/denemo.desktop
|
|||
%%DATADIR%%/soundfonts/A320U.sf2
|
||||
%%DATADIR%%/templates/Accordion/accordion.denemo
|
||||
%%DATADIR%%/templates/Early Music/BreveLonga.denemo
|
||||
%%DATADIR%%/templates/Makefile
|
||||
%%DATADIR%%/templates/Makefile.am
|
||||
%%DATADIR%%/templates/Makefile.in
|
||||
%%DATADIR%%/templates/Tablature.denemo
|
||||
%%DATADIR%%/templates/band/BrassBand.denemo
|
||||
%%DATADIR%%/templates/band/BrassTrio.denemo
|
||||
%%DATADIR%%/templates/chamber/StringQuartet.denemo
|
||||
|
@ -2134,6 +2192,7 @@ share/applications/denemo.desktop
|
|||
%%PORTDOCS%%%%DOCSDIR%%/manual/images/verylongfermata.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/manual/images/warning.png
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/AbbreviatedNotes.denemo
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/AllFeaturesExplained.denemo
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CautionaryAccidental.denemo
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Cues.denemo
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ForcingBreaks.denemo
|
||||
|
@ -2241,6 +2300,7 @@ share/pixmaps/denemo.png
|
|||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu
|
||||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats
|
||||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu
|
||||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Lyrics
|
||||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Key
|
||||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/Voices
|
||||
@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/Tuning
|
||||
|
|
Loading…
Add table
Reference in a new issue