abcjs 6.0.0-beta.36 → 6.0.0-beta.37
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/LICENSE.md +1 -1
- package/README.md +11 -6
- package/RELEASE.md +25 -15
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic-min.js.LICENSE +2 -2
- package/dist/abcjs-basic.js +84 -52
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/dist/abcjs-plugin-min.js.LICENSE +2 -2
- package/index.js +23 -1
- package/license.js +1 -1
- package/package.json +1 -1
- package/plugin.js +23 -1
- package/src/api/abc_tunebook_svg.js +7 -5
- package/src/synth/create-synth.js +51 -10
- package/src/write/abc_engraver_controller.js +4 -4
- package/src/write/draw/draw.js +2 -2
- package/test.js +23 -0
- package/version.js +1 -1
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -68,20 +68,25 @@ The last version in each major version number is still available in the active b
|
|
|
68
68
|
In this beta the default soundfont was changed to https://paulrosen.github.io/midi-js-soundfonts/abcjs/ Hopefully you will find that sounds better. If you set the soundfont directly then you won't notice any change. If you prefer the old soundfont, use the `soundFontUrl: "https://paulrosen.github.io/midi-js-soundfonts/FluidR3_GM/"` option when calling the synth functions.
|
|
69
69
|
|
|
70
70
|
## Informal roadmap
|
|
71
|
-
I'm
|
|
72
|
-
|
|
73
|
-
I am going to try to release new beta versions regularly with a few improvements in each.
|
|
71
|
+
I'm getting close to taking version 6.0.0 out of beta.
|
|
74
72
|
|
|
75
73
|
These are the changes that are planned:
|
|
76
|
-
* Improve the API for controlling the synth. That is, make the parameters less confusing.
|
|
77
74
|
* Test and improve the sound of the soundfont.
|
|
78
75
|
* Add all the typescript definitions.
|
|
79
|
-
* Break apart the paths in the SVG so that parts of the note can be targeted. (For instance, just the flag, or one note in a chord.)
|
|
80
|
-
* Control the spacing of the elements on the line better: support equal size measures, and support allowing control of the spacing between notes.
|
|
81
76
|
* Bug fixes.
|
|
82
77
|
|
|
83
78
|
If you have a particular issue that is impeding your usage of this library, please mention it in the issue.
|
|
84
79
|
|
|
80
|
+
After the 6.0.0 release, I'll be working on some more architecture changes which will go in a 7.0.0 release:
|
|
81
|
+
|
|
82
|
+
* Improve the API for controlling the synth. That is, make the parameters less confusing.
|
|
83
|
+
* Create a plugin architecture so that large features that are not widely used can be added without bloating this library.
|
|
84
|
+
* Change the build to use typescript while still maintaining legacy browser capability.
|
|
85
|
+
* Reduce the size of the library by optimizing code.
|
|
86
|
+
* Control the spacing of the elements on the line better: support equal size measures, and support allowing control of the spacing between notes.
|
|
87
|
+
* Improved documentation, particularly for synth.
|
|
88
|
+
* Bug fixes.
|
|
89
|
+
|
|
85
90
|
Thanks, Paul
|
|
86
91
|
|
|
87
92
|
## Future breaking changes
|
package/RELEASE.md
CHANGED
|
@@ -1,40 +1,50 @@
|
|
|
1
|
+
# Version 6.0.0-beta.37
|
|
2
|
+
|
|
3
|
+
* Keep the correct line count when generating one svg per line. (Fixes analysis of the tune for playback and timing)
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
*
|
|
7
|
+
* Change the default soundfont to the improved Fluid one; add the anticipations on the abcjs soundfont.
|
|
8
|
+
|
|
9
|
+
## Bugs
|
|
10
|
+
|
|
1
11
|
# Version 6.0.0-beta.36
|
|
2
12
|
|
|
3
13
|
## Bugs
|
|
4
14
|
|
|
5
|
-
Fix some typescript definitions.
|
|
15
|
+
* Fix some typescript definitions.
|
|
6
16
|
|
|
7
|
-
When stopping synth, return the position that it stopped at.
|
|
17
|
+
* When stopping synth, return the position that it stopped at.
|
|
8
18
|
|
|
9
|
-
Implement a fix for race conditions during note loading
|
|
19
|
+
* Implement a fix for race conditions during note loading
|
|
10
20
|
|
|
11
|
-
Don't call debugger when setting an annotation on an invisible note.
|
|
21
|
+
* Don't call debugger when setting an annotation on an invisible note.
|
|
12
22
|
|
|
13
|
-
Put try/catch in editor when creating music so there isn't an unhandled exception if there is an abcjs bug.
|
|
23
|
+
* Put try/catch in editor when creating music so there isn't an unhandled exception if there is an abcjs bug.
|
|
14
24
|
|
|
15
|
-
Don't crash when creating audio and there is a suppressed blank line
|
|
25
|
+
* Don't crash when creating audio and there is a suppressed blank line
|
|
16
26
|
|
|
17
|
-
When suppressing blank lines, consider a line with only chords as not blank.
|
|
27
|
+
* When suppressing blank lines, consider a line with only chords as not blank.
|
|
18
28
|
|
|
19
|
-
Don't add too much spacing on chord symbols when placing them.
|
|
29
|
+
* Don't add too much spacing on chord symbols when placing them.
|
|
20
30
|
|
|
21
|
-
Don't lose element's scrolling position when rendering music.
|
|
31
|
+
* Don't lose element's scrolling position when rendering music.
|
|
22
32
|
|
|
23
|
-
Fix crash when creating timing array and there is a suppressed line because it is empty.
|
|
33
|
+
* Fix crash when creating timing array and there is a suppressed line because it is empty.
|
|
24
34
|
|
|
25
|
-
Allow soundFontVolumeMultiplier to be set to zero.
|
|
35
|
+
* Allow soundFontVolumeMultiplier to be set to zero.
|
|
26
36
|
|
|
27
37
|
## Features
|
|
28
38
|
|
|
29
|
-
Add string tablature
|
|
39
|
+
* Add string tablature
|
|
30
40
|
|
|
31
|
-
Implement %%jazzchord directive
|
|
41
|
+
* Implement %%jazzchord directive
|
|
32
42
|
|
|
33
43
|
## Documentation
|
|
34
44
|
|
|
35
|
-
Add example page using multiple synths with program switcher
|
|
45
|
+
* Add example page using multiple synths with program switcher
|
|
36
46
|
|
|
37
|
-
Add jazzchords to example generator
|
|
47
|
+
* Add jazzchords to example generator
|
|
38
48
|
|
|
39
49
|
# Version 6.0.0-beta.35
|
|
40
50
|
|