From 8f130d46142a7955c794e60367c1800d93041d5e Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Mon, 9 Jul 2018 22:03:58 +0200 Subject: [PATCH 1/6] fix: Add coldfusion file icon Close #222 --- src/icons/partials/fileExtensions.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/icons/partials/fileExtensions.js b/src/icons/partials/fileExtensions.js index 7873616..c0bb70a 100644 --- a/src/icons/partials/fileExtensions.js +++ b/src/icons/partials/fileExtensions.js @@ -1,4 +1,6 @@ "fileExtensions": { + "cfc": "_file_coldfusion", + "cfm": "_file_coldfusion", "mdx": "_file_mdx", "lnk": "_file_lnk", "pm": "_file_perl", From cdeaa5fcac8f03ebe702bab8a39b222785c613a4 Mon Sep 17 00:00:00 2001 From: Lucas Stoque Date: Tue, 10 Jul 2018 17:01:47 -0300 Subject: [PATCH 2/6] feat: Add .env.development, .env.testing, .env.staging, .env-production to supported filenames (#225) --- src/icons/partials/fileNames.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/icons/partials/fileNames.js b/src/icons/partials/fileNames.js index 814445a..7cdede2 100644 --- a/src/icons/partials/fileNames.js +++ b/src/icons/partials/fileNames.js @@ -66,6 +66,10 @@ ".editorconfig": "_file_settings", "procfile": "_file_procfile", ".env": "_file_tune", + ".env.development": "_file_tune", + ".env.testing": "_file_tune", + ".env.staging": "_file_tune", + ".env.production": "_file_tune", "dockerfile": "_file_docker", "license": "_file_license", "license.md": "_file_license", From 032dd7d6feb76c1be04afb42c3b9b367f7b7d4da Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Wed, 25 Jul 2018 22:30:13 +0200 Subject: [PATCH 3/6] chore: add keywords meta --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index e885ab2..978cef4 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,10 @@ "Themes", "Other" ], + "keywords": [ + "VSCode", + "Themes" + ], "activationEvents": [ "*" ], From e98cb888bf84be1a1f6e36cd15f638781f10b508 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Mon, 30 Jul 2018 10:02:02 +0200 Subject: [PATCH 4/6] fix: Extend graphql support for file icon Close #226 --- src/icons/partials/fileExtensions.js | 1 + src/icons/partials/fileNames.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/icons/partials/fileExtensions.js b/src/icons/partials/fileExtensions.js index c0bb70a..50ca150 100644 --- a/src/icons/partials/fileExtensions.js +++ b/src/icons/partials/fileExtensions.js @@ -252,6 +252,7 @@ "txt": "_file_document", "sqlite": "_file_database", "graphql": "_file_graphql", + "graphqlconfig": "_file_graphql", "gql": "_file_graphql", "props": "_file_settings", "toml": "_file_settings", diff --git a/src/icons/partials/fileNames.js b/src/icons/partials/fileNames.js index 7cdede2..315167a 100644 --- a/src/icons/partials/fileNames.js +++ b/src/icons/partials/fileNames.js @@ -1,4 +1,6 @@ "fileNames": { + ".graphqlconfig.yml": "_file_graphql", + ".graphqlconfig.yaml": "_file_graphql", "prettier.config.js": "_file_prettier", ".prettierrc.js": "_file_prettier", ".prettierrc.json": "_file_prettier", From 681db679b94b83128065e2288651fe62fbbaae5b Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Thu, 9 Aug 2018 22:02:50 +0200 Subject: [PATCH 5/6] feat: Add support for custom menus and menubar on Windows/Linux (vscode v1.26.0) Close #228 --- extensions/defaults.json | 12 ++++++++++++ src/themes/theme-template-color-theme.json | 14 +++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/extensions/defaults.json b/extensions/defaults.json index 236daf6..bea1892 100644 --- a/extensions/defaults.json +++ b/extensions/defaults.json @@ -96,6 +96,18 @@ "panelTitle.activeBorder": { "alpha": 100, "value": null + }, + "breadcrumb.activeSelectionForeground": { + "alpha": 100, + "value": null + }, + "menu.selectionForeground": { + "alpha": 100, + "value": null + }, + "menubar.selectionForeground": { + "alpha": 100, + "value": null } }, "changelog": { diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 80a4f45..1ad3368 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -823,6 +823,18 @@ "gitDecoration.untrackedResourceForeground": "{{variant.scheme.base.green}}90", "gitDecoration.ignoredResourceForeground": "{{variant.scheme.sidebarForeground}}90", "peekViewResult.selectionBackground": "{{variant.scheme.sidebarForeground}}70", - "settings.modifiedItemForeground": "{{commons.accents.Teal}}" + "settings.modifiedItemForeground": "{{commons.accents.Teal}}", + "breadcrumb.foreground": "{{variant.scheme.sidebarForeground}}", + "breadcrumb.focusForeground": "{{variant.scheme.foreground}}", + "breadcrumb.activeSelectionForeground": "{{commons.accents.Teal}}", + "breadcrumbPicker.background": "{{variant.scheme.backgroundAlt}}", + "menu.background": "{{variant.scheme.background}}", + "menu.foreground": "{{variant.scheme.sidebarForeground}}", + "menu.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}", + "menu.selectionForeground": "{{commons.accents.Teal}}", + "menu.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}", + "menubar.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}", + "menubar.selectionForeground": "{{commons.accents.Teal}}", + "menubar.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}" } } From c91cc8cc0fc4661fdb183885e786d847c2bad785 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Thu, 9 Aug 2018 22:13:03 +0200 Subject: [PATCH 6/6] BREAKING CHANGE: Material Theme requires now Visual Studio Code >= v1.24.0 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 978cef4..8e58291 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "url": "https://github.com/equinusocio/vsc-material-theme/issues" }, "engines": { - "vscode": "^1.19.0" + "vscode": "^1.24.0" }, "standard-version": { "scripts": { @@ -81,7 +81,7 @@ ], "configuration": { "type": "object", - "title": "Material Theme configuration", + "title": "Material Theme", "properties": { "materialTheme.accent": { "type": "string",