mirror of
https://github.com/sshlien/abcmidi.git
synced 2026-04-18 07:43:42 +00:00
2023.01.10
This commit is contained in:
@@ -15031,5 +15031,9 @@ called from abc2abc and return 0. The function parseother(),
|
|||||||
which is called from parsevoice() or parsekey(), will output
|
which is called from parsevoice() or parsekey(), will output
|
||||||
all other directives in the K: or V: command.
|
all other directives in the K: or V: command.
|
||||||
|
|
||||||
|
January 10 2023
|
||||||
|
|
||||||
|
abcmidi: in event_handle_instruction(s), added code to recognize
|
||||||
|
!ped(! and !ped)! in addition to !ped! and !ped-up!
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
abcMIDI : abc <-> MIDI conversion utilities
|
abcMIDI : abc <-> MIDI conversion utilities
|
||||||
|
|
||||||
midi2abc version 3.58 December 09 2022
|
midi2abc version 3.58 December 09 2022
|
||||||
abc2midi version 4.82 January 06 2023
|
abc2midi version 4.83 January 06 2023
|
||||||
abc2abc version 2.19 January 08 2023
|
abc2abc version 2.19 January 08 2023
|
||||||
yaps version 1.92 January 06 2023
|
yaps version 1.92 January 06 2023
|
||||||
abcmatch version 1.82 June 14 2022
|
abcmatch version 1.82 June 14 2022
|
||||||
|
|||||||
15
store.c
15
store.c
@@ -186,7 +186,7 @@ int main()
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "4.82 January 06 2023 abc2midi"
|
#define VERSION "4.83 January 10 2023 abc2midi"
|
||||||
|
|
||||||
/* enables reading V: indication in header */
|
/* enables reading V: indication in header */
|
||||||
#define XTEN1 1
|
#define XTEN1 1
|
||||||
@@ -4694,6 +4694,13 @@ if (nofnop == 0) {
|
|||||||
done = 1;
|
done = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* [SS] 2023-01-10 */
|
||||||
|
if (strcmp(p, "ped(") == 0) {
|
||||||
|
addfeature(PEDAL_ON, 0, 0, 0);
|
||||||
|
done = 1;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/* [SS] 2011-10-19 [SS] 2018-05-02*/
|
/* [SS] 2011-10-19 [SS] 2018-05-02*/
|
||||||
if (strcmp(p, "ped-end") == 0) {
|
if (strcmp(p, "ped-end") == 0) {
|
||||||
addfeature(PEDAL_OFF, 0, 0, 0);
|
addfeature(PEDAL_OFF, 0, 0, 0);
|
||||||
@@ -4710,6 +4717,12 @@ if (nofnop == 0) {
|
|||||||
done = 1;
|
done = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* [SS] 2023-01-10 */
|
||||||
|
if (strcmp(p, "ped)") == 0) {
|
||||||
|
addfeature(PEDAL_OFF, 0, 0, 0);
|
||||||
|
done = 1;
|
||||||
|
};
|
||||||
|
|
||||||
if (strcmp(s, "breath") == 0) {
|
if (strcmp(s, "breath") == 0) {
|
||||||
decorators_passback[BREATH] =1;
|
decorators_passback[BREATH] =1;
|
||||||
done = 1;
|
done = 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user