mirror of
https://github.com/sshlien/abcmidi.git
synced 2025-12-06 06:55:06 +00:00
2024.06.12
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
4
store.c
4
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};
|
||||
|
||||
Reference in New Issue
Block a user