From 882c392c5d8bbf420851665e05334bf2f62f7662 Mon Sep 17 00:00:00 2001 From: Sakari Mursu Date: Sat, 11 Jul 2020 13:39:24 +0300 Subject: [PATCH] Bump version to 0.6.0 --- CHANGELOG.md | 5 +++++ package.json | 2 +- themes/kiboku-color-theme.json | 9 +++++++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4716c70..a0987c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.6.0 + +- Add type coloring to misiing graphql types (scalar and enum) +- Make custom grapqhl types use different color from regular types to distinguis them more easily from the built-in types + ## 0.5.0 - Make word match highlight more prominent by changing it to yellow diff --git a/package.json b/package.json index f6d1bca..22ccc40 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kiboku-vscode-theme", - "version": "0.5.0", + "version": "0.6.0", "displayName": "Kiboku Theme", "description": "Kiboku theme for VS Code", "license": "MIT", diff --git a/themes/kiboku-color-theme.json b/themes/kiboku-color-theme.json index a1b3c7c..8af02b1 100644 --- a/themes/kiboku-color-theme.json +++ b/themes/kiboku-color-theme.json @@ -211,7 +211,7 @@ }, { "name": "Types", - "scope": "entity.name.type, support.type.primitive, support.type.builtin, \tpunctuation.definition.typeparameters.begin, \tpunctuation.definition.typeparameters.end, keyword.operator.nulltype.graphql, support.type.graphql, variable.fragment.graphql", + "scope": "entity.name.type, support.type.primitive, support.type.builtin, \tpunctuation.definition.typeparameters.begin, \tpunctuation.definition.typeparameters.end", "settings": { "foreground": "#FF9CE6" } }, { @@ -221,9 +221,14 @@ }, { "name": "Graphql types", - "scope": "keyword.operator.nulltype.graphql, support.type.graphql", + "scope": "variable.fragment.graphql, keyword.operator.nulltype.graphql, support.type.enum.graphql, entity.scalar.graphql", "settings": { "foreground": "#FF9CE6" } }, + { + "name": "Graphql custom types and function", + "scope": "support.type.graphql, entity.name.function.graphql", + "settings": { "foreground": "#9CB5FF" } + }, { "name": "Graphql variables", "scope": "variable.graphql, variable.fragment.graphql",