Skip to content

Commit

Permalink
Merge pull request #19 from r-koubou/release/v0.7.22
Browse files Browse the repository at this point in the history
Release/v0.7.22
  • Loading branch information
r-koubou committed May 27, 2023
2 parents e230838 + 323db4a commit 26c4588
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## Version 0.7.22

Fixed internal compiler definition file

## Version 0.7.21

### Fixed incorrect variable name

- [#16](https://github.com/r-koubou/vscode-ksp/issues/16)
- `$EVENT_PAR_MOD_VALUE_ID_FULL` -> `$EVENT_PAR_MOD_VALUE_ID`

## Version 0.7.20

### KONTAKT 7.1.0 ready
Expand Down
2 changes: 1 addition & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## KSP互換

- KONTAKT 6.5.0 / 5.x のKSPに対応しています
- KONTAKT 7.x / 6.x / 5.x のKSPに対応しています

## 機能

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## KSP Compatibility

- KONTAKT 6.5.0 / 5.x
- KONTAKT 7.x / 6.x / 5.x

## Features

Expand Down
2 changes: 2 additions & 0 deletions data/ExtractVariableFromManual.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
"$CON",
"$SIGNA",
"$NI_DETECT_INSTRU",
# Beta version only (removed)
"$EVENT_PAR_MOD_VALUE_ID_FULL",
]

def appendWord( word, targetList ):
Expand Down
Binary file modified data/KSP_Completion.xlsx
Binary file not shown.
2 changes: 1 addition & 1 deletion kspparser/data/symbols/variables.txt
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ I EVENT_PAR_MIDI_BYTE_2 Y
I EVENT_PAR_MIDI_CHANNEL Y
I EVENT_PAR_MIDI_COMMAND Y
I EVENT_PAR_MOD_VALUE_ID Y
I EVENT_PAR_MOD_VALUE_ID_FULL Y
I EVENT_PAR_MOD_VALUE_EX_ID Y
I EVENT_PAR_NOTE Y
I EVENT_PAR_NOTE_LENGTH Y
I EVENT_PAR_PAN Y
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ksp",
"displayName": "KONTAKT Script Processor (KSP)",
"description": "Language support for NI KONTAKT(TM) Script Processor (KSP)",
"version": "0.7.20",
"version": "0.7.22",
"preview": false,
"publisher": "rkoubou",
"homepage": "https://r-koubou.net",
Expand Down
2 changes: 1 addition & 1 deletion src/features/generated/KSPBuiltinVariableNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,8 +643,8 @@ export var BuiltinVariableNames : string[] = [
"$EVENT_PAR_MIDI_BYTE_2",
"$EVENT_PAR_MIDI_CHANNEL",
"$EVENT_PAR_MIDI_COMMAND",
"$EVENT_PAR_MOD_VALUE_EX_ID",
"$EVENT_PAR_MOD_VALUE_ID",
"$EVENT_PAR_MOD_VALUE_ID_FULL",
"$EVENT_PAR_NOTE",
"$EVENT_PAR_NOTE_LENGTH",
"$EVENT_PAR_PAN",
Expand Down
4 changes: 2 additions & 2 deletions src/features/generated/KSPCompletionVariable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3848,11 +3848,11 @@
"signature": "",
"description": "Built-in Variable: $EVENT_PAR_MOD_VALUE_ID"
},
"$EVENT_PAR_MOD_VALUE_ID_FULL":
"$EVENT_PAR_MOD_VALUE_EX_ID":
{
"snippet_string": "",
"signature": "",
"description": "Built-in Variable: $EVENT_PAR_MOD_VALUE_ID_FULL"
"description": "Built-in Variable: $EVENT_PAR_MOD_VALUE_EX_ID"
},
"$EVENT_PAR_NOTE":
{
Expand Down

0 comments on commit 26c4588

Please sign in to comment.