spessasynth_lib 3.27.7 → 3.27.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 CHANGED
@@ -14,6 +14,11 @@ It allows you to:
14
14
  - Convert DLS to SF2! (and back!)
15
15
  - [and more!](#current-features)
16
16
 
17
+ **The next major update (4.0) will include many breaking changes.
18
+ The documentation will be updated when the update releases.
19
+ [The migration guide will be published here.](https://github.com/spessasus/spessasynth_lib/pull/10)**
20
+
21
+
17
22
  **SpessaSynth Project index**
18
23
 
19
24
  - [spessasynth_core](https://github.com/spessasus/spessasynth_core) - SF2/DLS/MIDI library
@@ -36,7 +41,7 @@ npm install --save spessasynth_lib
36
41
  - [SpessaFont - Online SoundFont/DLS Editor](https://spessasus.github.io/SpessaFont)
37
42
 
38
43
 
39
- ### [Complete documentation](https://github.com/spessasus/spessasynth_lib/wiki/)
44
+ ### [Complete documentation](https://spessasus.github.io/spessasynth_lib/)
40
45
 
41
46
  #### Basic example: play a single note
42
47
 
@@ -67,10 +72,10 @@ Please consider voting for it on the bug tracker to get it fixed!*
67
72
 
68
73
  ### On top of that...
69
74
  - **Modular design:** *Easy integration into other projects (load what you need)*
70
- - **[Detailed documentation:](https://github.com/spessasus/spessasynth_lib/wiki/Home)** *With [examples!](https://github.com/spessasus/spessasynth_lib/wiki/Getting-Started#examples)*
71
- - **Easy to Use:** *Basic setup is just [two lines of code!](https://github.com/spessasus/spessasynth_lib/wiki/Getting-Started#minimal-setup)*
75
+ - **[Detailed documentation:](https://spessasus.github.io/spessasynth_lib/)** *With [examples!](https://spessasus.github.io/spessasynth_lib/getting-started/#examples)*
76
+ - **Easy to Use:** *Basic setup is just [two lines of code!](https://spessasus.github.io/spessasynth_lib/getting-started/#minimal-setup)*
72
77
  - **No external dependencies:** *Just spessasynth_core!*
73
- - **Reverb and chorus support:** [customizable!](https://github.com/spessasus/spessasynth_lib/wiki/Synthetizer-Class#effects-configuration-object)
78
+ - **Reverb and chorus support:** [customizable!](https://spessasus.github.io/spessasynth_lib/synthesizer/#effects-configuration-object)
74
79
  - **Export audio files** using [OfflineAudioContext](https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext)
75
80
  - **Written using AudioWorklets:**
76
81
  - Runs in a **separate thread** for maximum performance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spessasynth_lib",
3
- "version": "3.27.7",
3
+ "version": "3.27.8",
4
4
  "description": "MIDI and SoundFont2/DLS library for the browsers with no compromises",
5
5
  "browser": "index.js",
6
6
  "type": "module",
@@ -9,7 +9,9 @@
9
9
  "build": "node build_scripts/build.js",
10
10
  "debug": "node build_scripts/debug_enable.js",
11
11
  "release": "node build_scripts/debug_disable.js",
12
- "build_examples": "node examples/build_examples.js"
12
+ "build:pages": "node build_scripts/build_pages.js",
13
+ "build:examples": "node examples/build_examples.js",
14
+ "build:docs": "node build_scripts/build_docs.js"
13
15
  },
14
16
  "repository": {
15
17
  "type": "git",
@@ -34,6 +36,11 @@
34
36
  "soundfont3",
35
37
  "audio-buffer-to-wav"
36
38
  ],
39
+ "files": [
40
+ "src",
41
+ "synthetizer/worklet_processor.min.js",
42
+ "index.js"
43
+ ],
37
44
  "author": {
38
45
  "name": "spessasus",
39
46
  "email": "spesekspesek@gmail.com",