2024.06.12

This commit is contained in:
sshlien
2024-06-12 12:43:40 -04:00
parent 13c93c3d74
commit 7b8785ce0d
5 changed files with 10 additions and 7 deletions

View File

@@ -1 +1 @@
June 06 2024 June 12 2024

View File

@@ -15468,4 +15468,7 @@ parser2.c, store.c, toabc.c. and yapstree.c. Look for the comments
[JA] 2024-04-30. [JA] 2024-04-30.
June 11 2024
abc2midi: corrected the sus4 chord in store.c

View File

@@ -1,12 +1,12 @@
abcMIDI : abc <-> MIDI conversion utilities abcMIDI : abc <-> MIDI conversion utilities
midi2abc version 3.59 February 08 2023 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 abc2abc version 2.22 April 30 2024
yaps version 1.94 April 30 2024 yaps version 1.94 April 30 2024
abcmatch version 1.83 February 19 2024 abcmatch version 1.83 February 19 2024
midicopy version 1.39 November 08 2022 midicopy version 1.39 November 08 2022
midistats version 0.93 June 06 2024 midistats version 0.94 June 11 2024
24th January 2002 24th January 2002
Copyright James Allwright Copyright James Allwright

View File

@@ -17,7 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * 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 /* midistrats.c is a descendent of midi2abc.c which was becoming to
large. The object of the program is to extract statistical characterisitic large. The object of the program is to extract statistical characterisitic
@@ -358,7 +358,7 @@ char *mode;
if ( (f=fopen(name,mode)) == NULL ) { if ( (f=fopen(name,mode)) == NULL ) {
char msg[256]; char msg[256];
sprintf(msg,"Error - Cannot open file %s",name); sprintf(msg,"Error: - Cannot open file %s",name);
fatal_error(msg); fatal_error(msg);
} }
return(f); return(f);

View File

@@ -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 */ /* enables reading V: indication in header */
#define XTEN1 1 #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_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_dim9[5] = {0, 3, 6, 9, 13}; /* [SS] 2016-02-08 */
static int list_sus[3] = {0, 5, 7}; 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_sus9[3] = {0, 2, 7};
static int list_7sus4[4] = {0, 5, 7, 10}; static int list_7sus4[4] = {0, 5, 7, 10};
static int list_7sus9[4] = {0, 2, 7, 10}; static int list_7sus9[4] = {0, 2, 7, 10};