@coderline/alphatab-monaco 1.8.0-alpha.1656 → 1.8.0-alpha.1667
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.monaco.mjs +2 -2
- package/dist/alphatex.mjs +2 -2
- package/dist/lsp.mjs +2 -2
- package/dist/lspMonacoMappings.mjs +2 -2
- package/dist/textmate.mjs +2 -2
- package/dist/types.mjs +2 -2
- package/dist/worker.mjs +31 -10
- package/package.json +5 -5
package/dist/alphaTab.monaco.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
package/dist/alphatex.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
package/dist/lsp.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
package/dist/textmate.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
package/dist/types.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
package/dist/worker.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Monaco v1.8.0-alpha.
|
|
2
|
+
* alphaTab Monaco v1.8.0-alpha.1667 (develop, build 1667)
|
|
3
3
|
*
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2026, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
7
7
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
@@ -59,7 +59,8 @@ const ac = {
|
|
|
59
59
|
TripletFeel: alphaTab.model.TripletFeel,
|
|
60
60
|
BarLineStyle: alphaTab.model.BarLineStyle,
|
|
61
61
|
SimileMark: alphaTab.model.SimileMark,
|
|
62
|
-
Direction: alphaTab.model.Direction
|
|
62
|
+
Direction: alphaTab.model.Direction,
|
|
63
|
+
TremoloPickingStyle: alphaTab.model.TremoloPickingStyle
|
|
63
64
|
});
|
|
64
65
|
const alphaTexMappedEnumMapping = {
|
|
65
66
|
WhammyType: {
|
|
@@ -446,6 +447,10 @@ const alphaTexMappedEnumMapping = {
|
|
|
446
447
|
JumpDalSegnoSegnoAlFine: { snippet: 'dalSegnoSegnoAlFine', shortDescription: 'DalSegnoSegnoAlFine (Jump)' },
|
|
447
448
|
JumpDaCoda: { snippet: 'daCoda', shortDescription: 'DaCoda (Jump)' },
|
|
448
449
|
JumpDaDoubleCoda: { snippet: 'daDoubleCoda', shortDescription: 'DaDoubleCoda (Jump)' }
|
|
450
|
+
},
|
|
451
|
+
TremoloPickingStyle: {
|
|
452
|
+
Default: { snippet: 'default', shortDescription: 'Default tremolo' },
|
|
453
|
+
BuzzRoll: { snippet: 'buzzRoll', shortDescription: 'Buzz roll tremolo' }
|
|
449
454
|
}
|
|
450
455
|
};
|
|
451
456
|
function enumParameter(type) {
|
|
@@ -3962,22 +3967,38 @@ const tp = {
|
|
|
3962
3967
|
{
|
|
3963
3968
|
parameters: [
|
|
3964
3969
|
{
|
|
3965
|
-
name: '
|
|
3966
|
-
shortDescription: 'The tremolo
|
|
3970
|
+
name: 'marks',
|
|
3971
|
+
shortDescription: 'The number of tremolo marks',
|
|
3967
3972
|
type: alphaTab.importer.alphaTex.AlphaTexNodeType.Number,
|
|
3968
3973
|
parseMode: alphaTab.importer.alphaTex.ArgumentListParseTypesMode.Required,
|
|
3974
|
+
valuesOnlyForCompletion: true,
|
|
3969
3975
|
values: [
|
|
3970
|
-
{ name: '
|
|
3971
|
-
{ name: '
|
|
3972
|
-
{ name: '
|
|
3976
|
+
{ name: '1', snippet: '1', shortDescription: '1 tremolo mark (8th notes)' },
|
|
3977
|
+
{ name: '2', snippet: '2', shortDescription: '2 tremolo mark (16th notes)' },
|
|
3978
|
+
{ name: '3', snippet: '3', shortDescription: '3 tremolo mark (32nd notes)' },
|
|
3979
|
+
{ name: '4', snippet: '4', shortDescription: '4 tremolo mark (64th notes)' },
|
|
3980
|
+
{ name: '5', snippet: '5', shortDescription: '5 tremolo mark (128th notes)' }
|
|
3973
3981
|
]
|
|
3982
|
+
},
|
|
3983
|
+
{
|
|
3984
|
+
name: 'style',
|
|
3985
|
+
shortDescription: 'The tremolo style',
|
|
3986
|
+
parseMode: alphaTab.importer.alphaTex.ArgumentListParseTypesMode.Optional,
|
|
3987
|
+
...enumParameter('TremoloPickingStyle')
|
|
3974
3988
|
}
|
|
3975
3989
|
]
|
|
3976
3990
|
}
|
|
3977
3991
|
],
|
|
3978
|
-
examples:
|
|
3979
|
-
|
|
3992
|
+
examples: [
|
|
3993
|
+
`
|
|
3994
|
+
3.3{tp 1} 3.3{tp 2} 3.3{tp 3}
|
|
3995
|
+
`,
|
|
3996
|
+
`
|
|
3997
|
+
\\title "Buzz Rolls"
|
|
3998
|
+
3.3{tp (0 buzzRoll)} // no audio
|
|
3999
|
+
3.3{tp (1 buzzRoll)} // 8th notes tremolo shown as buzzroll
|
|
3980
4000
|
`
|
|
4001
|
+
]
|
|
3981
4002
|
};
|
|
3982
4003
|
|
|
3983
4004
|
const tt = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coderline/alphatab-monaco",
|
|
3
|
-
"version": "1.8.0-alpha.
|
|
3
|
+
"version": "1.8.0-alpha.1667",
|
|
4
4
|
"description": "A Monaco editor integration for alphaTab providing coding assistance for alphaTex.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"guitar",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"test": "mocha"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@coderline/alphatab": "^1.8.0-alpha.
|
|
35
|
-
"@coderline/alphatab-language-server": "^1.8.0-alpha.
|
|
34
|
+
"@coderline/alphatab": "^1.8.0-alpha.1667",
|
|
35
|
+
"@coderline/alphatab-language-server": "^1.8.0-alpha.1667",
|
|
36
36
|
"monaco-editor": "^0.55.1",
|
|
37
37
|
"vscode-languageserver-types": "^3.17.5",
|
|
38
38
|
"vscode-oniguruma": "^2.0.1",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@microsoft/api-extractor": "^7.55.2",
|
|
44
44
|
"@types/chai": "^5.2.2",
|
|
45
45
|
"@types/mocha": "^10.0.10",
|
|
46
|
-
"@types/node": "^
|
|
46
|
+
"@types/node": "^25.0.3",
|
|
47
47
|
"assert": "^2.1.0",
|
|
48
|
-
"chai": "^6.2.
|
|
48
|
+
"chai": "^6.2.2",
|
|
49
49
|
"mocha": "^11.7.4",
|
|
50
50
|
"rimraf": "^6.1.2",
|
|
51
51
|
"tslib": "^2.8.1",
|