abcjs 6.2.2 → 6.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE.md +39 -0
- package/abc2xml_239/abc2xml.html +769 -0
- package/abc2xml_239/abc2xml.py +2248 -0
- package/abc2xml_239/abc2xml_changelog.html +124 -0
- package/abc2xml_239/lazy-river.abc +26 -0
- package/abc2xml_239/lazy-river.xml +3698 -0
- package/abc2xml_239/mean-to-me.abc +22 -0
- package/abc2xml_239/mean-to-me.xml +2954 -0
- package/abc2xml_239/pyparsing.py +3672 -0
- package/abc2xml_239/pyparsing.pyc +0 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +160 -71
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +1 -1
- package/src/api/abc_tablatures.js +3 -0
- package/src/api/abc_tunebook_svg.js +5 -3
- package/src/parse/abc_parse_music.js +18 -53
- package/src/parse/abc_parse_settings.js +165 -0
- package/src/synth/create-synth.js +4 -0
- package/src/synth/place-note.js +6 -0
- package/src/synth/play-event.js +7 -5
- package/src/tablatures/tab-absolute-elements.js +3 -2
- package/src/tablatures/tab-renderer.js +2 -1
- package/src/test/abc_parser_lint.js +12 -12
- package/src/write/creation/abstract-engraver.js +6 -0
- package/src/write/creation/decoration.js +2 -0
- package/src/write/creation/glyphs.js +1 -1
- package/src/write/draw/glissando.js +1 -0
- package/src/write/draw/set-paper-size.js +1 -1
- package/src/write/draw/tie.js +9 -1
- package/src/write/engraver-controller.js +7 -1
- package/src/write/interactive/selection.js +6 -0
- package/src/write/layout/layout.js +33 -3
- package/types/index.d.ts +28 -20
- package/version.js +1 -1
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<!DOCTYPE HTML><html><head><meta charset="utf-8"></head>
|
|
2
|
+
<body><pre>2023-03-29
|
|
3
|
+
|
|
4
|
+
* Revision: 239
|
|
5
|
+
- added a list of diagnostic messages (global info_list)
|
|
6
|
+
- only use sys.stdin.buffer when stdin is available (i.e. when run as main
|
|
7
|
+
program on the command line)
|
|
8
|
+
- only write diagnostic messages to stdout when run as main program
|
|
9
|
+
- added function getInfo() to read and clear the diagnostic messages when
|
|
10
|
+
abc2xml is imported as a library
|
|
11
|
+
|
|
12
|
+
2022-09-27
|
|
13
|
+
|
|
14
|
+
* Revision: 238
|
|
15
|
+
- made pyparsing library (2.0.1) compatible with python 3.10 In version 3.10
|
|
16
|
+
the MutableMapping class was removed from the collections module.
|
|
17
|
+
|
|
18
|
+
2022-05-14
|
|
19
|
+
|
|
20
|
+
* Revision: 237
|
|
21
|
+
- explicitly merge a backwards repeat when it appears at the end of an empty
|
|
22
|
+
overlay measure
|
|
23
|
+
|
|
24
|
+
2022-01-21
|
|
25
|
+
|
|
26
|
+
* Revision: 236
|
|
27
|
+
- implement a separate slur stack for each overlay voice
|
|
28
|
+
|
|
29
|
+
* Revision: 235
|
|
30
|
+
- bug: slur numbers were wrong in voice overlay (reported by Chris Spencer)
|
|
31
|
+
|
|
32
|
+
2021-11-24
|
|
33
|
+
|
|
34
|
+
* Revision: 234
|
|
35
|
+
- accept '-' as valid ABC input file name for reading from standard input
|
|
36
|
+
|
|
37
|
+
2021-09-30
|
|
38
|
+
|
|
39
|
+
* Revision: 233
|
|
40
|
+
- retrieve score title from xml document when writing the output file when
|
|
41
|
+
the -t option is present (allows -t and -m to be used together)
|
|
42
|
+
- split a tune collection only on X: when it occurs at the beginning of a line
|
|
43
|
+
|
|
44
|
+
2021-09-01
|
|
45
|
+
|
|
46
|
+
* Revision: 232
|
|
47
|
+
- correctly translate shorted tuplet notation (p:q
|
|
48
|
+
|
|
49
|
+
2021-05-28
|
|
50
|
+
|
|
51
|
+
* Revision: 231
|
|
52
|
+
- added grammer for 13th chords
|
|
53
|
+
- also recognize min6, min7, etc in addition to m6 m7 etc.
|
|
54
|
+
|
|
55
|
+
2021-05-27
|
|
56
|
+
|
|
57
|
+
* Revision: 230
|
|
58
|
+
- added translation of sus chords (sus, sus4 and sus2)
|
|
59
|
+
|
|
60
|
+
2020-11-15
|
|
61
|
+
|
|
62
|
+
* Revision: 229
|
|
63
|
+
- added support for melisma's (contibuted by Michael Strasser) The
|
|
64
|
+
translation uses the lyric type attribute from MusicXML 3.0 for precise
|
|
65
|
+
layout, which is unfortunately not supported by MuseScore 3.5.2
|
|
66
|
+
|
|
67
|
+
2020-07-23
|
|
68
|
+
|
|
69
|
+
* Revision: 228
|
|
70
|
+
- merged patch from Martin Tarenskeen with various corrections for Python3
|
|
71
|
+
- bug: single slash division resulting in floats for <duration>
|
|
72
|
+
|
|
73
|
+
2020-07-19
|
|
74
|
+
|
|
75
|
+
* Revision: 227
|
|
76
|
+
- avoid rounding in computation of durations for 7 and 9 tupplets
|
|
77
|
+
- use greatest common divisor to get the smallest <divisions> value, but not
|
|
78
|
+
smaller than 120 for backwards compatibility.
|
|
79
|
+
|
|
80
|
+
2020-05-19
|
|
81
|
+
|
|
82
|
+
* Revision: 226
|
|
83
|
+
- add dummy instrument name in mkInst(). (bug MuseScore) MuseScore
|
|
84
|
+
incorrectly places unpitched notes when no instrument name is present (empty
|
|
85
|
+
instrument-name tag).
|
|
86
|
+
|
|
87
|
+
* Revision: 225
|
|
88
|
+
- bug in parameters passing to getXmlScores and mxm.parse The bug caused
|
|
89
|
+
options -b, -f and -t to stop working. Bug introduced in revision 221, 9
|
|
90
|
+
months ago
|
|
91
|
+
|
|
92
|
+
2020-03-23
|
|
93
|
+
|
|
94
|
+
* Revision: 224
|
|
95
|
+
- a rest that lasts a full measure gets the attribute measure="yes" and does
|
|
96
|
+
not get an xml note type.
|
|
97
|
+
|
|
98
|
+
2020-03-22
|
|
99
|
+
|
|
100
|
+
* Revision: 223
|
|
101
|
+
- also output a tie element (for playback) in addition to a tied element
|
|
102
|
+
(for notation)
|
|
103
|
+
- and remove the added tie element properly when converting an illegal tie to
|
|
104
|
+
a slur
|
|
105
|
+
|
|
106
|
+
2020-03-10
|
|
107
|
+
|
|
108
|
+
* Revision: 222
|
|
109
|
+
- added translation of bass-notes in chords (slash notation)
|
|
110
|
+
|
|
111
|
+
2019-08-02
|
|
112
|
+
|
|
113
|
+
* Revision: 221
|
|
114
|
+
- cleaned up global instances
|
|
115
|
+
- added getXmlScores contributed by David Randolph
|
|
116
|
+
- update main program to use getXmlScores
|
|
117
|
+
- kept convert() backward compatible for EasyABC
|
|
118
|
+
|
|
119
|
+
2019-05-10
|
|
120
|
+
|
|
121
|
+
* Revision: 220
|
|
122
|
+
- changed the license to LGPL
|
|
123
|
+
|
|
124
|
+
</pre></body></html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
X:1321
|
|
2
|
+
T:Up A Lazy River
|
|
3
|
+
%%score Mel | H1 | H2
|
|
4
|
+
% %staffwidth 800
|
|
5
|
+
C:Hoagy Carmichael and Sidney Arodin
|
|
6
|
+
S:Copyright 1931, Hoagy Carmichael and Sidney Arodin
|
|
7
|
+
M:4/4
|
|
8
|
+
L:1/8
|
|
9
|
+
Q:1/4=96
|
|
10
|
+
K:Bb
|
|
11
|
+
V:Mel
|
|
12
|
+
B A_A|"G7"G=Bd_a gf^FG|f2=e_e-e3d|"C7"=EGBd cB_E=E|A_A2G-G4|
|
|
13
|
+
"F7"Agf_f e2^FG|d2_dc-c4|"Bb"^cdF=E "F7"_E>FA>=c|"Bb"B2DF- Fzz2|
|
|
14
|
+
"G7"G=Bd_a gf^FG|f=e2_e-e3d|"C7"=EGBd cB_E=E|A2_AG-G4|
|
|
15
|
+
"Eb"gf (3ed_d-"E°7"d4|"Bb"ba (3g^f=f-"G7"f4|"C9"=gbgd "F7"fd2F|"Bb"BBAB "G7"=B4|"C9"gbgd "F7"fFGB-|"Bb"B6z2|]
|
|
16
|
+
V: H1
|
|
17
|
+
zzz|=Bdf=b ba^AB|a2gg-g3f|GBd=e ed_G=G|c_c2B-B4|
|
|
18
|
+
caa_a g2AB|f2=e_e-e4|Bzz2czz2|Fzz2zd (3d_dc|
|
|
19
|
+
=Bdf=b ba^AB|ag2g-g3f|GBd=e ed_G=G|c2_cB-B4|
|
|
20
|
+
e3=e-e4|f3d-d4|=eeee AA3|FFFFG4|c4c4|F6z2|]
|
|
21
|
+
V:H2
|
|
22
|
+
zzz|DG=Bd dd^CD|=B2BB-B3A|C=EGB AG_C=C|=E_E2D-D4|
|
|
23
|
+
Ecd^c =c2EE|A2_AG-G4|Fzz2Azz2|dzz2zF (3F=E_E|
|
|
24
|
+
DG=Bd dd^CD|=BB2B-B3A|C=EGB AG_C=C|=E2 _ED-D4|
|
|
25
|
+
B3B-B4|d3=B-B4|cccc cc3|DDDD F4|=E4_E4|D6z2|]
|
|
26
|
+
|