Merge branch 'develop'

This commit is contained in:
Mattia Astorino 2018-03-08 15:05:09 +01:00
commit 0d3b6002ed
15 changed files with 100 additions and 13 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -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. 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.
<a name="1.5.0"></a>
# [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))
<a name="1.4.0"></a> <a name="1.4.0"></a>
# [1.4.0](https://github.com/equinusocio/vsc-material-theme/compare/v1.3.0...v1.4.0) (2018-02-19) # [1.4.0](https://github.com/equinusocio/vsc-material-theme/compare/v1.3.0...v1.4.0) (2018-02-19)

View file

@ -1,6 +1,5 @@
<p align="center"><img width="620px" src="https://i.imgur.com/77xXWrA.jpg"/></p> <p align="center"><img width="980px" src="https://image.ibb.co/mGCtnn/Material_Theme.gif"></p>
<p align="center"><img width="450px" src="https://i.imgur.com/JXb5aRO.jpg"></p>
[![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) [![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) [![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 [
<!-- /TOC --> <!-- /TOC -->
<details>
<summary>Screenshots</summary>
<p align="center">
<img src="https://image.ibb.co/jUrdnn/material_theme_lighter.png" border="0">
<img src="https://image.ibb.co/gF6dnn/material_theme_default.png" border="0">
<img src="https://image.ibb.co/gSW007/material_theme_darker.png" border="0">
<img src="https://image.ibb.co/jnBdnn/material_theme_palenight.png" border="0">
</p>
</details>
# Getting started # Getting started
You can install this awesome theme through the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme). You can install this awesome theme through the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme).

View file

@ -35,7 +35,7 @@
"_folder_ci_open" "_folder_ci_open"
], ],
"changelog": { "changelog": {
"lastversion": "1.3.0" "lastversion": "1.5.0"
}, },
"icons": { "icons": {
"theme": { "theme": {

Binary file not shown.

BIN
logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 262 KiB

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "vsc-material-theme", "name": "vsc-material-theme",
"version": "1.4.0", "version": "1.5.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View file

@ -2,12 +2,10 @@
"name": "vsc-material-theme", "name": "vsc-material-theme",
"displayName": "Material Theme", "displayName": "Material Theme",
"description": "The most epic theme now for Visual Studio Code", "description": "The most epic theme now for Visual Studio Code",
"version": "1.4.0", "version": "1.5.0",
"publisher": "Equinusocio", "publisher": "Equinusocio",
"license": "Apache-2.0", "license": "Apache-2.0",
"contributors": [ "author": "Mattia Astorino [@equinusocio]",
"Paolo Roth [@OctoD]"
],
"icon": "logo.png", "icon": "logo.png",
"galleryBanner": { "galleryBanner": {
"color": "#263238", "color": "#263238",
@ -24,6 +22,11 @@
"engines": { "engines": {
"vscode": "^1.19.0" "vscode": "^1.19.0"
}, },
"standard-version": {
"scripts": {
"postchangelog": "yarn gulp changelog-title"
}
},
"scripts": { "scripts": {
"build": "yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants", "build": "yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants",
"minimize-icons": "svgo -f src/icons/svgs -o icons/", "minimize-icons": "svgo -f src/icons/svgs -o icons/",
@ -48,10 +51,9 @@
"contributes": { "contributes": {
"commands": [ "commands": [
{ {
"category": "Material theme", "category": "🎨 Material theme",
"command": "material.theme.config", "command": "material.theme.config",
"title": "Settings", "title": "Settings"
"icon": "./icons/ai.svg"
} }
], ],
"configuration": { "configuration": {
@ -72,7 +74,7 @@
"themes": [ "themes": [
{ {
"label": "Material Theme", "label": "Material Theme",
"path": "./themes/Material-Theme-Darker.json", "path": "./themes/Material-Theme-Palenight.json",
"uiTheme": "vs-dark" "uiTheme": "vs-dark"
} }
], ],

61
test/source.css vendored
View file

@ -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;
}