abcjs 6.5.2 → 6.6.1

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
@@ -4,12 +4,18 @@
4
4
 
5
5
  This library makes it easy to incorporate **sheet music** into your **websites**. You can also turn visible **ABC** text into sheet music on websites that you don't own using a greasemonkey script, or change your own website that contains ABC text with no other changes than the addition of one javascript file. You can also generate **MIDI files** or play them directly in your browser.
6
6
 
7
- [List of Examples](https://cdn.rawgit.com/paulrosen/abcjs/main/examples/toc.html)
7
+ [List of Examples](https://examples.abcjs.net/)
8
8
 
9
- Full documentation is here: [abcjs documentation](https://paulrosen.github.io/abcjs/)
9
+ Full documentation is here: [abcjs documentation](https://docs.abcjs.net/)
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,49 @@
1
+ # Version 6.6.1
2
+
3
+ ## Bugs
4
+
5
+ * fix repeat logic when user forgets to add a start repeat.
6
+
7
+ * remove duplicate elements when copying repeats
8
+
9
+ * fix handling of overlays
10
+
11
+ * fix bug with creating synth with overlays and repeats
12
+
13
+ * fix links to documentation and examples.
14
+
15
+ * fix drawing crescendo across lines.
16
+
17
+ * fix chord grid with slash rhythm notes
18
+
19
+ * fix chord grid with one svg per line
20
+
21
+ # Version 6.6.0
22
+
23
+ ## Features
24
+
25
+ * Created a chord grid view with the parameter `chordGrid`.
26
+
27
+ * Improved the handling of repeated sections to handle third endings, and constructions like `1-3` and `1,2`.
28
+
29
+ ## Bugs
30
+
31
+ * Fixed transposing bugs: Aeolian mode; `clef=` on `K:` line; bugs when there are spaces in unexpected places.
32
+
33
+ * Fix suppressing the tempo when %%printtempo 0 is specified.
34
+
35
+ * Fix an issue with wrong TimingCallbacks startTime
36
+
37
+ * Updated algorithm to determine direction of single beams
38
+
39
+ * Fixed bug where TimingCallbacks gets one last call after it has been stopped.
40
+
41
+ * Handle 5/8 and 7/8 better in TimingCallbacks.
42
+
43
+ ## Documentation
44
+
45
+ * Moved documentation to https://codeberg.org/abcjs/abcjs-docs
46
+
1
47
  # Version 6.5.2
2
48
 
3
49
  ## Bugs