spessasynth_lib 3.26.8 → 3.26.10

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.
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="JavaScriptLibraryMappings">
4
+ <includedPredefinedLibrary name="Node.js Core" />
5
+ </component>
6
+ </project>
package/README.md CHANGED
@@ -14,9 +14,9 @@
14
14
  npm install --save spessasynth_lib
15
15
  ```
16
16
 
17
- ### [Project site (consider giving it a star!)](https://github.com/spessasus/SpessaSynth)
17
+ ### [Project site (consider giving it a star!)](https://github.com/spessasus/spessasynth_lib)
18
18
 
19
- ### [Demo](https://spessasus.github.io/spessasynth_lib)
19
+ ### [Demo](https://spessasus.github.io/SpessaSynth)
20
20
 
21
21
  ### [Complete documentation](https://github.com/spessasus/spessasynth_lib/wiki/)
22
22
 
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "spessasynth_lib",
3
- "version": "3.26.8",
3
+ "version": "3.26.10",
4
4
  "description": "MIDI and SoundFont2/DLS library for the browsers with no compromises",
5
5
  "browser": "index.js",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
- "build": "build_scripts/build.sh",
10
- "debug": "build_scripts/debug_enable.sh",
11
- "release": "build_scripts/debug_disable.sh"
9
+ "build": "node build_scripts/build.js",
10
+ "debug": "node build_scripts/debug_enable.js",
11
+ "release": "node build_scripts/debug_disable.js",
12
+ "build_examples": "node examples/build_examples.js"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git",
@@ -43,6 +44,9 @@
43
44
  "email": "spesekspesek@gmail.com"
44
45
  },
45
46
  "homepage": "https://github.com/spessasus/spessasynth_lib#readme",
47
+ "devDependencies": {
48
+ "esbuild": "^0.25.2"
49
+ },
46
50
  "dependencies": {
47
51
  "spessasynth_core": "latest"
48
52
  }
@@ -261,7 +261,6 @@ class WorkletSpessaProcessor extends AudioWorkletProcessor
261
261
  case workletMessageType.customCcChange:
262
262
  // custom controller change
263
263
  channelObject.setCustomController(data[0], data[1]);
264
- channelObject.updateChannelTuning();
265
264
  break;
266
265
 
267
266
  case workletMessageType.ccReset: