abcjs 6.2.0 → 6.2.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/LICENSE.md +1 -1
- package/README.md +3 -0
- package/RELEASE.md +31 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic-min.js.LICENSE +1 -1
- package/dist/abcjs-basic.js +89 -22
- 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_tablatures.js +2 -0
- 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/tablatures/tab-renderer.js +1 -0
- package/src/write/draw/print-line.js +19 -0
- package/src/write/draw/print-stem.js +18 -0
- package/src/write/engraver-controller.js +5 -3
- package/src/write/interactive/selection.js +7 -4
- package/src/write/renderer.js +1 -0
- package/src/write/svg.js +10 -0
- package/test.js +1 -1
- package/types/index.d.ts +2 -2
- package/version.js +1 -1
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,9 @@ Full documentation is here: [abcjs documentation](https://paulrosen.github.io/ab
|
|
|
10
10
|
|
|
11
11
|
There is an organization that has a collection of useful projects related to abcjs called [abcjs-music](https://github.com/abcjs-music). See some examples there. If you have a project that you think would be of general interest and would like to add it to that organization, contact me.
|
|
12
12
|
|
|
13
|
+
## Announcement: version 6.2.2
|
|
14
|
+
|
|
15
|
+
There was a major bug in Firefox 112 that causes some lines to disappear. That is supposed to be fixed in Firefox 113 but in the meantime this update will take care of the problem.
|
|
13
16
|
## Announcement: version 6.1.2
|
|
14
17
|
|
|
15
18
|
There is a little difference in the generated SVG: Now each line is surrounded with a `<g>` element. This probably won't affect your program unless you are doing very specific manipulation of the SVG.
|
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
# Version 6.2.2
|
|
2
|
+
|
|
3
|
+
## Features
|
|
4
|
+
|
|
5
|
+
* Make "mandolin" and "fiddle" synonyms for "violin" in tablature.
|
|
6
|
+
|
|
7
|
+
## Bugs
|
|
8
|
+
|
|
9
|
+
* Don't draw staff line for tabs twice if there are two voices on it.
|
|
10
|
+
|
|
11
|
+
* make the staff line the correct width in Firefox.
|
|
12
|
+
|
|
13
|
+
* Fix bug in Firefox that causes staff lines, bar lines, and stems to be missing.
|
|
14
|
+
|
|
15
|
+
* Fix bug in Firefox that cuts off the last line of the SVG.
|
|
16
|
+
# Version 6.2.1
|
|
17
|
+
|
|
18
|
+
## Bugs
|
|
19
|
+
|
|
20
|
+
* don't crash if "capo" is passed in to tablature as a string
|
|
21
|
+
|
|
22
|
+
* fix possible crash if setTiming is called before engraving
|
|
23
|
+
|
|
24
|
+
* Fix bug in Firefox 112 that causes lines to be missing.
|
|
25
|
+
|
|
26
|
+
* Add more debug messages when creating synth
|
|
27
|
+
|
|
28
|
+
* Fix type of prime return
|
|
29
|
+
|
|
30
|
+
* Protect against crash when selecting an element if the element selected is somehow outside of the music svg.
|
|
31
|
+
|
|
1
32
|
# Version 6.2.0
|
|
2
33
|
|
|
3
34
|
## Features
|