abcjs 6.5.2 → 6.6.0
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 +6 -0
- package/RELEASE.md +26 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +1177 -170
- 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_timing_callbacks.js +88 -13
- package/src/const/relative-major.js +24 -19
- package/src/data/abc_tune.js +12 -1
- package/src/data/deline-tune.js +1 -1
- package/src/midi/abc_midi_create.js +2 -2
- package/src/parse/abc_parse.js +20 -0
- package/src/parse/chord-grid.js +364 -0
- package/src/parse/tune-builder.js +1 -1
- package/src/str/output.js +98 -62
- package/src/synth/abc_midi_sequencer.js +20 -30
- package/src/synth/create-synth.js +1 -1
- package/src/synth/repeats.js +200 -0
- package/src/write/creation/abstract-engraver.js +4 -1
- package/src/write/draw/chord-grid.js +252 -0
- package/src/write/draw/draw.js +48 -35
- package/src/write/draw/text.js +1 -1
- package/src/write/engraver-controller.js +4 -2
- package/src/write/layout/beam.js +16 -1
- package/src/write/renderer.js +4 -0
- package/src/write/svg.js +8 -1
- package/types/index.d.ts +25 -0
- package/version.js +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,12 @@ 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.6.0
|
|
14
|
+
|
|
15
|
+
This has the new feature `chordGrid`, which is a view of the chords similar to some of the trad jazz lead sheets. If you have `chordGrid: "noMusic"` then only the chords will show, if you have `chordGrid: "withMusic"` then the chords will print above the standard music.
|
|
16
|
+
|
|
17
|
+
There is also completely new handling for the repeated sections that can handle more complicated repeating patterns. This should make more charts play correctly but it might cause an issue if you are counting on the old behavior.
|
|
18
|
+
|
|
13
19
|
## Announcement: version 6.4.0
|
|
14
20
|
|
|
15
21
|
The method for creating chord accompaniment has changed. Hopefully there aren't any regressions but if you have an example that doesn't match what it used to be, please open an issue.
|
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# Version 6.6.0
|
|
2
|
+
|
|
3
|
+
## Features
|
|
4
|
+
|
|
5
|
+
* Created a chord grid view with the parameter `chordGrid`.
|
|
6
|
+
|
|
7
|
+
* Improved the handling of repeated sections to handle third endings, and constructions like `1-3` and `1,2`.
|
|
8
|
+
|
|
9
|
+
## Bugs
|
|
10
|
+
|
|
11
|
+
* Fixed transposing bugs: Aeolian mode; `clef=` on `K:` line; bugs when there are spaces in unexpected places.
|
|
12
|
+
|
|
13
|
+
* Fix suppressing the tempo when %%printtempo 0 is specified.
|
|
14
|
+
|
|
15
|
+
* Fix an issue with wrong TimingCallbacks startTime
|
|
16
|
+
|
|
17
|
+
* Updated algorithm to determine direction of single beams
|
|
18
|
+
|
|
19
|
+
* Fixed bug where TimingCallbacks gets one last call after it has been stopped.
|
|
20
|
+
|
|
21
|
+
* Handle 5/8 and 7/8 better in TimingCallbacks.
|
|
22
|
+
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
* Moved documentation to https://codeberg.org/abcjs/abcjs-docs
|
|
26
|
+
|
|
1
27
|
# Version 6.5.2
|
|
2
28
|
|
|
3
29
|
## Bugs
|