From 74ed91d66816391b6cc6b2e657b0338e0ca9b90c Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Sun, 5 May 2019 01:22:38 -0700 Subject: [PATCH 1/5] Set "extensionKind": "ui" to support remote development (#348) * Merge Develop into Master (#320) * Consistent styling throughout README (#314) (#315) Instituted a consistent styling method throughout the README. Before, some phrases would be capitalized in some places and lowercase in others, some phrases would have colons in one place and commas in others, and some of the grammar was slightly off. * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * chore: Update stale configuration * chore: Update deps * fix: Add support to the new FilterWidget. Fix #316. * fix(#312): Fix color highlighting for meta.tag elements * chore: Prepare for 2.7.0 * chore: Update README * fix: accent setter reborn (#319) * Create CODEOWNERS * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Set "extensionKind": "ui" to support remote development Fixes #347. See that issue for more details --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 82800bf..8e2d8bb 100644 --- a/package.json +++ b/package.json @@ -44,6 +44,7 @@ "activationEvents": [ "*" ], + "extensionKind": "ui", "main": "./out/src/material.theme.config", "contributes": { "commands": [ From 1b6ad11e94e3e5a2c3b64b7dd60c93d9db2dd1a1 Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Sun, 5 May 2019 01:24:51 -0700 Subject: [PATCH 2/5] Add support for statusBarItem.remoteBackground (#351) * Merge Develop into Master (#320) * Consistent styling throughout README (#314) (#315) Instituted a consistent styling method throughout the README. Before, some phrases would be capitalized in some places and lowercase in others, some phrases would have colons in one place and commas in others, and some of the grammar was slightly off. * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * chore: Update stale configuration * chore: Update deps * fix: Add support to the new FilterWidget. Fix #316. * fix(#312): Fix color highlighting for meta.tag elements * chore: Prepare for 2.7.0 * chore: Update README * fix: accent setter reborn (#319) * Create CODEOWNERS * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Add support for statusBarItem.remoteBackground --- src/themes/theme-template-color-theme.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 1d0d00b..fe99724 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -724,6 +724,8 @@ "statusBar.debuggingBackground": "{{variant.scheme.base.purple}}", "statusBar.debuggingForeground": "{{variant.scheme.base.white}}", "statusBarItem.hoverBackground": "{{variant.scheme.comments}}20", + "statusBarItem.remoteForeground": "{{variant.scheme.base.black}}", + "statusBarItem.remoteBackground": "{{commons.accents.Teal}}", "activityBar.background": "{{variant.scheme.backgroundAlt}}", "activityBar.border": "{{variant.scheme.contrastBorder}}60", "activityBar.foreground": "{{variant.scheme.foreground}}", From 89afb87ab55e88d58e9604c73bf6463c21e69d78 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Sat, 25 May 2019 16:20:50 +0200 Subject: [PATCH 3/5] fix: Fix meta.function-call highlight --- defaults.json | 2 +- src/themes/theme-template-color-theme.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/defaults.json b/defaults.json index 8350a6b..2c23ec6 100644 --- a/defaults.json +++ b/defaults.json @@ -96,7 +96,7 @@ } }, "changelog": { - "lastversion": "2.8.0" + "lastversion": "2.8.2" }, "themeVariants": { "Darker": "./themes/Material-Theme-Darker.json", diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index fe99724..c62ca0b 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -131,7 +131,6 @@ "name": "Function, Special Method", "scope": [ "entity.name.function", - "meta.function-call", "variable.function", "support.function", "keyword.other.special-method" From 4f70e18cc76d34bc205bc4e11c9ab1f92123e074 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Sat, 25 May 2019 16:33:54 +0200 Subject: [PATCH 4/5] fix: Improve find highlight --- src/themes/theme-template-color-theme.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index c62ca0b..c592d51 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -692,6 +692,9 @@ "editor.lineHighlightBackground": "{{variant.scheme.lineHighlight}}50", "editor.selectionBackground": "{{variant.scheme.selection}}", "editor.selectionHighlightBackground": "{{variant.scheme.caret}}20", + "editor.findMatchBackground": "{{variant.scheme.base.pink}}", + "editorOverviewRuler.findMatchForeground": "{{variant.scheme.base.pink}}60", + "editor.findMatchHighlightBackground": "{{variant.scheme.base.pink}}60", "editorOverviewRuler.border": "{{variant.scheme.background}}", "editorOverviewRuler.errorForeground": "{{variant.scheme.base.red}}40", "editorOverviewRuler.infoForeground": "{{variant.scheme.base.blue}}40", From 8d391ae34cbc1a39753881391bebd4344a7cc90c Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Sat, 25 May 2019 16:45:07 +0200 Subject: [PATCH 5/5] chore: Update readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6e590b6..d9dfc24 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,12 @@ The most epic theme meets Visual Studio Code. You can help by reporting issues [ - [Getting started](#getting-started) - [Installation](#installation) - - [Packaged VSIX Extension](#packaged-vsix-extension) + - [Packaged VSIX Extension](#packaged-vsix-extension) - [GitHub Repository Clone](#github-repository-clone) - - [Activate theme](#activate-theme) - - [Set the accent color](#set-the-accent-color) - - [Override theme colors](#override-theme-colors) - - [Color Scheme override](#color-scheme-override) +- [Activate theme](#activate-theme) +- [Set the accent color](#set-the-accent-color) +- [Override theme colors](#override-theme-colors) + - [Color Scheme override](#color-scheme-override) - [Recommended settings for a better experience](#recommended-settings-for-a-better-experience) - [Official Portings](#official-portings) - [Other resources](#other-resources)