abcjs 6.0.2 → 6.1.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
@@ -8,6 +8,10 @@ This library makes it easy to incorporate **sheet music** into your **websites**
8
8
 
9
9
  Full documentation is here: [abcjs documentation](https://paulrosen.github.io/abcjs/)
10
10
 
11
+ ## Announcement: version 6.1.0
12
+
13
+ There is a brand new transposing feature. This allows you to input an ABC string and get a new ABC back in a different key. See the documentation for details. I'm sure there are ways to expand this - let me know if your use case is missing.
14
+
11
15
  ## Announcement: version 6.0.0
12
16
 
13
17
  After way too long, abcjs 6.0.0 is now out of beta.
@@ -16,6 +20,8 @@ There are only a few bug fixes since the last beta.
16
20
 
17
21
  The current plan is to continue doing bug fixes and minor features to the 6.x.x branch, but version 7 is already in planning.
18
22
 
23
+ There are some minor features that will still be added to the version 6 branch, along with fixing transposition.
24
+
19
25
  ## Informal roadmap for version 7.0.0
20
26
 
21
27
  There will be some architecture changes which will go in a 7.0.0 release:
package/RELEASE.md CHANGED
@@ -1,3 +1,63 @@
1
+ # Version 6.1.0
2
+
3
+ ## Bugs
4
+
5
+ * Fix some bugs in startChar; endChar
6
+
7
+ ## Features
8
+
9
+ * Add transposing feature
10
+
11
+ ## Documentation
12
+
13
+ * Document transposing feature
14
+ * Clarify the way testing works
15
+ * Add tablature tests to "all"
16
+
17
+ # Version 6.0.4
18
+
19
+ ## Bugs
20
+
21
+ * Fix position of staccato when a note is beamed and its stem is backwards.
22
+ * Write annotations above bar lines.
23
+ * fix placement of rhythm indicator (the R: field) on treble clef when there is nothing else above the staff.
24
+ * fix some broken tests; add test for staccato bug and rhythm word placement.
25
+ * fixed some Typescript warnings and errors
26
+
27
+ ## Features
28
+
29
+ * Recognize backslash to escape lyrics.
30
+ * Add glissando
31
+ * pass back the start and end char positions with the audio callbacks.
32
+
33
+ ## Documentation
34
+
35
+ * Add example of adding note names to a tune automatically.
36
+ * Add a mention for the VSCode extension.
37
+ * Add tune book example.
38
+
39
+ # Version 6.0.3
40
+
41
+ ## Bugs
42
+
43
+ * Fix unhandled rejection if there is a problem with an input note when creating notes.
44
+
45
+ * put the height of ties/slurs in the line height calculation
46
+
47
+ * Measurements that used "px" were reporting a warning.
48
+
49
+ * Fix bass note in jazz chord when it contains a sharp or flat
50
+
51
+ ## Features
52
+
53
+ * Quotation mark in a chord can be escaped.
54
+
55
+ ## Documentation
56
+
57
+ * Add example of reusing created synth buffers.
58
+
59
+ * Fix example in docs on creating a drum rhythm
60
+
1
61
  # Version 6.0.2
2
62
 
3
63
  ## Bugs