abcjs 6.6.3 → 6.6.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 +29 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +460 -143
- 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_timing_callbacks.js +45 -15
- package/src/parse/abc_parse.js +2 -0
- package/src/parse/abc_parse_header.js +3 -1
- package/src/parse/abc_parse_key_voice.js +35 -0
- package/src/synth/chord-track.js +379 -130
- package/src/synth/create-synth.js +14 -8
- package/src/synth/repeats.js +2 -2
- package/src/write/draw/print-line.js +1 -2
- package/src/write/draw/print-stem.js +1 -1
- package/src/write/engraver-controller.js +1 -1
- package/src/write/renderer.js +1 -1
- package/types/index.d.ts +133 -34
- package/version.js +1 -1
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
# Version 6.6.4
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* Be able to escape the percent sign.
|
|
6
|
+
|
|
7
|
+
* Make the lines a little thicker in Firefox because it has rendering problems.
|
|
8
|
+
|
|
9
|
+
* fix inline meter & key signature change rendering in grand staff
|
|
10
|
+
|
|
11
|
+
* Fix swung note positioning when using pickup notes.
|
|
12
|
+
|
|
13
|
+
* Fix inline key changes leaking between voices
|
|
14
|
+
|
|
15
|
+
* Add debugging info for mysterious timing callback crash
|
|
16
|
+
|
|
17
|
+
* When doing callbacks, respect new tempo when replacing a tune and there isn't an explicit tempo set.
|
|
18
|
+
|
|
19
|
+
* Fix bug in sequencing repeats when there is a start repeat at the same place as an end repeat.
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
* Add many more chords when generating synth. (thx michaeljmachado)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
* Improve AbcElem typescript definition
|
|
29
|
+
|
|
1
30
|
# Version 6.6.3
|
|
2
31
|
|
|
3
32
|
## Bugs
|