abcjs 6.5.0 → 6.5.2
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 +26 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +69 -28
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +1 -1
- package/src/edit/abc_editarea.js +53 -50
- package/src/edit/abc_editor.js +176 -157
- package/src/parse/transpose-chord.js +1 -1
- package/src/parse/tune-builder.js +3 -3
- package/src/str/output.js +49 -36
- package/src/synth/abc_midi_sequencer.js +2 -1
- package/types/index.d.ts +11 -3
- package/version.js +1 -1
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# Version 6.5.2
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* Add test for bug with third ending sequencing
|
|
6
|
+
|
|
7
|
+
* Fix problem with transposing chords that have spaces in them.
|
|
8
|
+
|
|
9
|
+
* Fix undefined variables.
|
|
10
|
+
|
|
11
|
+
* Fix typescript definitions
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
* Allow passing selector into the Editor in addition to ID. Add callbacks before and after drawing.
|
|
16
|
+
|
|
17
|
+
* Expose the tunes array that the Editor has.
|
|
18
|
+
|
|
19
|
+
# Version 6.5.1
|
|
20
|
+
|
|
21
|
+
## Bugs
|
|
22
|
+
|
|
23
|
+
* Fix regression crash in synth when there is both a dynamic decoration and other decoration on the same note.
|
|
24
|
+
|
|
25
|
+
* Remove debugging statement.
|
|
26
|
+
|
|
1
27
|
# Version 6.5.0
|
|
2
28
|
|
|
3
29
|
## Bugs
|