abcjs 6.0.3 → 6.0.4
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 +23 -1
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +229 -22
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +1 -1
- package/src/parse/abc_parse.js +20 -9
- package/src/parse/abc_parse_music.js +1 -1
- package/src/synth/abc_midi_flattener.js +1 -1
- package/src/synth/create-note-map.js +4 -0
- package/src/test/abc_parser_lint.js +1 -1
- package/src/write/abc_abstract_engraver.js +12 -0
- package/src/write/abc_beam_element.js +24 -0
- package/src/write/abc_decoration.js +13 -0
- package/src/write/abc_glissando_element.js +7 -0
- package/src/write/draw/glissando.js +75 -0
- package/src/write/draw/voice.js +4 -0
- package/src/write/top-text.js +1 -1
- package/types/index.d.ts +12 -8
- package/version.js +1 -1
- package/temp.txt +0 -16
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Version 6.0.4
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* Fix position of staccato when a note is beamed and its stem is backwards.
|
|
6
|
+
* Write annotations above bar lines.
|
|
7
|
+
* fix placement of rhythm indicator (the R: field) on treble clef when there is nothing else above the staff.
|
|
8
|
+
* fix some broken tests; add test for staccato bug and rhythm word placement.
|
|
9
|
+
* fixed some Typescript warnings and errors
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
* Recognize backslash to escape lyrics.
|
|
14
|
+
* Add glissando
|
|
15
|
+
* pass back the start and end char positions with the audio callbacks.
|
|
16
|
+
|
|
17
|
+
## Documentation
|
|
18
|
+
|
|
19
|
+
* Add example of adding note names to a tune automatically.
|
|
20
|
+
* Add a mention for the VSCode extension.
|
|
21
|
+
* Add tune book example.
|
|
22
|
+
|
|
1
23
|
# Version 6.0.3
|
|
2
24
|
|
|
3
25
|
## Bugs
|
|
@@ -12,7 +34,7 @@
|
|
|
12
34
|
|
|
13
35
|
## Features
|
|
14
36
|
|
|
15
|
-
* Quotation
|
|
37
|
+
* Quotation mark in a chord can be escaped.
|
|
16
38
|
|
|
17
39
|
## Documentation
|
|
18
40
|
|