mirror of
https://github.com/sshlien/abcmidi.git
synced 2025-12-06 06:55:06 +00:00
2020.10.19
This commit is contained in:
31
doc/CHANGES
31
doc/CHANGES
@@ -13936,5 +13936,36 @@ an extern (in parseabc.h). In addition a new struct (voice_context)
|
||||
has been introduced in parseabc.h.
|
||||
|
||||
|
||||
October 19 2020
|
||||
James Allwright has implement the abc draft standard 2.2 clef parameters.
|
||||
This specifies the clef by letter and line number on which it sits.
|
||||
See http://abcnotation.com/wiki/abc:standard:v2.2#clefs . An
|
||||
example is given below.
|
||||
|
||||
X:1
|
||||
T: clef test
|
||||
M: 4/4
|
||||
L: 1/4
|
||||
K: D clef=G2
|
||||
"Treble" DEFG|AGFE|ABcd|
|
||||
K: D clef=G1
|
||||
"French violin" DEFG|AGFE|ABcd|
|
||||
K: D clef=F5
|
||||
"Sub-bass" DEFG|AGFE|ABcd|
|
||||
K: D clef=F3
|
||||
"Baritone" DEFG|AGFE|ABcd|
|
||||
|
||||
The implementation involved major changes to parseabc.c and the creation of
|
||||
new files music_utils.c and music_utils.h. The function isclef() in parseabc.c
|
||||
has been revised and now calls get_standard_clef() or
|
||||
get_extended_clef_details() that are defined in music_utils.c.
|
||||
The clef is represent by a new structure cleftype_t. parseclef() and
|
||||
event_key() defined in parseabc.c have a new parameter, a structure newclef.
|
||||
|
||||
Minor changes were made to store.c, toabc.c, matchsup.c. and debug.c.
|
||||
Significant changes were made to yapstree.c and drawtune.c.
|
||||
|
||||
The makefiles folder has been moved to legacy_code.
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
abcMIDI : abc <-> MIDI conversion utilities
|
||||
|
||||
midi2abc version 3.46 June 22 2020
|
||||
abc2midi version 4.43 October 12 2020
|
||||
abc2abc version 2.11 October 12 2020
|
||||
yaps version 1.81 October 12 2020
|
||||
abcmatch version 1.75 October 12 2020
|
||||
abc2midi version 4.44 October 19 2020
|
||||
abc2abc version 2.12 October 19 2020
|
||||
yaps version 1.82 October 19 2020
|
||||
abcmatch version 1.76 October 19 2020
|
||||
midicopy version 1.37 October 10 2020
|
||||
|
||||
24th January 2002
|
||||
@@ -14,7 +14,7 @@ J.R.Allwright@westminster.ac.uk
|
||||
University of Westminster,
|
||||
London, UK
|
||||
|
||||
February 2020
|
||||
October 2020
|
||||
|
||||
Seymour Shlien
|
||||
Ottawa, Canada
|
||||
|
||||
Reference in New Issue
Block a user