@coderline/alphatab 1.9.0-alpha.1806 → 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.
- package/dist/alphaTab.core.min.mjs +50 -50
- package/dist/alphaTab.core.mjs +68576 -81263
- package/dist/alphaTab.js +69407 -82079
- package/dist/alphaTab.min.js +50 -50
- package/dist/alphaTab.min.mjs +50 -50
- package/dist/alphaTab.mjs +103 -143
- package/dist/alphaTab.worker.min.mjs +49 -49
- package/dist/alphaTab.worker.mjs +52 -52
- package/dist/alphaTab.worklet.min.mjs +49 -49
- package/dist/alphaTab.worklet.mjs +52 -52
- package/package.json +8 -8
|
@@ -1,51 +1,51 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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.initializeAudioWorklet();
|
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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.worklet.ts
|
|
54
53
|
/**@target web */
|
|
55
54
|
alphaTab.Environment.initializeAudioWorklet();
|
|
55
|
+
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coderline/alphatab",
|
|
3
|
-
"version": "1.9.0-alpha.
|
|
3
|
+
"version": "1.9.0-alpha.1813",
|
|
4
4
|
"description": "alphaTab is a music notation and guitar tablature rendering library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"guitar",
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"@coderline/alphaskia": "^3.5.147",
|
|
64
64
|
"@coderline/alphaskia-linux": "^3.5.147",
|
|
65
65
|
"@coderline/alphaskia-windows": "^3.5.147",
|
|
66
|
-
"@types/node": "^25.
|
|
67
|
-
"rimraf": "^6.1.
|
|
66
|
+
"@types/node": "^25.9.1",
|
|
67
|
+
"rimraf": "^6.1.3",
|
|
68
68
|
"tslib": "^2.8.1",
|
|
69
|
-
"tsx": "^4.
|
|
70
|
-
"typescript": "^
|
|
71
|
-
"vite": "^
|
|
72
|
-
"vite-plugin-static-copy": "^
|
|
73
|
-
"vitest": "^4.1.
|
|
69
|
+
"tsx": "^4.22.3",
|
|
70
|
+
"typescript": "^6.0.3",
|
|
71
|
+
"vite": "^8.0.14",
|
|
72
|
+
"vite-plugin-static-copy": "^4.1.0",
|
|
73
|
+
"vitest": "^4.1.7"
|
|
74
74
|
},
|
|
75
75
|
"files": [
|
|
76
76
|
"/dist/alphaTab*.js",
|