abcjs 6.5.1 → 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 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,47 @@
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
+
27
+ # Version 6.5.2
28
+
29
+ ## Bugs
30
+
31
+ * Add test for bug with third ending sequencing
32
+
33
+ * Fix problem with transposing chords that have spaces in them.
34
+
35
+ * Fix undefined variables.
36
+
37
+ * Fix typescript definitions
38
+
39
+ ## Features
40
+
41
+ * Allow passing selector into the Editor in addition to ID. Add callbacks before and after drawing.
42
+
43
+ * Expose the tunes array that the Editor has.
44
+
1
45
  # Version 6.5.1
2
46
 
3
47
  ## Bugs