Overview
| Comment: | Fixed a bug that prevented sharps and flats from working |
|---|---|
| Timelines: | family | ancestors | descendants | both | develop |
| Files: | files | file ages | folders |
| SHA1: |
bf135b5321a32d06a8953b74eafbd80e |
| User & Date: | brian on 2011-11-27 02:26:33.232 |
| Other Links: | branch diff | manifest | tags |
Context
|
2011-11-27
| ||
| 02:56 | Fixed chord support check-in: 8f28834102 user: brian tags: develop | |
| 02:26 | Fixed a bug that prevented sharps and flats from working check-in: bf135b5321 user: brian tags: develop | |
| 02:03 | Added a volume offset parameter to each instrument. Fixed a bug that kept instruments from always being rendered, and one that broke midi files. check-in: 821ac3e4d6 user: brian tags: develop | |
Changes
Modified parse.py
from [ce9611a745]
to [4cca2f3d0c].
| ︙ | |||
120 121 122 123 124 125 126 | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | - + + - + |
note.syncopate = p[2]
def p_accidental(p):
'''note : ACCIDENTAL note
'''
if p[1] == "^":
|
| ︙ |
Modified spiffyscore.py
from [58892e1cd4]
to [8b19298d3a].
| ︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + + + + + + + + - + |
random.seed(time.time())
mymidi = midifile(15)
def main():
composition = {
"intro": {
"body": {
"percusion": {
"channel": 14,
"octave": 4,
"duration": 60,
"grammars": {
"u": ["A ^A (u)"]
}
},
|
| ︙ |