mirror of
https://github.com/sshlien/abcmidi.git
synced 2026-04-19 08:13:42 +00:00
2024.12.22
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
6
store.c
6
store.c
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user