abcjs 6.3.0 → 6.4.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/README.md +4 -0
- package/RELEASE.md +52 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +1031 -622
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/index.js +1 -0
- package/package.json +1 -1
- package/src/api/tune-metrics.js +18 -0
- package/src/data/abc_tune.js +13 -2
- package/src/edit/abc_editarea.js +4 -1
- package/src/parse/abc_parse.js +2 -0
- package/src/parse/abc_parse_directive.js +6 -0
- package/src/synth/abc_midi_flattener.js +40 -462
- package/src/synth/abc_midi_sequencer.js +25 -10
- package/src/synth/chord-track.js +565 -0
- package/src/synth/create-note-map.js +2 -1
- package/src/synth/create-synth.js +91 -42
- package/src/test/abc_parser_lint.js +1 -0
- package/src/write/creation/abstract-engraver.js +4 -1
- package/src/write/creation/decoration.js +3 -2
- package/src/write/creation/elements/tie-element.js +23 -0
- package/src/write/draw/draw.js +1 -1
- package/src/write/engraver-controller.js +9 -5
- package/src/write/interactive/create-analysis.js +50 -0
- package/src/write/interactive/find-selectable-element.js +24 -0
- package/src/write/interactive/selection.js +5 -45
- package/src/write/layout/layout-in-grid.js +83 -0
- package/src/write/layout/layout.js +29 -24
- package/src/write/layout/set-upper-and-lower-elements.js +2 -0
- package/src/write/layout/staff-group.js +2 -2
- package/src/write/layout/voice-elements.js +1 -1
- package/src/write/layout/voice.js +1 -1
- package/src/write/renderer.js +3 -0
- package/types/index.d.ts +96 -32
- package/version.js +1 -1
- package/abc2xml_239/abc2xml.html +0 -769
- package/abc2xml_239/abc2xml.py +0 -2248
- package/abc2xml_239/abc2xml_changelog.html +0 -124
- package/abc2xml_239/lazy-river.abc +0 -26
- package/abc2xml_239/lazy-river.xml +0 -3698
- package/abc2xml_239/mean-to-me.abc +0 -22
- package/abc2xml_239/mean-to-me.xml +0 -2954
- package/abc2xml_239/pyparsing.py +0 -3672
- package/abc2xml_239/pyparsing.pyc +0 -0
- package/temp.txt +0 -50
|
Binary file
|
package/temp.txt
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
## Features
|
|
2
|
-
|
|
3
|
-
### Tablature
|
|
4
|
-
* Add tab feature `hideTabSymbol`
|
|
5
|
-
* Add 5-string tab named "fiveString"
|
|
6
|
-
* Make "mandolin" and "fiddle" synonyms for "violin" in tablature.
|
|
7
|
-
|
|
8
|
-
### Synth
|
|
9
|
-
* change the default synth control options for "play" and "progress" to be true
|
|
10
|
-
* expose the MIDI creator function
|
|
11
|
-
* Add a `getIsRunning()` function to enable play/pause
|
|
12
|
-
* allow passing in soundfont and debug callback when playing an event directly.
|
|
13
|
-
|
|
14
|
-
### Rich Text
|
|
15
|
-
* allow up to 9 custom fonts in `%%setfont`
|
|
16
|
-
* for rich text fields, escape two dollar signs
|
|
17
|
-
* allow rich text in all non-music fields
|
|
18
|
-
* give all non-music fields a unique class
|
|
19
|
-
|
|
20
|
-
### Miscellaneous
|
|
21
|
-
* add abcjs-notehead class to note heads;
|
|
22
|
-
* add `accentAbove` parameter
|
|
23
|
-
* handle numbered tune names in the reverser
|
|
24
|
-
* support reversing tune names with ", a" and ", an", with a variable amount of whitespace and case-insensitive
|
|
25
|
-
* Add Glissando Synonyms
|
|
26
|
-
* Put start and end char on slurs so they can be selected.
|
|
27
|
-
* Add `expandToWidest` option
|
|
28
|
-
|
|
29
|
-
## Bugs
|
|
30
|
-
* fix placement of tab staff when there is no label
|
|
31
|
-
* fix font placement bugs
|
|
32
|
-
* remove spurious quotes in font name in svg attribute
|
|
33
|
-
* Fix the name of the `abcjs-tab-number` class
|
|
34
|
-
* fix crash when skipping a staff when creating tablature
|
|
35
|
-
* Fix tab staff height when there is a label
|
|
36
|
-
* Fix for crash when rendering multiple tab staves
|
|
37
|
-
* Offset breath mark to the right
|
|
38
|
-
* Center text when using `expandToWidest` set true
|
|
39
|
-
* fix placement of triangle notehead
|
|
40
|
-
* `afterParsing` now works with line wrapping.
|
|
41
|
-
* Add paddingleft to the size of the SVG - it was cut off if the padding was larger than the default.
|
|
42
|
-
* Guard against crash when the synth note wasn't loaded.
|
|
43
|
-
* protect against spurious mouse click in selection
|
|
44
|
-
* Fix bug in Firefox that cuts off the last line of the SVG
|
|
45
|
-
|
|
46
|
-
## Documentation
|
|
47
|
-
* add missing typescript types
|
|
48
|
-
* fix synth control types
|
|
49
|
-
* fixed some typescript types in the TimingCallbacks
|
|
50
|
-
* TimingEvent is now NoteTimingEvent
|