diff --git a/.git-crypt/keys/default/0/E61F81C8BC266CD50E818200F1DB1E2B960F4327.gpg b/.git-crypt/keys/default/0/E61F81C8BC266CD50E818200F1DB1E2B960F4327.gpg new file mode 100644 index 0000000..7629ecf Binary files /dev/null and b/.git-crypt/keys/default/0/E61F81C8BC266CD50E818200F1DB1E2B960F4327.gpg differ diff --git a/.gulp/index.ts b/.gulp/index.ts index dca7e0c..0be9432 100644 Binary files a/.gulp/index.ts and b/.gulp/index.ts differ diff --git a/.gulp/tasks/changelog-title.ts b/.gulp/tasks/changelog-title.ts new file mode 100644 index 0000000..ad86e36 Binary files /dev/null and b/.gulp/tasks/changelog-title.ts differ diff --git a/.gulp/tasks/icons-accents.ts b/.gulp/tasks/icons-accents.ts index f31866a..cc7b0f8 100644 Binary files a/.gulp/tasks/icons-accents.ts and b/.gulp/tasks/icons-accents.ts differ diff --git a/.gulp/tasks/icons-variants.ts b/.gulp/tasks/icons-variants.ts index f828c62..751269f 100644 Binary files a/.gulp/tasks/icons-variants.ts and b/.gulp/tasks/icons-variants.ts differ diff --git a/CHANGELOG.md b/CHANGELOG.md index dcee200..18631ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,22 @@ -# Change Log +# Material Theme Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [1.5.0](https://github.com/equinusocio/vsc-material-theme/compare/v1.4.0...v1.5.0) (2018-03-08) + + +### Bug Fixes + +* Add support for the new notifications UX ([008bac1](https://github.com/equinusocio/vsc-material-theme/commit/008bac1)) + + +### Features + +* Highlight line number on selected line ([cf69a74](https://github.com/equinusocio/vsc-material-theme/commit/cf69a74)) + + + # [1.4.0](https://github.com/equinusocio/vsc-material-theme/compare/v1.3.0...v1.4.0) (2018-02-19) diff --git a/README.md b/README.md index da34561..f6a627a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -

-

+

[![Twitter](https://img.shields.io/twitter/url/https/github.com/equinusocio/vsc-material-theme.svg?style=flat-square)](https://twitter.com/intent/tweet?text=This%20is%20the%20most%20epic%20theme:&url=https%3A%2F%2Fgithub.com%2Fequinusocio%2Fvsc-material-theme) [![GitHub tag](https://img.shields.io/github/release/equinusocio/vsc-material-theme.svg?style=flat-square)](https://github.com/equinusocio/vsc-material-theme/releases) @@ -27,6 +26,16 @@ The most epic theme meets Visual Studio Code. You can help by reporting issues [ +
+ Screenshots +

+ + + + +

+
+ # Getting started You can install this awesome theme through the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme). diff --git a/extensions/commands/accents-setter/index.ts b/extensions/commands/accents-setter/index.ts index e99a83e..88bec88 100644 Binary files a/extensions/commands/accents-setter/index.ts and b/extensions/commands/accents-setter/index.ts differ diff --git a/extensions/defaults.json b/extensions/defaults.json index e22c751..f781789 100644 --- a/extensions/defaults.json +++ b/extensions/defaults.json @@ -35,7 +35,7 @@ "_folder_ci_open" ], "changelog": { - "lastversion": "1.3.0" + "lastversion": "1.5.0" }, "icons": { "theme": { diff --git a/extensions/material.theme.config.ts b/extensions/material.theme.config.ts index 2e684da..8e78d65 100644 Binary files a/extensions/material.theme.config.ts and b/extensions/material.theme.config.ts differ diff --git a/logo.png b/logo.png index e65e557..c30b64f 100644 Binary files a/logo.png and b/logo.png differ diff --git a/package-lock.json b/package-lock.json index c784c7e..9c9695b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vsc-material-theme", - "version": "1.4.0", + "version": "1.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5435344..1e95a20 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,10 @@ "name": "vsc-material-theme", "displayName": "Material Theme", "description": "The most epic theme now for Visual Studio Code", - "version": "1.4.0", + "version": "1.5.0", "publisher": "Equinusocio", "license": "Apache-2.0", - "contributors": [ - "Paolo Roth [@OctoD]" - ], + "author": "Mattia Astorino [@equinusocio]", "icon": "logo.png", "galleryBanner": { "color": "#263238", @@ -24,6 +22,11 @@ "engines": { "vscode": "^1.19.0" }, + "standard-version": { + "scripts": { + "postchangelog": "yarn gulp changelog-title" + } + }, "scripts": { "build": "yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants", "minimize-icons": "svgo -f src/icons/svgs -o icons/", @@ -48,10 +51,9 @@ "contributes": { "commands": [ { - "category": "Material theme", + "category": "🎨 Material theme", "command": "material.theme.config", - "title": "Settings", - "icon": "./icons/ai.svg" + "title": "Settings" } ], "configuration": { @@ -72,7 +74,7 @@ "themes": [ { "label": "Material Theme", - "path": "./themes/Material-Theme-Darker.json", + "path": "./themes/Material-Theme-Palenight.json", "uiTheme": "vs-dark" } ], diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 755b4c1..c671259 100644 Binary files a/src/themes/theme-template-color-theme.json and b/src/themes/theme-template-color-theme.json differ diff --git a/test/source.css b/test/source.css index e69de29..8214563 100644 --- a/test/source.css +++ b/test/source.css @@ -0,0 +1,61 @@ + +body { + font-family: arial; +} + +h1, p, table { + background-color:#CCC; + border: 1px solid; + color:#39F; + text-align: center; + width: 100%; +} + +.addon-store .pagehead h1 +.addon-store .addon-summary:after { clear: both } + +#addon-store .pagehead .electrocat-small { + bottom: -7px; + position: absolute; + right: 0; +} + +.addon-store .addons-nav a.selected { + border-bottom-color: #d26911; + color: #333; + font-weight: bold; + padding: 0 0 14px; +} + +.addon-store .addon-icon { + background: #fff; + border: 1px solid #ddd; + box-shadow: 0 1px 2px rgba(0,0,0,0.15); + float: left; + height: 80px; + margin-right: 14px; + width: 80px; +} + +.addon-store .developer-callout { + background-color: #f1f1f1; + background-image: -moz-linear-gradient(#fafafa, #f1f1f1); + background-image: -webkit-linear-gradient(#fafafa, #f1f1f1); + background-image: linear-gradient(#fafafa, #f1f1f1); + background-repeat: repeat-x; + border: 1px solid #ddd; + border-bottom: 1px solid #ccc; + border-radius: 3px; + box-shadow: inset 0 1px 0 #fff, 0 1px 5px #f1f1f1; + margin-top: 40px; + text-shadow: 0 1px 0 #fff; +} + +.addon-field-editor .addon-field-list, .addon-field-editor .addon-new-field { + -moz-box-sizing: border-box; + border-radius: 3px; + box-sizing: border-box; + display: inline-block; + text-align: center; + width: 595px; +} \ No newline at end of file