abcjs 6.2.0 → 6.2.1
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 +16 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic-min.js.LICENSE +1 -1
- package/dist/abcjs-basic.js +61 -19
- 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/api/abc_timing_callbacks.js +1 -1
- package/src/data/abc_tune.js +1 -1
- package/src/synth/create-synth.js +30 -4
- package/src/synth/load-note.js +1 -1
- package/src/synth/place-note.js +10 -2
- package/src/tablatures/instruments/string-patterns.js +1 -1
- package/src/write/draw/print-line.js +10 -0
- package/src/write/draw/print-stem.js +10 -0
- package/src/write/interactive/selection.js +7 -4
- package/src/write/renderer.js +1 -0
- package/test.js +1 -1
- package/types/index.d.ts +1 -1
- package/version.js +1 -1
package/LICENSE.md
CHANGED
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Version 6.2.1
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* don't crash if "capo" is passed in to tablature as a string
|
|
6
|
+
|
|
7
|
+
* fix possible crash if setTiming is called before engraving
|
|
8
|
+
|
|
9
|
+
* Fix bug in Firefox 112 that causes lines to be missing.
|
|
10
|
+
|
|
11
|
+
* Add more debug messages when creating synth
|
|
12
|
+
|
|
13
|
+
* Fix type of prime return
|
|
14
|
+
|
|
15
|
+
* Protect against crash when selecting an element if the element selected is somehow outside of the music svg.
|
|
16
|
+
|
|
1
17
|
# Version 6.2.0
|
|
2
18
|
|
|
3
19
|
## Features
|