@coderline/alphatab 1.5.0-alpha.1396 → 1.6.0-alpha.1397
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.header +4 -1
- package/dist/alphaTab.core.min.mjs +51 -1
- package/dist/alphaTab.core.mjs +10 -5
- package/dist/alphaTab.js +10 -5
- package/dist/alphaTab.min.js +51 -0
- package/dist/alphaTab.min.mjs +51 -1
- package/dist/alphaTab.mjs +7 -2
- package/dist/alphaTab.vite.js +7 -2
- package/dist/alphaTab.vite.mjs +7 -2
- package/dist/alphaTab.webpack.js +7 -2
- package/dist/alphaTab.webpack.mjs +7 -2
- package/dist/alphaTab.worker.min.mjs +51 -1
- package/dist/alphaTab.worker.mjs +7 -2
- package/dist/alphaTab.worklet.min.mjs +51 -1
- package/dist/alphaTab.worklet.mjs +7 -2
- package/package.json +1 -1
package/dist/alphaTab.core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
* alphaTab v1.
|
|
1
|
+
/*!
|
|
2
|
+
* alphaTab v1.6.0-alpha.1397 (develop, build 1397)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -44,8 +44,13 @@
|
|
|
44
44
|
* Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
|
|
45
45
|
* URL: https://github.com/xiph/vorbis
|
|
46
46
|
* Purpose: NVorbis adopted some code from libvorbis.
|
|
47
|
+
*
|
|
48
|
+
* @preserve
|
|
49
|
+
* @license
|
|
47
50
|
*/
|
|
48
51
|
|
|
52
|
+
if(typeof Symbol.dispose==='undefined'){Symbol.dispose = Symbol('Symbol.dispose')}
|
|
53
|
+
|
|
49
54
|
/**
|
|
50
55
|
* Lists all layout modes that are supported.
|
|
51
56
|
*/
|
|
@@ -59288,9 +59293,9 @@ class VersionInfo {
|
|
|
59288
59293
|
print(`build date: ${VersionInfo.date}`);
|
|
59289
59294
|
}
|
|
59290
59295
|
}
|
|
59291
|
-
VersionInfo.version = '1.
|
|
59292
|
-
VersionInfo.date = '2025-05-
|
|
59293
|
-
VersionInfo.commit = '
|
|
59296
|
+
VersionInfo.version = '1.6.0-alpha.1397';
|
|
59297
|
+
VersionInfo.date = '2025-05-04T17:39:41.423Z';
|
|
59298
|
+
VersionInfo.commit = 'bb8f811c764519039ff04a4150baf68f52bc680d';
|
|
59294
59299
|
|
|
59295
59300
|
/**
|
|
59296
59301
|
* A factory for custom layout engines.
|
package/dist/alphaTab.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
* alphaTab v1.
|
|
1
|
+
/*!
|
|
2
|
+
* alphaTab v1.6.0-alpha.1397 (develop, build 1397)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -44,6 +44,9 @@
|
|
|
44
44
|
* Copyright: Copyright (c) 2002-2020 Xiph.org Foundation
|
|
45
45
|
* URL: https://github.com/xiph/vorbis
|
|
46
46
|
* Purpose: NVorbis adopted some code from libvorbis.
|
|
47
|
+
*
|
|
48
|
+
* @preserve
|
|
49
|
+
* @license
|
|
47
50
|
*/
|
|
48
51
|
|
|
49
52
|
(function (global, factory) {
|
|
@@ -52,6 +55,8 @@
|
|
|
52
55
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.alphaTab = {}));
|
|
53
56
|
})(this, (function (exports) { 'use strict';
|
|
54
57
|
|
|
58
|
+
if(typeof Symbol.dispose==='undefined'){Symbol.dispose = Symbol('Symbol.dispose')}
|
|
59
|
+
|
|
55
60
|
/**
|
|
56
61
|
* Lists all layout modes that are supported.
|
|
57
62
|
*/
|
|
@@ -59294,9 +59299,9 @@
|
|
|
59294
59299
|
print(`build date: ${VersionInfo.date}`);
|
|
59295
59300
|
}
|
|
59296
59301
|
}
|
|
59297
|
-
VersionInfo.version = '1.
|
|
59298
|
-
VersionInfo.date = '2025-05-
|
|
59299
|
-
VersionInfo.commit = '
|
|
59302
|
+
VersionInfo.version = '1.6.0-alpha.1397';
|
|
59303
|
+
VersionInfo.date = '2025-05-04T17:39:41.423Z';
|
|
59304
|
+
VersionInfo.commit = 'bb8f811c764519039ff04a4150baf68f52bc680d';
|
|
59300
59305
|
|
|
59301
59306
|
/**
|
|
59302
59307
|
* A factory for custom layout engines.
|