Skip to content

Commit

Permalink
Merge pull request #14 from r-koubou/release/v0.7.20
Browse files Browse the repository at this point in the history
Release/v0.7.20
  • Loading branch information
r-koubou committed Jan 1, 2023
2 parents e2612aa + a6cbe63 commit e230838
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 10 deletions.
79 changes: 79 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,84 @@
# Changelog

## Version 0.7.20

### KONTAKT 7.1.0 ready

Added Syntax highlighting.

#### Variable

- $BUS_IDX
- $CHANNEL_L
- $CHANNEL_R
- $EFFECT_TYPE_PSYCHEDELAY
- $EFFECT_TYPE_RINGMOD
- $ENGINE_PAR_FLEXENV_LOOP
- $ENGINE_PAR_FLEXENV_ONESHOT
- $ENGINE_PAR_IRC_AUTO_GAIN
- $ENGINE_PAR_LFO_PHASE
- $ENGINE_PAR_MOD_TARGET_MP_INTENSITY
- $ENGINE_PAR_PSYDL_CROSS_FEEDBACK
- $ENGINE_PAR_PSYDL_DETUNE
- $ENGINE_PAR_PSYDL_DETUNE_STEREO
- $ENGINE_PAR_PSYDL_FEEDBACK
- $ENGINE_PAR_PSYDL_LR_OFFSET
- $ENGINE_PAR_PSYDL_PITCH
- $ENGINE_PAR_PSYDL_REVERSE
- $ENGINE_PAR_PSYDL_REVERSE_STEREO
- $ENGINE_PAR_PSYDL_TIME
- $ENGINE_PAR_PSYDL_TIME_UNIT
- $ENGINE_PAR_RINGMOD_EDGE
- $ENGINE_PAR_RINGMOD_FAST_MODE
- $ENGINE_PAR_RINGMOD_FM
- $ENGINE_PAR_RINGMOD_FREQUENCY
- $ENGINE_PAR_RINGMOD_LFO_AMOUNT
- $ENGINE_PAR_RINGMOD_LFO_RATE
- $ENGINE_PAR_RINGMOD_LFO_WAVE
- $ENGINE_PAR_RINGMOD_RING
- $ENGINE_PAR_STEPMOD_ONESHOT
- $ENGINE_PAR_STEPMOD_STEPS
- $ENGINE_PAR_STEPMOD_STEP_VALUE
- $ENGINE_PAR_STEPSEQ_NUM_STEPS
- $ENGINE_PAR_STEPSEQ_ONESHOT
- $ENGINE_PAR_STEPSEQ_STEP_VALUE
- $ENGINE_PAR_TM_LEGATO
- $EVENT_PAR_MOD_VALUE_ID_FULL

This comment has been minimized.

Copy link
@mkruselj

mkruselj Feb 16, 2023

@r-koubou This one is actually incorrect. It was like that in the initial beta version, but for release version of K7.1 it was renamed to $EVENT_PAR_MOD_VALUE_EX_ID.

This comment has been minimized.

Copy link
@r-koubou

r-koubou May 27, 2023

Author Owner

Done -> #16

- $FILTER_TYPE_SV_BP6
- $FILTER_TYPE_SV_HP6
- $FILTER_TYPE_SV_LP6
- $FILTER_TYPE_SV_NOTCH6
- $GROUP_IDX
- $NI_NOT_FOUND
- $NI_RINGMOD_LFO_WAVE_SINE
- $NI_RINGMOD_LFO_WAVE_SQUARE
- $NI_ZONE_STATUS_EMPTY
- $NI_ZONE_STATUS_IGNORED
- $NI_ZONE_STATUS_LOADED
- $NI_ZONE_STATUS_PURGED
- $NUM_KNOBS
- $SLOT_IDX
- $ZONE_PAR_BPM
- $ZONE_PAR_SAMPLE_RATE
- %ID
- ?XY1

#### Command

- cbrt
- get_control_par_real_arr
- get_group_idx
- get_mod_idx
- get_num_zones
- get_target_idx
- get_zone_id
- get_zone_status
- int
- real
- set_control_par_real_arr
- sgn
- signbit

## Version 0.7.19

### KONTAKT 6.7.0 ready
Expand Down
3 changes: 0 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<small>[English is here](https://github.com/r-koubou/vscode-ksp/blob/master/README.md)</small>

![](https://vsmarketplacebadge.apphb.com/version/rkoubou.ksp.svg
) ![](https://vsmarketplacebadge.apphb.com/installs-short/rkoubou.ksp.svg
)

# Language support for NI KONTAKT(TM) Script Processor (KSP)

Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<small>[日本語はコチラ](https://github.com/r-koubou/vscode-ksp/blob/master/README.ja.md)</small>

![](https://vsmarketplacebadge.apphb.com/version/rkoubou.ksp.svg
) ![](https://vsmarketplacebadge.apphb.com/installs-short/rkoubou.ksp.svg
)

# Language support for NI KONTAKT(TM) Script Processor (KSP)

## KSP Compatibility
Expand Down
5 changes: 5 additions & 0 deletions clean.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off

if exist .\node_modules rmdir /q /s .\node_modules
if exist .\out rmdir /q /s .\out
npm cache clean --force
5 changes: 5 additions & 0 deletions compile.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off

if exist .\out rmdir /q /s .\out

tsc -p .
6 changes: 3 additions & 3 deletions 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.19",
"version": "0.7.20",
"preview": false,
"publisher": "rkoubou",
"homepage": "https://r-koubou.net",
Expand Down Expand Up @@ -43,8 +43,8 @@
"devDependencies": {
"@types/node": "^6.14.9",
"@types/vscode": "^1.64.0",
"typescript": "^3.1.1",
"vsce": "^2.6.7"
"typescript": "^4.9.4",
"@vscode/vsce": "^2.6.7"
},
"categories": [
"Programming Languages",
Expand Down
6 changes: 6 additions & 0 deletions rebuild.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off

call clean.bat

call npm i
tsc -p .

0 comments on commit e230838

Please sign in to comment.