@coderline/alphatab 1.9.0-alpha.1804 → 1.9.0-alpha.1813

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.
@@ -1,51 +1,51 @@
1
1
  /*!
2
- * alphaTab v1.9.0-alpha.1804 (develop, build 1804)
3
- *
4
- * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
- *
6
- * This Source Code Form is subject to the terms of the Mozilla Public
7
- * License, v. 2.0. If a copy of the MPL was not distributed with this
8
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
- *
10
- * Integrated Libraries:
11
- *
12
- * Library: TinySoundFont
13
- * License: MIT
14
- * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
- * URL: https://github.com/schellingb/TinySoundFont
16
- * Purpose: SoundFont loading and Audio Synthesis
17
- *
18
- * Library: SFZero
19
- * License: MIT
20
- * Copyright: Copyright (C) 2012 Steve Folta ()
21
- * URL: https://github.com/stevefolta/SFZero
22
- * Purpose: TinySoundFont is based on SFZEro
23
- *
24
- * Library: Haxe Standard Library
25
- * License: MIT
26
- * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
- * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
- * Purpose: XML Parser & Zip Inflate Algorithm
29
- *
30
- * Library: SharpZipLib
31
- * License: MIT
32
- * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
- * URL: https://github.com/icsharpcode/SharpZipLib
34
- * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
- *
36
- * Library: NVorbis
37
- * License: MIT
38
- * Copyright: Copyright (c) 2020 Andrew Ward
39
- * URL: https://github.com/NVorbis/NVorbis
40
- * Purpose: Vorbis Stream Decoding
41
- *
42
- * Library: libvorbis
43
- * License: BSD-3-Clause
44
- * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
- * URL: https://github.com/xiph/vorbis
46
- * Purpose: NVorbis adopted some code from libvorbis.
47
- *
48
- * @preserve
49
- * @license
50
- */
51
- import*as r from"./alphaTab.core.mjs";export*from"./alphaTab.core.mjs";r.Environment.isRunningInWorker?r.Environment.initializeWorker():r.Environment.isRunningInAudioWorklet?r.Environment.initializeAudioWorklet():r.Environment.initializeMain(e=>{if(r.Environment.webPlatform===r.WebPlatform.NodeJs)throw new r.AlphaTabError(r.AlphaTabErrorType.General,"Workers not yet supported in Node.js");if(r.Environment.webPlatform===r.WebPlatform.BrowserModule||r.Environment.isWebPackBundled||r.Environment.isViteBundled){r.Logger.debug("AlphaTab","Creating webworker");try{return new r.Environment.alphaTabWorker(new r.Environment.alphaTabUrl("./alphaTab.worker.mjs",import.meta.url),{type:"module"})}catch(e){r.Logger.debug("AlphaTab","ESM webworker construction with direct URL failed",e)}let t="";try{t=new r.Environment.alphaTabUrl("./alphaTab.worker.mjs",import.meta.url);const e=`import ${JSON.stringify(t)}`,o=new Blob([e],{type:"application/javascript"});return new Worker(URL.createObjectURL(o),{type:"module"})}catch(e){r.Logger.debug("AlphaTab","ESM webworker construction with blob import failed",t,e)}try{if(!e.core.scriptFile)throw new Error("Could not detect alphaTab script file");t=e.core.scriptFile;const r=`import ${JSON.stringify(e.core.scriptFile)}`,o=new Blob([r],{type:"application/javascript"});return new Worker(URL.createObjectURL(o),{type:"module"})}catch(t){r.Logger.debug("AlphaTab","ESM webworker construction with blob import failed",e.core.scriptFile,t)}}if(!e.core.scriptFile)throw new r.AlphaTabError(r.AlphaTabErrorType.General,"Could not detect alphaTab script file, cannot initialize renderer");try{r.Logger.debug("AlphaTab","Creating Blob worker");const t=`importScripts('${e.core.scriptFile}')`,o=new Blob([t],{type:"application/javascript"});return new Worker(URL.createObjectURL(o))}catch{return r.Logger.warning("Rendering","Could not create inline worker, fallback to normal worker"),new Worker(e.core.scriptFile)}},(e,t)=>{if(r.Environment.webPlatform===r.WebPlatform.NodeJs)throw new r.AlphaTabError(r.AlphaTabErrorType.General,"Audio Worklets not yet supported in Node.js");if(r.Environment.webPlatform===r.WebPlatform.BrowserModule||r.Environment.isWebPackBundled||r.Environment.isViteBundled){r.Logger.debug("AlphaTab","Creating Module worklet");return e.audioWorklet.addModule(new r.Environment.alphaTabUrl("./alphaTab.worklet.mjs",import.meta.url))}return r.Logger.debug("AlphaTab","Creating Script worklet"),e.audioWorklet.addModule(t.core.scriptFile)});
2
+ * alphaTab v1.9.0-alpha.1813 (develop, build 1813)
3
+ *
4
+ * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
+ *
6
+ * This Source Code Form is subject to the terms of the Mozilla Public
7
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
8
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+ *
10
+ * Integrated Libraries:
11
+ *
12
+ * Library: TinySoundFont
13
+ * License: MIT
14
+ * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
+ * URL: https://github.com/schellingb/TinySoundFont
16
+ * Purpose: SoundFont loading and Audio Synthesis
17
+ *
18
+ * Library: SFZero
19
+ * License: MIT
20
+ * Copyright: Copyright (C) 2012 Steve Folta ()
21
+ * URL: https://github.com/stevefolta/SFZero
22
+ * Purpose: TinySoundFont is based on SFZEro
23
+ *
24
+ * Library: Haxe Standard Library
25
+ * License: MIT
26
+ * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
+ * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
+ * Purpose: XML Parser & Zip Inflate Algorithm
29
+ *
30
+ * Library: SharpZipLib
31
+ * License: MIT
32
+ * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
+ * URL: https://github.com/icsharpcode/SharpZipLib
34
+ * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
+ *
36
+ * Library: NVorbis
37
+ * License: MIT
38
+ * Copyright: Copyright (c) 2020 Andrew Ward
39
+ * URL: https://github.com/NVorbis/NVorbis
40
+ * Purpose: Vorbis Stream Decoding
41
+ *
42
+ * Library: libvorbis
43
+ * License: BSD-3-Clause
44
+ * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
+ * URL: https://github.com/xiph/vorbis
46
+ * Purpose: NVorbis adopted some code from libvorbis.
47
+ *
48
+ * @preserve
49
+ * @license
50
+ */
51
+ import*as r from"./alphaTab.core.mjs";export*from"./alphaTab.core.mjs";r.Environment.isRunningInWorker?r.Environment.initializeWorker():r.Environment.isRunningInAudioWorklet?r.Environment.initializeAudioWorklet():r.Environment.initializeMain(e=>{if(r.Environment.webPlatform===r.WebPlatform.NodeJs)throw new r.AlphaTabError(r.AlphaTabErrorType.General,"Workers not yet supported in Node.js");if(r.Environment.webPlatform===r.WebPlatform.BrowserModule||r.Environment.isWebPackBundled||r.Environment.isViteBundled){r.Logger.debug("AlphaTab","Creating webworker");try{return new r.Environment.alphaTabWorker(new r.Environment.alphaTabUrl("./alphaTab.worker.mjs",import.meta.url),{type:"module"})}catch(e){r.Logger.debug("AlphaTab","ESM webworker construction with direct URL failed",e)}let t="";try{t=new r.Environment.alphaTabUrl("./alphaTab.worker.mjs",import.meta.url);const e=`import ${JSON.stringify(t)}`,o=new Blob([e],{type:"application/javascript"});return new Worker(URL.createObjectURL(o),{type:"module"})}catch(e){r.Logger.debug("AlphaTab","ESM webworker construction with blob import failed",t,e)}try{if(!e.core.scriptFile)throw new Error("Could not detect alphaTab script file");t=e.core.scriptFile;const r=`import ${JSON.stringify(e.core.scriptFile)}`,o=new Blob([r],{type:"application/javascript"});return new Worker(URL.createObjectURL(o),{type:"module"})}catch(t){r.Logger.debug("AlphaTab","ESM webworker construction with blob import failed",e.core.scriptFile,t)}}if(!e.core.scriptFile)throw new r.AlphaTabError(r.AlphaTabErrorType.General,"Could not detect alphaTab script file, cannot initialize renderer");try{r.Logger.debug("AlphaTab","Creating Blob worker");const t=`importScripts('${e.core.scriptFile}')`,o=new Blob([t],{type:"application/javascript"});return new Worker(URL.createObjectURL(o))}catch{return r.Logger.warning("Rendering","Could not create inline worker, fallback to normal worker"),new Worker(e.core.scriptFile)}},(e,t)=>{if(r.Environment.webPlatform===r.WebPlatform.NodeJs)throw new r.AlphaTabError(r.AlphaTabErrorType.General,"Audio Worklets not yet supported in Node.js");if(r.Environment.webPlatform===r.WebPlatform.BrowserModule||r.Environment.isWebPackBundled||r.Environment.isViteBundled){r.Logger.debug("AlphaTab","Creating Module worklet");const{audioWorklet:t}=e;return t.addModule(new r.Environment.alphaTabUrl("./alphaTab.worklet.mjs",import.meta.url))}return r.Logger.debug("AlphaTab","Creating Script worklet"),e.audioWorklet.addModule(t.core.scriptFile)});
package/dist/alphaTab.mjs CHANGED
@@ -1,144 +1,104 @@
1
1
  /*!
2
- * alphaTab v1.9.0-alpha.1804 (develop, build 1804)
3
- *
4
- * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
- *
6
- * This Source Code Form is subject to the terms of the Mozilla Public
7
- * License, v. 2.0. If a copy of the MPL was not distributed with this
8
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
- *
10
- * Integrated Libraries:
11
- *
12
- * Library: TinySoundFont
13
- * License: MIT
14
- * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
- * URL: https://github.com/schellingb/TinySoundFont
16
- * Purpose: SoundFont loading and Audio Synthesis
17
- *
18
- * Library: SFZero
19
- * License: MIT
20
- * Copyright: Copyright (C) 2012 Steve Folta ()
21
- * URL: https://github.com/stevefolta/SFZero
22
- * Purpose: TinySoundFont is based on SFZEro
23
- *
24
- * Library: Haxe Standard Library
25
- * License: MIT
26
- * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
- * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
- * Purpose: XML Parser & Zip Inflate Algorithm
29
- *
30
- * Library: SharpZipLib
31
- * License: MIT
32
- * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
- * URL: https://github.com/icsharpcode/SharpZipLib
34
- * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
- *
36
- * Library: NVorbis
37
- * License: MIT
38
- * Copyright: Copyright (c) 2020 Andrew Ward
39
- * URL: https://github.com/NVorbis/NVorbis
40
- * Purpose: Vorbis Stream Decoding
41
- *
42
- * Library: libvorbis
43
- * License: BSD-3-Clause
44
- * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
- * URL: https://github.com/xiph/vorbis
46
- * Purpose: NVorbis adopted some code from libvorbis.
47
- *
48
- * @preserve
49
- * @license
50
- */
51
-
52
- import * as alphaTab from './alphaTab.core.mjs';
53
- export * from './alphaTab.core.mjs';
54
-
55
- /**@target web */
56
- if (alphaTab.Environment.isRunningInWorker) {
57
- alphaTab.Environment.initializeWorker();
58
- }
59
- else if (alphaTab.Environment.isRunningInAudioWorklet) {
60
- alphaTab.Environment.initializeAudioWorklet();
61
- }
62
- else {
63
- alphaTab.Environment.initializeMain(settings => {
64
- if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.NodeJs) {
65
- throw new alphaTab.AlphaTabError(alphaTab.AlphaTabErrorType.General, 'Workers not yet supported in Node.js');
66
- }
67
- if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.BrowserModule ||
68
- alphaTab.Environment.isWebPackBundled ||
69
- alphaTab.Environment.isViteBundled) {
70
- alphaTab.Logger.debug('AlphaTab', 'Creating webworker');
71
- try {
72
- return new alphaTab.Environment.alphaTabWorker(new alphaTab.Environment.alphaTabUrl('./alphaTab.worker.mjs', import.meta.url), {
73
- type: 'module'
74
- });
75
- }
76
- catch (e) {
77
- alphaTab.Logger.debug('AlphaTab', 'ESM webworker construction with direct URL failed', e);
78
- }
79
- // fallback to blob worker with ESM URL
80
- let workerUrl = '';
81
- try {
82
- // Note: prevent bundlers to copy worker as asset via alphaTabUrl
83
- workerUrl = new alphaTab.Environment.alphaTabUrl('./alphaTab.worker.mjs', import.meta.url);
84
- const script = `import ${JSON.stringify(workerUrl)}`;
85
- const blob = new Blob([script], {
86
- type: 'application/javascript'
87
- });
88
- return new Worker(URL.createObjectURL(blob), {
89
- type: 'module'
90
- });
91
- }
92
- catch (e) {
93
- alphaTab.Logger.debug('AlphaTab', 'ESM webworker construction with blob import failed', workerUrl, e);
94
- }
95
- // fallback to worker with configurable fallback URL
96
- try {
97
- // Note: prevent bundlers to copy worker as asset
98
- if (!settings.core.scriptFile) {
99
- throw new Error('Could not detect alphaTab script file');
100
- }
101
- workerUrl = settings.core.scriptFile;
102
- const script = `import ${JSON.stringify(settings.core.scriptFile)}`;
103
- const blob = new Blob([script], {
104
- type: 'application/javascript'
105
- });
106
- return new Worker(URL.createObjectURL(blob), {
107
- type: 'module'
108
- });
109
- }
110
- catch (e) {
111
- alphaTab.Logger.debug('AlphaTab', 'ESM webworker construction with blob import failed', settings.core.scriptFile, e);
112
- }
113
- }
114
- // classical browser entry point
115
- if (!settings.core.scriptFile) {
116
- throw new alphaTab.AlphaTabError(alphaTab.AlphaTabErrorType.General, 'Could not detect alphaTab script file, cannot initialize renderer');
117
- }
118
- try {
119
- alphaTab.Logger.debug('AlphaTab', 'Creating Blob worker');
120
- const script = `importScripts('${settings.core.scriptFile}')`;
121
- const blob = new Blob([script], {
122
- type: 'application/javascript'
123
- });
124
- return new Worker(URL.createObjectURL(blob));
125
- }
126
- catch {
127
- alphaTab.Logger.warning('Rendering', 'Could not create inline worker, fallback to normal worker');
128
- return new Worker(settings.core.scriptFile);
129
- }
130
- }, (context, settings) => {
131
- if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.NodeJs) {
132
- throw new alphaTab.AlphaTabError(alphaTab.AlphaTabErrorType.General, 'Audio Worklets not yet supported in Node.js');
133
- }
134
- if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.BrowserModule ||
135
- alphaTab.Environment.isWebPackBundled ||
136
- alphaTab.Environment.isViteBundled) {
137
- alphaTab.Logger.debug('AlphaTab', 'Creating Module worklet');
138
- const alphaTabWorklet = context.audioWorklet; // this name triggers the WebPack Plugin
139
- return alphaTabWorklet.addModule(new alphaTab.Environment.alphaTabUrl('./alphaTab.worklet.mjs', import.meta.url));
140
- }
141
- alphaTab.Logger.debug('AlphaTab', 'Creating Script worklet');
142
- return context.audioWorklet.addModule(settings.core.scriptFile);
143
- });
144
- }
2
+ * alphaTab v1.9.0-alpha.1813 (develop, build 1813)
3
+ *
4
+ * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
+ *
6
+ * This Source Code Form is subject to the terms of the Mozilla Public
7
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
8
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+ *
10
+ * Integrated Libraries:
11
+ *
12
+ * Library: TinySoundFont
13
+ * License: MIT
14
+ * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
+ * URL: https://github.com/schellingb/TinySoundFont
16
+ * Purpose: SoundFont loading and Audio Synthesis
17
+ *
18
+ * Library: SFZero
19
+ * License: MIT
20
+ * Copyright: Copyright (C) 2012 Steve Folta ()
21
+ * URL: https://github.com/stevefolta/SFZero
22
+ * Purpose: TinySoundFont is based on SFZEro
23
+ *
24
+ * Library: Haxe Standard Library
25
+ * License: MIT
26
+ * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
+ * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
+ * Purpose: XML Parser & Zip Inflate Algorithm
29
+ *
30
+ * Library: SharpZipLib
31
+ * License: MIT
32
+ * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
+ * URL: https://github.com/icsharpcode/SharpZipLib
34
+ * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
+ *
36
+ * Library: NVorbis
37
+ * License: MIT
38
+ * Copyright: Copyright (c) 2020 Andrew Ward
39
+ * URL: https://github.com/NVorbis/NVorbis
40
+ * Purpose: Vorbis Stream Decoding
41
+ *
42
+ * Library: libvorbis
43
+ * License: BSD-3-Clause
44
+ * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
+ * URL: https://github.com/xiph/vorbis
46
+ * Purpose: NVorbis adopted some code from libvorbis.
47
+ *
48
+ * @preserve
49
+ * @license
50
+ */
51
+ import * as alphaTab from "./alphaTab.core.mjs";
52
+ export * from "./alphaTab.core.mjs";
53
+ //#region src/alphaTab.main.ts
54
+ if (alphaTab.Environment.isRunningInWorker) alphaTab.Environment.initializeWorker();
55
+ else if (alphaTab.Environment.isRunningInAudioWorklet) alphaTab.Environment.initializeAudioWorklet();
56
+ else alphaTab.Environment.initializeMain((settings) => {
57
+ if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.NodeJs) throw new alphaTab.AlphaTabError(alphaTab.AlphaTabErrorType.General, "Workers not yet supported in Node.js");
58
+ if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.BrowserModule || alphaTab.Environment.isWebPackBundled || alphaTab.Environment.isViteBundled) {
59
+ alphaTab.Logger.debug("AlphaTab", "Creating webworker");
60
+ try {
61
+ return new alphaTab.Environment.alphaTabWorker(new alphaTab.Environment.alphaTabUrl("./alphaTab.worker.mjs", import.meta.url), { type: "module" });
62
+ } catch (e) {
63
+ alphaTab.Logger.debug("AlphaTab", "ESM webworker construction with direct URL failed", e);
64
+ }
65
+ let workerUrl = "";
66
+ try {
67
+ workerUrl = new alphaTab.Environment.alphaTabUrl("./alphaTab.worker.mjs", import.meta.url);
68
+ const script = `import ${JSON.stringify(workerUrl)}`;
69
+ const blob = new Blob([script], { type: "application/javascript" });
70
+ return new Worker(URL.createObjectURL(blob), { type: "module" });
71
+ } catch (e) {
72
+ alphaTab.Logger.debug("AlphaTab", "ESM webworker construction with blob import failed", workerUrl, e);
73
+ }
74
+ try {
75
+ if (!settings.core.scriptFile) throw new Error("Could not detect alphaTab script file");
76
+ workerUrl = settings.core.scriptFile;
77
+ const script = `import ${JSON.stringify(settings.core.scriptFile)}`;
78
+ const blob = new Blob([script], { type: "application/javascript" });
79
+ return new Worker(URL.createObjectURL(blob), { type: "module" });
80
+ } catch (e) {
81
+ alphaTab.Logger.debug("AlphaTab", "ESM webworker construction with blob import failed", settings.core.scriptFile, e);
82
+ }
83
+ }
84
+ if (!settings.core.scriptFile) throw new alphaTab.AlphaTabError(alphaTab.AlphaTabErrorType.General, "Could not detect alphaTab script file, cannot initialize renderer");
85
+ try {
86
+ alphaTab.Logger.debug("AlphaTab", "Creating Blob worker");
87
+ const script = `importScripts('${settings.core.scriptFile}')`;
88
+ const blob = new Blob([script], { type: "application/javascript" });
89
+ return new Worker(URL.createObjectURL(blob));
90
+ } catch {
91
+ alphaTab.Logger.warning("Rendering", "Could not create inline worker, fallback to normal worker");
92
+ return new Worker(settings.core.scriptFile);
93
+ }
94
+ }, (context, settings) => {
95
+ if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.NodeJs) throw new alphaTab.AlphaTabError(alphaTab.AlphaTabErrorType.General, "Audio Worklets not yet supported in Node.js");
96
+ if (alphaTab.Environment.webPlatform === alphaTab.WebPlatform.BrowserModule || alphaTab.Environment.isWebPackBundled || alphaTab.Environment.isViteBundled) {
97
+ alphaTab.Logger.debug("AlphaTab", "Creating Module worklet");
98
+ const { audioWorklet: alphaTabWorklet } = context;
99
+ return alphaTabWorklet.addModule(new alphaTab.Environment.alphaTabUrl("./alphaTab.worklet.mjs", import.meta.url));
100
+ }
101
+ alphaTab.Logger.debug("AlphaTab", "Creating Script worklet");
102
+ return context.audioWorklet.addModule(settings.core.scriptFile);
103
+ });
104
+ //#endregion
@@ -1,51 +1,51 @@
1
1
  /*!
2
- * alphaTab v1.9.0-alpha.1804 (develop, build 1804)
3
- *
4
- * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
- *
6
- * This Source Code Form is subject to the terms of the Mozilla Public
7
- * License, v. 2.0. If a copy of the MPL was not distributed with this
8
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
- *
10
- * Integrated Libraries:
11
- *
12
- * Library: TinySoundFont
13
- * License: MIT
14
- * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
- * URL: https://github.com/schellingb/TinySoundFont
16
- * Purpose: SoundFont loading and Audio Synthesis
17
- *
18
- * Library: SFZero
19
- * License: MIT
20
- * Copyright: Copyright (C) 2012 Steve Folta ()
21
- * URL: https://github.com/stevefolta/SFZero
22
- * Purpose: TinySoundFont is based on SFZEro
23
- *
24
- * Library: Haxe Standard Library
25
- * License: MIT
26
- * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
- * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
- * Purpose: XML Parser & Zip Inflate Algorithm
29
- *
30
- * Library: SharpZipLib
31
- * License: MIT
32
- * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
- * URL: https://github.com/icsharpcode/SharpZipLib
34
- * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
- *
36
- * Library: NVorbis
37
- * License: MIT
38
- * Copyright: Copyright (c) 2020 Andrew Ward
39
- * URL: https://github.com/NVorbis/NVorbis
40
- * Purpose: Vorbis Stream Decoding
41
- *
42
- * Library: libvorbis
43
- * License: BSD-3-Clause
44
- * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
- * URL: https://github.com/xiph/vorbis
46
- * Purpose: NVorbis adopted some code from libvorbis.
47
- *
48
- * @preserve
49
- * @license
50
- */
2
+ * alphaTab v1.9.0-alpha.1813 (develop, build 1813)
3
+ *
4
+ * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
+ *
6
+ * This Source Code Form is subject to the terms of the Mozilla Public
7
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
8
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+ *
10
+ * Integrated Libraries:
11
+ *
12
+ * Library: TinySoundFont
13
+ * License: MIT
14
+ * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
+ * URL: https://github.com/schellingb/TinySoundFont
16
+ * Purpose: SoundFont loading and Audio Synthesis
17
+ *
18
+ * Library: SFZero
19
+ * License: MIT
20
+ * Copyright: Copyright (C) 2012 Steve Folta ()
21
+ * URL: https://github.com/stevefolta/SFZero
22
+ * Purpose: TinySoundFont is based on SFZEro
23
+ *
24
+ * Library: Haxe Standard Library
25
+ * License: MIT
26
+ * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
+ * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
+ * Purpose: XML Parser & Zip Inflate Algorithm
29
+ *
30
+ * Library: SharpZipLib
31
+ * License: MIT
32
+ * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
+ * URL: https://github.com/icsharpcode/SharpZipLib
34
+ * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
+ *
36
+ * Library: NVorbis
37
+ * License: MIT
38
+ * Copyright: Copyright (c) 2020 Andrew Ward
39
+ * URL: https://github.com/NVorbis/NVorbis
40
+ * Purpose: Vorbis Stream Decoding
41
+ *
42
+ * Library: libvorbis
43
+ * License: BSD-3-Clause
44
+ * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
+ * URL: https://github.com/xiph/vorbis
46
+ * Purpose: NVorbis adopted some code from libvorbis.
47
+ *
48
+ * @preserve
49
+ * @license
50
+ */
51
51
  import*as a from"./alphaTab.core.mjs";a.Environment.initializeWorker();
@@ -1,55 +1,55 @@
1
1
  /*!
2
- * alphaTab v1.9.0-alpha.1804 (develop, build 1804)
3
- *
4
- * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
- *
6
- * This Source Code Form is subject to the terms of the Mozilla Public
7
- * License, v. 2.0. If a copy of the MPL was not distributed with this
8
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
- *
10
- * Integrated Libraries:
11
- *
12
- * Library: TinySoundFont
13
- * License: MIT
14
- * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
- * URL: https://github.com/schellingb/TinySoundFont
16
- * Purpose: SoundFont loading and Audio Synthesis
17
- *
18
- * Library: SFZero
19
- * License: MIT
20
- * Copyright: Copyright (C) 2012 Steve Folta ()
21
- * URL: https://github.com/stevefolta/SFZero
22
- * Purpose: TinySoundFont is based on SFZEro
23
- *
24
- * Library: Haxe Standard Library
25
- * License: MIT
26
- * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
- * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
- * Purpose: XML Parser & Zip Inflate Algorithm
29
- *
30
- * Library: SharpZipLib
31
- * License: MIT
32
- * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
- * URL: https://github.com/icsharpcode/SharpZipLib
34
- * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
- *
36
- * Library: NVorbis
37
- * License: MIT
38
- * Copyright: Copyright (c) 2020 Andrew Ward
39
- * URL: https://github.com/NVorbis/NVorbis
40
- * Purpose: Vorbis Stream Decoding
41
- *
42
- * Library: libvorbis
43
- * License: BSD-3-Clause
44
- * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
- * URL: https://github.com/xiph/vorbis
46
- * Purpose: NVorbis adopted some code from libvorbis.
47
- *
48
- * @preserve
49
- * @license
50
- */
51
-
52
- import * as alphaTab from './alphaTab.core.mjs';
53
-
2
+ * alphaTab v1.9.0-alpha.1813 (develop, build 1813)
3
+ *
4
+ * Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
5
+ *
6
+ * This Source Code Form is subject to the terms of the Mozilla Public
7
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
8
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+ *
10
+ * Integrated Libraries:
11
+ *
12
+ * Library: TinySoundFont
13
+ * License: MIT
14
+ * Copyright: Copyright (C) 2017, 2018 Bernhard Schelling
15
+ * URL: https://github.com/schellingb/TinySoundFont
16
+ * Purpose: SoundFont loading and Audio Synthesis
17
+ *
18
+ * Library: SFZero
19
+ * License: MIT
20
+ * Copyright: Copyright (C) 2012 Steve Folta ()
21
+ * URL: https://github.com/stevefolta/SFZero
22
+ * Purpose: TinySoundFont is based on SFZEro
23
+ *
24
+ * Library: Haxe Standard Library
25
+ * License: MIT
26
+ * Copyright: Copyright (C)2005-2025 Haxe Foundation
27
+ * URL: https://github.com/HaxeFoundation/haxe/tree/development/std
28
+ * Purpose: XML Parser & Zip Inflate Algorithm
29
+ *
30
+ * Library: SharpZipLib
31
+ * License: MIT
32
+ * Copyright: Copyright © 2000-2018 SharpZipLib Contributors
33
+ * URL: https://github.com/icsharpcode/SharpZipLib
34
+ * Purpose: Zip Deflate Algorithm for writing compressed Zips
35
+ *
36
+ * Library: NVorbis
37
+ * License: MIT
38
+ * Copyright: Copyright (c) 2020 Andrew Ward
39
+ * URL: https://github.com/NVorbis/NVorbis
40
+ * Purpose: Vorbis Stream Decoding
41
+ *
42
+ * Library: libvorbis
43
+ * License: BSD-3-Clause
44
+ * Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
45
+ * URL: https://github.com/xiph/vorbis
46
+ * Purpose: NVorbis adopted some code from libvorbis.
47
+ *
48
+ * @preserve
49
+ * @license
50
+ */
51
+ import * as alphaTab from "./alphaTab.core.mjs";
52
+ //#region src/alphaTab.worker.ts
54
53
  /**@target web */
55
54
  alphaTab.Environment.initializeWorker();
55
+ //#endregion