abcjs 6.4.3 → 6.5.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/RELEASE.md +58 -1
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +445 -149
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +1 -1
- package/src/parse/abc_parse_directive.js +36 -4
- package/src/parse/abc_parse_header.js +3 -3
- package/src/parse/abc_parse_key_voice.js +41 -6
- package/src/parse/abc_parse_music.js +10 -4
- package/src/parse/abc_parse_settings.js +1 -0
- package/src/parse/abc_tokenizer.js +11 -3
- package/src/parse/abc_transpose.js +1 -1
- package/src/parse/transpose-chord.js +9 -1
- package/src/parse/tune-builder.js +14 -2
- package/src/str/output.js +4 -4
- package/src/synth/abc_midi_flattener.js +61 -21
- package/src/synth/abc_midi_sequencer.js +26 -6
- package/src/synth/chord-track.js +1 -1
- package/src/synth/create-synth.js +74 -65
- package/src/synth/place-note.js +1 -1
- package/src/test/abc_midi_sequencer_lint.js +1 -1
- package/src/test/abc_parser_lint.js +1 -1
- package/src/write/creation/abstract-engraver.js +11 -7
- package/src/write/creation/decoration.js +2 -0
- package/src/write/creation/elements/absolute-element.js +27 -16
- package/src/write/creation/elements/free-text.js +6 -1
- package/src/write/draw/draw.js +8 -0
- package/src/write/draw/ending.js +12 -3
- package/src/write/draw/text.js +8 -1
- package/src/write/interactive/selection.js +7 -1
- package/src/write/svg.js +23 -2
- package/types/index.d.ts +1 -1
- package/version.js +1 -1
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,61 @@
|
|
|
1
|
+
# Version 6.5.0
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* Don't print first ending marks for second voice on the same staff.
|
|
6
|
+
|
|
7
|
+
* Fix spacing problem when there are empty free text blocks.
|
|
8
|
+
|
|
9
|
+
* Add octave and other clefs to the list for voice line, i.e. `V:1 treble-8`
|
|
10
|
+
|
|
11
|
+
* Test to be sure dataset exists for old browsers.
|
|
12
|
+
|
|
13
|
+
* Report more exceptions when failing to create synth.
|
|
14
|
+
|
|
15
|
+
* Don't use A#dim or D#dim when transposing.
|
|
16
|
+
|
|
17
|
+
* Allow space in key name when transposing.
|
|
18
|
+
|
|
19
|
+
* Fix crash when setting some directives before the first music line.
|
|
20
|
+
|
|
21
|
+
* Fix canceling a treble+8 clef.
|
|
22
|
+
|
|
23
|
+
* Fix playback of guitar chords in parentheses.
|
|
24
|
+
|
|
25
|
+
* Don't crash if CreateSynth doesn't have options passed in.
|
|
26
|
+
|
|
27
|
+
## Features
|
|
28
|
+
|
|
29
|
+
* Allow notes in chords to be different volumes.
|
|
30
|
+
|
|
31
|
+
* Add %%maxstaves directive for creating incipits.
|
|
32
|
+
|
|
33
|
+
* Add more articles that can be reversed in titles.
|
|
34
|
+
|
|
35
|
+
* Add %%visualTranspose directive.
|
|
36
|
+
|
|
37
|
+
* Add %%keywarn support.
|
|
38
|
+
|
|
39
|
+
* Add filtering of ABC file header.
|
|
40
|
+
|
|
41
|
+
* Added trillh and pralltriller.
|
|
42
|
+
|
|
43
|
+
# Version 6.4.4
|
|
44
|
+
|
|
45
|
+
## Bugs
|
|
46
|
+
|
|
47
|
+
* Fix measure numbering when there are multi-measure rests.
|
|
48
|
+
|
|
49
|
+
* Fix crash when subtitle is right before setting the bar number.
|
|
50
|
+
|
|
51
|
+
* Don't allow the measure number to overlap the treble clef.
|
|
52
|
+
|
|
53
|
+
* Improved trill, mordent, and turn playback rendering.
|
|
54
|
+
|
|
55
|
+
* Increased measure number offset for wide measure numbers and treble clef.
|
|
56
|
+
|
|
57
|
+
* Not adding the top position if putting a measure number on the clef.
|
|
58
|
+
|
|
1
59
|
# Version 6.4.3
|
|
2
60
|
|
|
3
61
|
## Bugs
|
|
@@ -2752,4 +2810,3 @@ Examples
|
|
|
2752
2810
|
* Updated the example files to always use the latest version.
|
|
2753
2811
|
|
|
2754
2812
|
* Fixed font displaying html file to note have the elements write on top of each other.
|
|
2755
|
-
|