abcjs 6.4.2 → 6.4.4
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/RELEASE.md +28 -1
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic-min.js.LICENSE +1 -1
- package/dist/abcjs-basic.js +98 -32
- 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/data/abc_tune.js +2 -0
- package/src/parse/abc_parse_music.js +40 -21
- package/src/parse/tune-builder.js +11 -1
- package/src/synth/abc_midi_flattener.js +9 -10
- package/src/synth/chord-track.js +9 -0
- package/src/test/abc_midi_sequencer_lint.js +1 -1
- package/src/write/creation/abstract-engraver.js +2 -1
- package/src/write/creation/elements/absolute-element.js +27 -16
- package/src/write/creation/elements/tie-element.js +26 -0
- package/src/write/layout/set-upper-and-lower-elements.js +8 -0
- package/test.js +1 -1
- package/types/index.d.ts +1 -1
- package/version.js +1 -1
- package/temp.txt +0 -12
package/LICENSE.md
CHANGED
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
# Version 6.4.4
|
|
2
|
+
|
|
3
|
+
## Bugs
|
|
4
|
+
|
|
5
|
+
* Fix measure numbering when there are multi-measure rests.
|
|
6
|
+
|
|
7
|
+
* Fix crash when subtitle is right before setting the bar number.
|
|
8
|
+
|
|
9
|
+
* Don't allow the measure number to overlap the treble clef.
|
|
10
|
+
|
|
11
|
+
* Improved trill, mordent, and turn playback rendering.
|
|
12
|
+
|
|
13
|
+
* Increased measure number offset for wide measure numbers and treble clef.
|
|
14
|
+
|
|
15
|
+
* Not adding the top position if putting a measure number on the clef.
|
|
16
|
+
|
|
17
|
+
# Version 6.4.3
|
|
18
|
+
|
|
19
|
+
## Bugs
|
|
20
|
+
|
|
21
|
+
* If there is a slur or tie on the top or bottom of a line, make sure there is room for it.
|
|
22
|
+
|
|
23
|
+
* Fix for crash on malformed @ positioned annotations
|
|
24
|
+
|
|
25
|
+
* Fix call of getBpm() to use the specified tempo if it isn't supplied.
|
|
26
|
+
|
|
27
|
+
* Bring bass note in range if transposed out-of-range by a visual transpose
|
|
28
|
+
|
|
1
29
|
# Version 6.4.2
|
|
2
30
|
|
|
3
31
|
## Bugs
|
|
@@ -2740,4 +2768,3 @@ Examples
|
|
|
2740
2768
|
* Updated the example files to always use the latest version.
|
|
2741
2769
|
|
|
2742
2770
|
* Fixed font displaying html file to note have the elements write on top of each other.
|
|
2743
|
-
|