abcjs 6.4.2 → 6.4.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/LICENSE.md +1 -1
- package/RELEASE.md +12 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic-min.js.LICENSE +1 -1
- package/dist/abcjs-basic.js +62 -80
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/dist/abcjs-plugin-min.js.LICENSE +1 -1
- package/index.js +1 -1
- package/license.js +1 -1
- package/package.json +1 -1
- package/plugin.js +1 -1
- package/src/data/abc_tune.js +2 -0
- package/src/parse/abc_parse_music.js +32 -17
- package/src/synth/chord-track.js +9 -0
- package/src/write/creation/elements/tie-element.js +26 -0
- package/src/write/layout/set-upper-and-lower-elements.js +8 -0
- package/test.js +1 -1
- package/types/index.d.ts +1 -1
- package/version.js +1 -1
- package/temp.txt +0 -12
package/LICENSE.md
CHANGED
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# Version 6.4.3
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* If there is a slur or tie on the top or bottom of a line, make sure there is room for it.
|
|
6
|
+
|
|
7
|
+
* Fix for crash on malformed @ positioned annotations
|
|
8
|
+
|
|
9
|
+
* Fix call of getBpm() to use the specified tempo if it isn't supplied.
|
|
10
|
+
|
|
11
|
+
* Bring bass note in range if transposed out-of-range by a visual transpose
|
|
12
|
+
|
|
1
13
|
# Version 6.4.2
|
|
2
14
|
|
|
3
15
|
## Bugs
|