abcjs 6.1.8 → 6.1.9
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 +24 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +58 -16
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +6 -6
- package/src/midi/abc_midi_create.js +8 -2
- package/src/parse/abc_parse_music.js +1 -1
- package/src/parse/abc_transpose.js +14 -3
- package/src/synth/abc_midi_sequencer.js +1 -1
- package/src/test/abc_parser_lint.js +1 -1
- package/src/write/abc_decoration.js +20 -4
- package/src/write/abc_relative_element.js +1 -0
- package/src/write/draw/relative.js +1 -1
- package/src/write/selection.js +3 -3
- package/types/index.d.ts +64 -16
- package/version.js +1 -1
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# Version 6.1.9
|
|
2
|
+
|
|
3
|
+
## Features
|
|
4
|
+
|
|
5
|
+
* Add decorations for !D.C.alcoda!, !D.C.alfine!, !D.S.alcoda! and !D.S.alfine!
|
|
6
|
+
|
|
7
|
+
## Bugs
|
|
8
|
+
|
|
9
|
+
* keep transposing from crashing when K:none.
|
|
10
|
+
|
|
11
|
+
* mark the touch events as passive to prevent jank.
|
|
12
|
+
|
|
13
|
+
* fix crash when the M: line is missing and drum intro is used.
|
|
14
|
+
|
|
15
|
+
* fix midi output when using percussion voice.
|
|
16
|
+
|
|
17
|
+
## Documentation
|
|
18
|
+
|
|
19
|
+
* Improved the typescript types somewhat.
|
|
20
|
+
|
|
21
|
+
* Upgrade VuePress.
|
|
22
|
+
|
|
23
|
+
* Fix link for new synth in the docs.
|
|
24
|
+
|
|
1
25
|
# Version 6.1.8
|
|
2
26
|
|
|
3
27
|
## Features
|