@coderline/alphatab-language-server 1.8.0-alpha.1645 → 1.8.0-alpha.1647
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/server.min.mjs +2 -2
- package/dist/server.mjs +33 -2
- package/dist/server.mjs.map +1 -1
- package/package.json +3 -3
package/dist/server.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab Language Server v1.8.0-alpha.
|
|
2
|
+
* alphaTab Language Server v1.8.0-alpha.1647 (develop, build 1647)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -5127,6 +5127,37 @@ const voiceMode = {
|
|
|
5127
5127
|
]
|
|
5128
5128
|
};
|
|
5129
5129
|
|
|
5130
|
+
const chordDiagramsInScore = {
|
|
5131
|
+
tag: '\\chordDiagramsInScore',
|
|
5132
|
+
snippet: '\\chordDiagramsInScore',
|
|
5133
|
+
shortDescription: 'Show inline chord diagrams in score.',
|
|
5134
|
+
longDescription: `Configures whether chord diagrams are shown inline in the score..`,
|
|
5135
|
+
signatures: [
|
|
5136
|
+
{
|
|
5137
|
+
parameters: [
|
|
5138
|
+
{
|
|
5139
|
+
name: 'visibility',
|
|
5140
|
+
shortDescription: 'The visibility of the diagrams',
|
|
5141
|
+
parseMode: alphaTab.importer.alphaTex.ArgumentListParseTypesMode.Optional,
|
|
5142
|
+
defaultValue: 'true',
|
|
5143
|
+
type: alphaTab.importer.alphaTex.AlphaTexNodeType.Ident,
|
|
5144
|
+
values: [
|
|
5145
|
+
{ name: 'true', snippet: 'true', shortDescription: 'Show the diagrams' },
|
|
5146
|
+
{ name: 'false', snippet: 'false', shortDescription: 'Hide the diagrams' }
|
|
5147
|
+
]
|
|
5148
|
+
}
|
|
5149
|
+
]
|
|
5150
|
+
}
|
|
5151
|
+
],
|
|
5152
|
+
examples: [
|
|
5153
|
+
`
|
|
5154
|
+
\\chordDiagramsInScore
|
|
5155
|
+
\\chord ("E" 0 0 1 2 2 0)
|
|
5156
|
+
(0.1 0.2 1.3 2.4 2.5 0.6){ch "E"}
|
|
5157
|
+
`
|
|
5158
|
+
]
|
|
5159
|
+
};
|
|
5160
|
+
|
|
5130
5161
|
const extendBarLines = {
|
|
5131
5162
|
tag: '\\extendBarLines',
|
|
5132
5163
|
snippet: '\\extendBarLines',
|
|
@@ -5174,7 +5205,7 @@ const instrumentMeta = {
|
|
|
5174
5205
|
};
|
|
5175
5206
|
|
|
5176
5207
|
const structuralMetaData = metadata(track, staff, voice);
|
|
5177
|
-
const scoreMetaData = metadata(title, subtitle, artist, album, words, music, wordsAndMusic, copyright, copyright2, instructions, notices, tab, systemsLayout, defaultSystemsLayout, showDynamics, hideDynamics, useSystemSignSeparator, multiBarRest, bracketExtendMode, singleTrackTrackNamePolicy, multiTrackTrackNamePolicy, firstSystemTrackNameMode, otherSystemsTrackNameMode, firstSystemTrackNameOrientation, otherSystemsTrackNameOrientation, extendBarLines);
|
|
5208
|
+
const scoreMetaData = metadata(title, subtitle, artist, album, words, music, wordsAndMusic, copyright, copyright2, instructions, notices, tab, systemsLayout, defaultSystemsLayout, showDynamics, hideDynamics, useSystemSignSeparator, multiBarRest, bracketExtendMode, singleTrackTrackNamePolicy, multiTrackTrackNamePolicy, firstSystemTrackNameMode, otherSystemsTrackNameMode, firstSystemTrackNameOrientation, otherSystemsTrackNameOrientation, extendBarLines, chordDiagramsInScore);
|
|
5178
5209
|
const staffMetaData = metadata(tuning, chord, capo, lyrics, articulation, displayTranspose, transpose, instrumentMeta);
|
|
5179
5210
|
const barMetaData = metadata(ts, ro, rc, ae, ks, clef, ottava, tempo, tf, ac, section, jump, ft, simile, barlineLeft, barlineRight, scale, width, sync, accidentals, spd, sph, spu, db, voiceMode);
|
|
5180
5211
|
const allMetadata = new Map([
|