2024.12.22

This commit is contained in:
sshlien
2024-12-22 15:30:33 -05:00
parent 9b419e0128
commit 705d9e1f73
4 changed files with 6 additions and 5 deletions

View File

@@ -1 +1 @@
December 16 2024 December 22 2024

View File

@@ -15485,6 +15485,7 @@ if it cannot match MIDIx with the corresponding MIDIdef. Fix:
added a return statement after reporting the problem in event_error(msg). added a return statement after reporting the problem in event_error(msg).
December 16 2024 December 16 2024
December 22 2024
abc2midi: corrections to the sus, sus4, sus2 and sus9 chords provided abc2midi: corrections to the sus, sus4, sus2 and sus9 chords provided
by Avik Topchyan were incorporated in the function setup_chordnames() by Avik Topchyan were incorporated in the function setup_chordnames()
into store.c into store.c

View File

@@ -1274,7 +1274,7 @@ int chan, control, value;
if (prtime(timeunits)) return; if (prtime(timeunits)) return;
if (control == 6) bend2cents = 8192.0/(100.0*value); /*[SS] 2022-02-12 */ if (control == 6) bend2cents = 8192.0/(100.0*value); /*[SS] 2022-02-12 */
printf("CntlParm %2d %s = %d\n",chan+1, ctype[control],value); printf("CntlParm %2d %s = %d %d\n",chan+1, ctype[control],control,value);
} }

View File

@@ -186,7 +186,7 @@ int main()
*/ */
#define VERSION "4.96 December 16 2024 abc2midi" #define VERSION "4.96 December 22 2024 abc2midi"
/* enables reading V: indication in header */ /* enables reading V: indication in header */
#define XTEN1 1 #define XTEN1 1
@@ -870,9 +870,9 @@ static void setup_chordnames()
addchordname("dim9", 5, list_dim9); addchordname("dim9", 5, list_dim9);
addchordname("sus", 3, list_sus); /* [AT] sus is a synonym of sus4 */ addchordname("sus", 3, list_sus); /* [AT] sus is a synonym of sus4 */
addchordname("sus4", 3, list_sus4); /* [SS] 2015-07-08 [AT] 2024-12-16 */ addchordname("sus4", 3, list_sus4); /* [SS] 2015-07-08 [AT] */
addchordname("sus2", 3, list_sus2); /* [SS] 2015-07-08 [AT] 2024-12-16 */ addchordname("sus2", 3, list_sus2); /* [SS] 2015-07-08 [AT] 2024-12-16 */
addchordname("sus9", 3, list_sus9); /* [AT] 2024-12-16 */ addchordname("sus9", 4, list_sus9); /* [AT] 2024-12-16 2024-12-22*/
addchordname("7sus2", 4, list_7sus9); /* [SS] 2015-07-08 */ addchordname("7sus2", 4, list_7sus9); /* [SS] 2015-07-08 */
addchordname("7sus4", 4, list_7sus4); addchordname("7sus4", 4, list_7sus4);