abcjs 6.2.2 → 6.2.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/RELEASE.md +39 -0
- package/abc2xml_239/abc2xml.html +769 -0
- package/abc2xml_239/abc2xml.py +2248 -0
- package/abc2xml_239/abc2xml_changelog.html +124 -0
- package/abc2xml_239/lazy-river.abc +26 -0
- package/abc2xml_239/lazy-river.xml +3698 -0
- package/abc2xml_239/mean-to-me.abc +22 -0
- package/abc2xml_239/mean-to-me.xml +2954 -0
- package/abc2xml_239/pyparsing.py +3672 -0
- package/abc2xml_239/pyparsing.pyc +0 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +160 -71
- 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_tablatures.js +3 -0
- package/src/api/abc_tunebook_svg.js +5 -3
- package/src/parse/abc_parse_music.js +18 -53
- package/src/parse/abc_parse_settings.js +165 -0
- package/src/synth/create-synth.js +4 -0
- package/src/synth/place-note.js +6 -0
- package/src/synth/play-event.js +7 -5
- package/src/tablatures/tab-absolute-elements.js +3 -2
- package/src/tablatures/tab-renderer.js +2 -1
- package/src/test/abc_parser_lint.js +12 -12
- package/src/write/creation/abstract-engraver.js +6 -0
- package/src/write/creation/decoration.js +2 -0
- package/src/write/creation/glyphs.js +1 -1
- package/src/write/draw/glissando.js +1 -0
- package/src/write/draw/set-paper-size.js +1 -1
- package/src/write/draw/tie.js +9 -1
- package/src/write/engraver-controller.js +7 -1
- package/src/write/interactive/selection.js +6 -0
- package/src/write/layout/layout.js +33 -3
- package/types/index.d.ts +28 -20
- package/version.js +1 -1
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
# Version 6.2.3
|
|
2
|
+
|
|
3
|
+
## Features
|
|
4
|
+
|
|
5
|
+
* Add expandToWidest option
|
|
6
|
+
|
|
7
|
+
* Added synonyms for glissando: ~( and ~)
|
|
8
|
+
|
|
9
|
+
* allow passing in soundfont and debug callback when playing an event directly.
|
|
10
|
+
|
|
11
|
+
* Add a `getIsRunning()` function to enable play/pause
|
|
12
|
+
|
|
13
|
+
## Bugs
|
|
14
|
+
|
|
15
|
+
* fix placement of triangle notehead
|
|
16
|
+
|
|
17
|
+
* Guard against crash when the synth note wasn't loaded.
|
|
18
|
+
|
|
19
|
+
* fix crash when skipping a staff when creating tablature
|
|
20
|
+
|
|
21
|
+
* protect against spurious mouse click in selection
|
|
22
|
+
|
|
23
|
+
* Add paddingleft to the size of the SVG - it was cut off if the padding was larger than the default.
|
|
24
|
+
|
|
25
|
+
* various typescript fixes
|
|
26
|
+
|
|
27
|
+
* afterParsing now works with line wrapping.
|
|
28
|
+
|
|
29
|
+
* Put start and end char on slurs so they can be selected.
|
|
30
|
+
|
|
31
|
+
* fixed type of timing callback: TimingEvent is now NoteTimingEvent
|
|
32
|
+
|
|
33
|
+
## Documentation
|
|
34
|
+
|
|
35
|
+
* Add tablature to typescript types
|
|
36
|
+
|
|
37
|
+
* add missing items to documentation
|
|
38
|
+
|
|
1
39
|
# Version 6.2.2
|
|
2
40
|
|
|
3
41
|
## Features
|
|
@@ -13,6 +51,7 @@
|
|
|
13
51
|
* Fix bug in Firefox that causes staff lines, bar lines, and stems to be missing.
|
|
14
52
|
|
|
15
53
|
* Fix bug in Firefox that cuts off the last line of the SVG.
|
|
54
|
+
|
|
16
55
|
# Version 6.2.1
|
|
17
56
|
|
|
18
57
|
## Bugs
|