abcjs 6.1.6 → 6.1.8
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 +2 -0
- package/RELEASE.md +41 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +1197 -4821
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +14 -10
- package/src/data/abc_tune.js +2 -0
- package/src/parse/abc_parse.js +1 -0
- package/src/parse/abc_parse_key_voice.js +10 -1
- package/src/parse/abc_parse_music.js +1 -0
- package/src/synth/pitches-to-perc.js +12 -0
- package/src/tablatures/instruments/string-patterns.js +18 -1
- package/src/tablatures/instruments/tab-note.js +12 -1
- package/src/tablatures/tab-absolute-elements.js +3 -0
- package/src/tablatures/tab-renderer.js +1 -0
- package/src/write/abc_abstract_engraver.js +5 -2
- package/src/write/classes.js +4 -0
- package/src/write/draw/absolute.js +8 -0
- package/src/write/selection.js +2 -2
- package/version.js +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,8 @@ 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
|
+
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
|
+
|
|
11
13
|
## Announcement: version 6.1.2
|
|
12
14
|
|
|
13
15
|
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.
|
package/RELEASE.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
# Version 6.1.8
|
|
2
|
+
|
|
3
|
+
## Features
|
|
4
|
+
|
|
5
|
+
* Implement 'octave' modifier for K: and V: fields.
|
|
6
|
+
|
|
7
|
+
## Bugs
|
|
8
|
+
|
|
9
|
+
* Handle accidentals in a measure in tablature.
|
|
10
|
+
|
|
11
|
+
* Fix accidental handling in tablature when there is a key signature.
|
|
12
|
+
|
|
13
|
+
* Add a little padding when tablature doesn't have a label.
|
|
14
|
+
|
|
15
|
+
* Fix the css styles applied to tablature.
|
|
16
|
+
|
|
17
|
+
* Allow percmap to use higher octave pitches.
|
|
18
|
+
|
|
19
|
+
* Fix cursor movement when playing synth and tablature is visible.
|
|
20
|
+
|
|
21
|
+
## Documentation
|
|
22
|
+
|
|
23
|
+
* Add example of getting lyrics out of a tune.
|
|
24
|
+
|
|
25
|
+
# Version 6.1.7
|
|
26
|
+
|
|
27
|
+
## Bugs
|
|
28
|
+
|
|
29
|
+
* don't draw measure numbers before the beginning of the line.
|
|
30
|
+
|
|
31
|
+
* guard against crash on touch selection
|
|
32
|
+
|
|
33
|
+
## Testing
|
|
34
|
+
|
|
35
|
+
* open the browser and run the test-server in parallel
|
|
36
|
+
|
|
37
|
+
* add a minimal server for serving test pages
|
|
38
|
+
## Documentation
|
|
39
|
+
|
|
40
|
+
* Add example of getting lyrics out of a tune
|
|
41
|
+
|
|
1
42
|
# Version 6.1.6
|
|
2
43
|
|
|
3
44
|
## Bugs
|