abcjs 6.4.1 → 6.4.2

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.
Files changed (39) hide show
  1. package/RELEASE.md +34 -0
  2. package/dist/abcjs-basic-min.js +2 -2
  3. package/dist/abcjs-basic.js +1246 -1136
  4. package/dist/abcjs-basic.js.map +1 -1
  5. package/dist/abcjs-plugin-min.js +2 -2
  6. package/package.json +1 -1
  7. package/src/api/abc_tunebook.js +1 -2
  8. package/src/api/abc_tunebook_svg.js +0 -1
  9. package/src/midi/abc_midi_create.js +22 -7
  10. package/src/parse/abc_common.js +3 -11
  11. package/src/parse/abc_parse.js +1 -1
  12. package/src/parse/abc_parse_directive.js +44 -3
  13. package/src/parse/abc_parse_header.js +6 -4
  14. package/src/parse/abc_parse_key_voice.js +10 -6
  15. package/src/parse/abc_parse_music.js +22 -5
  16. package/src/parse/tune-builder.js +675 -643
  17. package/src/synth/abc_midi_flattener.js +3 -1
  18. package/src/synth/abc_midi_sequencer.js +18 -3
  19. package/src/synth/chord-track.js +81 -18
  20. package/src/synth/create-synth-control.js +1 -2
  21. package/src/tablatures/abc_tablatures.js +184 -0
  22. package/src/tablatures/instruments/string-patterns.js +266 -268
  23. package/src/tablatures/instruments/string-tablature.js +38 -35
  24. package/src/tablatures/instruments/tab-note.js +186 -181
  25. package/src/tablatures/instruments/tab-notes.js +30 -35
  26. package/src/tablatures/instruments/tab-string.js +43 -25
  27. package/src/tablatures/render/tab-absolute-elements.js +303 -0
  28. package/src/tablatures/render/tab-renderer.js +244 -0
  29. package/src/test/abc_parser_lint.js +2 -3
  30. package/src/write/creation/abstract-engraver.js +1 -1
  31. package/src/write/engraver-controller.js +1 -1
  32. package/temp.txt +12 -0
  33. package/types/index.d.ts +1 -1
  34. package/version.js +1 -1
  35. package/src/api/abc_tablatures.js +0 -184
  36. package/src/tablatures/instruments/tab-string-patterns.js +0 -23
  37. package/src/tablatures/tab-absolute-elements.js +0 -301
  38. package/src/tablatures/tab-common.js +0 -29
  39. package/src/tablatures/tab-renderer.js +0 -259
package/RELEASE.md CHANGED
@@ -1,3 +1,37 @@
1
+ # Version 6.4.2
2
+
3
+ ## Bugs
4
+
5
+ * Fix crash when there is a decoration on an invisible rest
6
+
7
+ * Fix crash when the same voice is set on a line
8
+
9
+ * Fix crash with rests in graces
10
+
11
+ * Fix crash with decoration on invisible rests
12
+
13
+ * Fix various crashes when declaring voices inline or after a line continuation
14
+
15
+ * Fix for */8 rhythm tempos for MIDI export
16
+
17
+ * Allow a midi volume of zero to mute a voice
18
+
19
+ * Fix bug in selecting the correct note for chord arpeggios
20
+
21
+ * Fix stemless chord parsing i.e. `[AB]0`
22
+
23
+ * Don't put lower decorations too low on beamed notes that are beamed up
24
+
25
+ ## Features
26
+
27
+ * add power chords
28
+
29
+ * add patterns for 5/8, 7/8, 10/8 and 11/8
30
+
31
+ * Add octave= parameter to bassprog and chordprog
32
+
33
+ * allow an empty gchord to cancel a previously set gchord
34
+
1
35
  # Version 6.4.1
2
36
 
3
37
  ## Bugs