@coderline/alphatab 1.6.0-alpha.1415 → 1.6.0-alpha.1416
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 +2 -2
- package/dist/alphaTab.core.mjs +12 -6
- package/dist/alphaTab.d.ts +13 -3
- package/dist/alphaTab.js +12 -6
- package/dist/alphaTab.min.js +2 -2
- package/dist/alphaTab.min.mjs +1 -1
- package/dist/alphaTab.mjs +1 -1
- package/dist/alphaTab.vite.js +1 -1
- package/dist/alphaTab.vite.mjs +1 -1
- package/dist/alphaTab.webpack.js +1 -1
- package/dist/alphaTab.webpack.mjs +1 -1
- package/dist/alphaTab.worker.min.mjs +1 -1
- package/dist/alphaTab.worker.mjs +1 -1
- package/dist/alphaTab.worklet.min.mjs +1 -1
- package/dist/alphaTab.worklet.mjs +1 -1
- package/package.json +1 -1
package/dist/alphaTab.core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab v1.6.0-alpha.
|
|
2
|
+
* alphaTab v1.6.0-alpha.1416 (develop, build 1416)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -1413,7 +1413,7 @@ class SyncPointData {
|
|
|
1413
1413
|
this.barOccurence = 0;
|
|
1414
1414
|
/**
|
|
1415
1415
|
* The modified tempo at which the cursor should move (aka. the tempo played within the external audio track).
|
|
1416
|
-
* This information is used together with
|
|
1416
|
+
* This information is used together with normal tempo changes to calculate how much faster/slower the
|
|
1417
1417
|
* cursor playback is performed to align with the audio track.
|
|
1418
1418
|
*/
|
|
1419
1419
|
this.modifiedTempo = 0;
|
|
@@ -38709,7 +38709,11 @@ class SelectionInfo {
|
|
|
38709
38709
|
*/
|
|
38710
38710
|
class AlphaTabApiBase {
|
|
38711
38711
|
/**
|
|
38712
|
-
* The actual player mode which is currently active
|
|
38712
|
+
* The actual player mode which is currently active.
|
|
38713
|
+
* @remarks
|
|
38714
|
+
* Allows determining whether a backing track or the synthesizer is active in case automatic detection is enabled.
|
|
38715
|
+
* @category Properties - Player
|
|
38716
|
+
* @since 1.6.0
|
|
38713
38717
|
*/
|
|
38714
38718
|
get actualPlayerMode() {
|
|
38715
38719
|
return this._actualPlayerMode;
|
|
@@ -60715,9 +60719,9 @@ class VersionInfo {
|
|
|
60715
60719
|
print(`build date: ${VersionInfo.date}`);
|
|
60716
60720
|
}
|
|
60717
60721
|
}
|
|
60718
|
-
VersionInfo.version = '1.6.0-alpha.
|
|
60719
|
-
VersionInfo.date = '2025-05-19T16:
|
|
60720
|
-
VersionInfo.commit = '
|
|
60722
|
+
VersionInfo.version = '1.6.0-alpha.1416';
|
|
60723
|
+
VersionInfo.date = '2025-05-19T16:41:23.634Z';
|
|
60724
|
+
VersionInfo.commit = '4aff072e1be5292482c3d77f434dd1555b6cbb8d';
|
|
60721
60725
|
|
|
60722
60726
|
/**
|
|
60723
60727
|
* A factory for custom layout engines.
|
|
@@ -65031,9 +65035,11 @@ const _barrel = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
|
65031
65035
|
ActiveBeatsChangedEventArgs,
|
|
65032
65036
|
AlphaSynth,
|
|
65033
65037
|
AlphaSynthAudioWorkletOutput,
|
|
65038
|
+
AlphaSynthBase,
|
|
65034
65039
|
AlphaSynthScriptProcessorOutput,
|
|
65035
65040
|
AlphaSynthWebAudioOutputBase,
|
|
65036
65041
|
AlphaSynthWebWorkerApi,
|
|
65042
|
+
BackingTrackSyncPoint,
|
|
65037
65043
|
CircularSampleBuffer,
|
|
65038
65044
|
MidiEventsPlayedEventArgs,
|
|
65039
65045
|
PlaybackRange,
|
package/dist/alphaTab.d.ts
CHANGED
|
@@ -473,11 +473,19 @@ export declare class AlphaTabApiBase<TSettings> {
|
|
|
473
473
|
private _player;
|
|
474
474
|
private _renderer;
|
|
475
475
|
/**
|
|
476
|
-
* The actual player mode which is currently active
|
|
476
|
+
* The actual player mode which is currently active.
|
|
477
|
+
* @remarks
|
|
478
|
+
* Allows determining whether a backing track or the synthesizer is active in case automatic detection is enabled.
|
|
479
|
+
* @category Properties - Player
|
|
480
|
+
* @since 1.6.0
|
|
477
481
|
*/
|
|
478
482
|
get actualPlayerMode(): PlayerMode;
|
|
479
483
|
/**
|
|
480
|
-
*
|
|
484
|
+
* The UI facade used for interacting with the user interface (like the browser).
|
|
485
|
+
* @remarks
|
|
486
|
+
* The implementation depends on the platform alphaTab is running in (e.g. the web version in the browser, WPF in .net etc.)
|
|
487
|
+
* @category Properties - Core
|
|
488
|
+
* @since 0.9.4
|
|
481
489
|
*/
|
|
482
490
|
readonly uiFacade: IUiFacade<TSettings>;
|
|
483
491
|
/**
|
|
@@ -13477,7 +13485,7 @@ declare class SyncPointData {
|
|
|
13477
13485
|
barOccurence: number;
|
|
13478
13486
|
/**
|
|
13479
13487
|
* The modified tempo at which the cursor should move (aka. the tempo played within the external audio track).
|
|
13480
|
-
* This information is used together with
|
|
13488
|
+
* This information is used together with normal tempo changes to calculate how much faster/slower the
|
|
13481
13489
|
* cursor playback is performed to align with the audio track.
|
|
13482
13490
|
*/
|
|
13483
13491
|
modifiedTempo: number;
|
|
@@ -13490,6 +13498,7 @@ declare class SyncPointData {
|
|
|
13490
13498
|
|
|
13491
13499
|
export declare namespace synth {
|
|
13492
13500
|
export {
|
|
13501
|
+
AlphaSynthBase,
|
|
13493
13502
|
AlphaSynth,
|
|
13494
13503
|
CircularSampleBuffer,
|
|
13495
13504
|
PlaybackRange,
|
|
@@ -13497,6 +13506,7 @@ export declare namespace synth {
|
|
|
13497
13506
|
ISynthOutputDevice,
|
|
13498
13507
|
IBackingTrackSynthOutput,
|
|
13499
13508
|
IAlphaSynth,
|
|
13509
|
+
BackingTrackSyncPoint,
|
|
13500
13510
|
PlayerState,
|
|
13501
13511
|
PlayerStateChangedEventArgs,
|
|
13502
13512
|
PlaybackRangeChangedEventArgs,
|
package/dist/alphaTab.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab v1.6.0-alpha.
|
|
2
|
+
* alphaTab v1.6.0-alpha.1416 (develop, build 1416)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -1419,7 +1419,7 @@
|
|
|
1419
1419
|
this.barOccurence = 0;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* The modified tempo at which the cursor should move (aka. the tempo played within the external audio track).
|
|
1422
|
-
* This information is used together with
|
|
1422
|
+
* This information is used together with normal tempo changes to calculate how much faster/slower the
|
|
1423
1423
|
* cursor playback is performed to align with the audio track.
|
|
1424
1424
|
*/
|
|
1425
1425
|
this.modifiedTempo = 0;
|
|
@@ -38715,7 +38715,11 @@
|
|
|
38715
38715
|
*/
|
|
38716
38716
|
class AlphaTabApiBase {
|
|
38717
38717
|
/**
|
|
38718
|
-
* The actual player mode which is currently active
|
|
38718
|
+
* The actual player mode which is currently active.
|
|
38719
|
+
* @remarks
|
|
38720
|
+
* Allows determining whether a backing track or the synthesizer is active in case automatic detection is enabled.
|
|
38721
|
+
* @category Properties - Player
|
|
38722
|
+
* @since 1.6.0
|
|
38719
38723
|
*/
|
|
38720
38724
|
get actualPlayerMode() {
|
|
38721
38725
|
return this._actualPlayerMode;
|
|
@@ -60721,9 +60725,9 @@
|
|
|
60721
60725
|
print(`build date: ${VersionInfo.date}`);
|
|
60722
60726
|
}
|
|
60723
60727
|
}
|
|
60724
|
-
VersionInfo.version = '1.6.0-alpha.
|
|
60725
|
-
VersionInfo.date = '2025-05-19T16:
|
|
60726
|
-
VersionInfo.commit = '
|
|
60728
|
+
VersionInfo.version = '1.6.0-alpha.1416';
|
|
60729
|
+
VersionInfo.date = '2025-05-19T16:41:23.634Z';
|
|
60730
|
+
VersionInfo.commit = '4aff072e1be5292482c3d77f434dd1555b6cbb8d';
|
|
60727
60731
|
|
|
60728
60732
|
/**
|
|
60729
60733
|
* A factory for custom layout engines.
|
|
@@ -65037,9 +65041,11 @@
|
|
|
65037
65041
|
ActiveBeatsChangedEventArgs,
|
|
65038
65042
|
AlphaSynth,
|
|
65039
65043
|
AlphaSynthAudioWorkletOutput,
|
|
65044
|
+
AlphaSynthBase,
|
|
65040
65045
|
AlphaSynthScriptProcessorOutput,
|
|
65041
65046
|
AlphaSynthWebAudioOutputBase,
|
|
65042
65047
|
AlphaSynthWebWorkerApi,
|
|
65048
|
+
BackingTrackSyncPoint,
|
|
65043
65049
|
CircularSampleBuffer,
|
|
65044
65050
|
MidiEventsPlayedEventArgs,
|
|
65045
65051
|
PlaybackRange,
|