diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf1515..9a314c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Changelog -### 1.0.4 | 2020-07-07 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.4/vspackage) +### 1.0.5 | 2020-07-10 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.5/vspackage) | [open-vsx.org](https://open-vsx.org/extension/Tchoupinax/tilt) +- Supports new keywords: `docker_build_with_restart`, `watch_file`, `min_tilt_version`, `entrypoint`, `resource_deps` +- Change color level for `k8s_resource` keyword + +### 1.0.4 | 2020-07-07 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.4/vspackage) | [open-vsx.org](https://open-vsx.org/extension/Tchoupinax/tilt) + +- Now available on open-vsx.org ! - Supports keywords for `helm_remote` extension (https://github.com/tilt-dev/tilt-extensions/tree/master/helm_remote) - Change child commands to harmonize color diff --git a/package.json b/package.json index 56fb91c..010d81a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "author": "Tchoupinax ", "publisher": "Tchoupinax", "icon": "assets/tilt.png", - "version": "1.0.4", + "version": "1.0.5", "engines": { "vscode": "^1.35.0" }, diff --git a/syntaxes/.tmLanguage.json b/syntaxes/.tmLanguage.json index a5db8cb..b0f1439 100644 --- a/syntaxes/.tmLanguage.json +++ b/syntaxes/.tmLanguage.json @@ -16,7 +16,7 @@ "keywords": { "patterns": [ { - "match": "\\b(k8s_resource|enable_feature|default_registry|ignore|repo_name|live_update|repo_url|set|release_name|username|password|values|fall_back_on|k8s_resource_assembly_version|run|helm|trigger|local_git_repo)\\b", + "match": "\\b(enable_feature|default_registry|resource_deps|entrypoint|ignore|repo_name|live_update|repo_url|set|release_name|username|password|values|fall_back_on|k8s_resource_assembly_version|run|helm|trigger|local_git_repo)\\b", "captures": { "0": { "name": "variable.language" @@ -24,7 +24,7 @@ } }, { - "match": "\\b(docker_build|k8s_yaml|helm_remote|local|load|allow_k8s_contexts|restart_container|sync|port_forwards)\\b", + "match": "\\b(docker_build|k8s_resource|k8s_yaml|helm_remote|local|load|watch_file|min_tilt_version|allow_k8s_contexts|restart_container|sync|port_forwards|docker_build_with_restart)\\b", "captures": { "0": { "name": "keyword.control"