1
0
Fork 0
mirror of https://github.com/kastdeur/lilydrum.git synced 2025-05-17 13:29:12 +02:00

Changed setup for five scores

Morag of Dunvegan
Farewell to Camraw
The Mist Covered Mountains
Molly Connell
Lady MacKenzie of Fairburn

Note that Fairburn also has the tune itself. Fullscore prints nicely!
This commit is contained in:
Eric Teunis de Boone 2015-11-09 05:59:05 +01:00
parent 637d6fbdcc
commit 81255889cf
54 changed files with 829 additions and 651 deletions

View file

@ -10,7 +10,7 @@ from argparse import ArgumentParser
class MakeDrum:
LILYPOND = 'lilypond'
VERSION = '0.7'
VERSION = '0.9'
TMP_DIR = './tmp'
TMP_PREFIX = 'tmp_'
MASTER_DIR = os.path.dirname(os.path.abspath(__file__))
@ -154,11 +154,11 @@ class MakeDrum:
include_drum_file = False
include_pipe_file = False
# find out whether drum, pipes, or full score
for ext in ['.full', '.side', '.tenor', '.bass', '.drum', '.snare']:
for ext in ['full', 'side', 'tenor', 'bass', 'drum', 'snare']:
if ext in file:
include_drum_file = True
for ext in ['.full', '.pipes']:
for ext in ['full', 'pipes']:
if ext in file:
include_pipe_file = True