diff --git a/VERSION b/VERSION index 1382145..b35fffa 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -June 06 2024 +June 12 2024 diff --git a/doc/CHANGES b/doc/CHANGES index 9a8e2f7..d0b94e7 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -15468,4 +15468,7 @@ parser2.c, store.c, toabc.c. and yapstree.c. Look for the comments [JA] 2024-04-30. +June 11 2024 + +abc2midi: corrected the sus4 chord in store.c diff --git a/doc/readme.txt b/doc/readme.txt index c90c711..a16585f 100644 --- a/doc/readme.txt +++ b/doc/readme.txt @@ -1,12 +1,12 @@ abcMIDI : abc <-> MIDI conversion utilities midi2abc version 3.59 February 08 2023 -abc2midi version 4.92 April 30 2024 +abc2midi version 4.93 June 11 2024 abc2abc version 2.22 April 30 2024 yaps version 1.94 April 30 2024 abcmatch version 1.83 February 19 2024 midicopy version 1.39 November 08 2022 -midistats version 0.93 June 06 2024 +midistats version 0.94 June 11 2024 24th January 2002 Copyright James Allwright diff --git a/midistats.c b/midistats.c index c764a6f..c3eb3ba 100644 --- a/midistats.c +++ b/midistats.c @@ -17,7 +17,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ -#define VERSION "0.93 June 07 2024 midistats" +#define VERSION "0.94 June 12 2024 midistats" /* midistrats.c is a descendent of midi2abc.c which was becoming to large. The object of the program is to extract statistical characterisitic @@ -358,7 +358,7 @@ char *mode; if ( (f=fopen(name,mode)) == NULL ) { char msg[256]; - sprintf(msg,"Error - Cannot open file %s",name); + sprintf(msg,"Error: - Cannot open file %s",name); fatal_error(msg); } return(f); diff --git a/store.c b/store.c index a5168f0..9de6077 100755 --- a/store.c +++ b/store.c @@ -186,7 +186,7 @@ int main() */ -#define VERSION "4.92 April 30 2024 abc2midi" +#define VERSION "4.93 June 06 2024 abc2midi" /* enables reading V: indication in header */ #define XTEN1 1 @@ -839,7 +839,7 @@ static void setup_chordnames() static int list_11[6] = {0, 4, 7, 10, 14, 17}; static int list_dim9[5] = {0, 3, 6, 9, 13}; /* [SS] 2016-02-08 */ static int list_sus[3] = {0, 5, 7}; - static int list_sus4[3] = {0, 4, 7}; /* [SS] 2015-07-08 */ + static int list_sus4[3] = {0, 3, 5}; /* [SS] 2015-07-08 2024-06-11 */ static int list_sus9[3] = {0, 2, 7}; static int list_7sus4[4] = {0, 5, 7, 10}; static int list_7sus9[4] = {0, 2, 7, 10};