abcjs 6.0.4 → 6.1.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.
package/README.md CHANGED
@@ -8,6 +8,14 @@ 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.2
12
+
13
+ There is a little difference in the generated SVG: Now each line is surrounded with a `<g>` element. This probably won't affect your program unless you are doing very specific manipulation of the SVG.
14
+
15
+ ## Announcement: version 6.1.0
16
+
17
+ 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.
18
+
11
19
  ## Announcement: version 6.0.0
12
20
 
13
21
  After way too long, abcjs 6.0.0 is now out of beta.
package/RELEASE.md CHANGED
@@ -1,3 +1,40 @@
1
+ # Version 6.1.2
2
+
3
+ ## Bugs
4
+
5
+ * fix combining oneSvgPerLine with responsive: "resize"
6
+
7
+ * fix drawing audio controls when the outer stylesheet changes the button's lineHeight
8
+ # Version 6.1.1
9
+
10
+ ## Bugs
11
+
12
+ * rewrite oneSvgPerLine; fixes selection and keeping multiline items (like slurs) correctly.
13
+
14
+ ## Features
15
+
16
+ * added mobile browser TouchEvent support for dragging
17
+
18
+ ## Documentation
19
+
20
+ * fixed some typescript definitions
21
+
22
+ # Version 6.1.0
23
+
24
+ ## Bugs
25
+
26
+ * Fix some bugs in startChar; endChar
27
+
28
+ ## Features
29
+
30
+ * Add transposing feature
31
+
32
+ ## Documentation
33
+
34
+ * Document transposing feature
35
+ * Clarify the way testing works
36
+ * Add tablature tests to "all"
37
+
1
38
  # Version 6.0.4
2
39
 
3
40
  ## Bugs
package/SECURITY.md ADDED
@@ -0,0 +1,9 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ Only the latest version will get security updates. Please stay updated if possible.
6
+
7
+ ## Reporting a Vulnerability
8
+
9
+ Contact Paul Rosen directly if you detect a security problem. The most reliable way is to through the contact form on https://abcjs.net.
package/abcjs-audio.css CHANGED
@@ -24,6 +24,7 @@
24
24
  background: none !important;
25
25
  border: 1px solid transparent;
26
26
  box-sizing: border-box;
27
+ line-height: 1;
27
28
  }
28
29
 
29
30
  .abcjs-btn g {