Codebase list abcmidi / 4f260f3
New upstream version 20210915 Dennis Braun 2 years ago
5 changed file(s) with 14 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
0 2021 June 27 2021
0 2021 September 15 2021
11
1437014370 %%MIDI gchord ffbb
1437114371
1437214372
14373
14374
14375
14376
14373 September 15 2021
14374
14375 abc2midi bug:
14376 The last fix in June 27 2021 inserting a break introduced a new bug.
14377 The chord associated with the 'b' gchord code was missing. b and f
14378 codes were indistinguishable. Fix: removed the break in the switch
14379 statement for case b:
14380
00 abcMIDI : abc <-> MIDI conversion utilities
11
22 midi2abc version 3.48 June 27 2021
3 abc2midi version 4.59 June 27 2021
3 abc2midi version 4.60 September 15 2021
44 abc2abc version 2.15 May 25 2021
55 yaps version 1.87 May 25 2021
66 abcmatch version 1.79 May 25 2021
24112411 save_note(g_num*len, g_denom, basepitch+fun.base, 8192, fun.chan, fun.vel);
24122412 else
24132413 save_note(g_num*len, g_denom, inversion+fun.base, 8192, fun.chan, fun.vel);
2414 };
2415 break; /* [SS] 2021-06-27 */
2416 /* There is no break here so the switch statement continues into the next case 'c' */
2414 }
2415 /* break; * [SS] 2021-06-27 2021-09-15 */
2416 /* There should not be a break here so the switch statement continues into the next case 'c' */
24172417
24182418 case 'c':
24192419 /* do chord with handling of any 'inversion' note */
185185
186186 */
187187
188 #define VERSION "4.59 June 27 2021 abc2midi"
188 #define VERSION "4.60 September 15 2021 abc2midi"
189189
190190 /* enables reading V: indication in header */
191191 #define XTEN1 1