diff --git a/CHANGELOG.md b/CHANGELOG.md index fad6edc..afba9c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the "matrix-theme" extension will be documented in this file. +## 0.1.3 + +- Removed brackets colorization [#2](https://github.com/UstymUkhman/matrix-theme/issues/2) +- Reduced solid lines brightness [#3](https://github.com/UstymUkhman/matrix-theme/issues/3) +- Removed deprecated settings +- Updated preview and icon images +- Updated README.md and `package.json` files + ## 0.1.2 - `icon.png` resized properly diff --git a/README.md b/README.md index 860cbe5..af036f1 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,17 @@ > Visual Studio Code color theme inspired by [**The Matrix**](https://en.wikipedia.org/wiki/The_Matrix) film. ## Preview -![Project](./images/project.jpg) -![Languages](./images/languages.jpg) +![Project](images/project.jpg) +![Languages](images/languages.jpg) ## Installation 1. Install and Launch [Visual Studio Code](https://code.visualstudio.com/) -2. **Manage** > **Extensions** (or `Ctrl+Shift+X`) -3. Search for `matrix-theme` -4. Click **Install** -5. **Manage** > **Color Theme** > **Matrix** +2. *Settings* > *Extensions* (or `Ctrl+Shift+X`) +3. Search for **Matrix Theme** +4. Click *Install* +5. *Settings* > *Themes* > *Color Theme* > *Matrix Theme* -## Misc +## [Issues](https://github.com/UstymUkhman/matrix-theme/issues) -This is my first foray into creating a theme, so if you see something amiss, please feel free to [file an issue](https://github.com/UstymUkhman/matrix-theme/issues). Any relevant changes for each version are documented in the [changelog](https://github.com/UstymUkhman/matrix-theme/blob/master/CHANGELOG.md), please check it out before filing any issues. +## [Change Log](https://github.com/UstymUkhman/matrix-theme/blob/master/CHANGELOG.md) diff --git a/matrix-theme-0.1.2.vsix b/matrix-theme-0.1.2.vsix deleted file mode 100644 index e80c26e..0000000 Binary files a/matrix-theme-0.1.2.vsix and /dev/null differ diff --git a/matrix-theme-0.1.3.vsix b/matrix-theme-0.1.3.vsix new file mode 100644 index 0000000..10a3e7b Binary files /dev/null and b/matrix-theme-0.1.3.vsix differ diff --git a/package.json b/package.json index 48c2410..6e9040f 100644 --- a/package.json +++ b/package.json @@ -2,44 +2,54 @@ "name": "matrix-theme", "displayName": "Matrix Theme", "description": "Visual Studio Code color theme inspired by \"The Matrix\" film.", - "version": "0.1.2", + "homepage": "https://github.com/UstymUkhman/matrix-theme#readme", "publisher": "UstymUkhman", + "icon": "images/icon.png", + "version": "0.1.3", "license": "MIT", - "homepage": "https://github.com/UstymUkhman/matrix-theme/blob/master/README.md", - "bugs": { - "url": "https://github.com/UstymUkhman/matrix-theme/issues", - "email": "ustym.ukhman@gmail.com" - }, - "repository": { - "type": "git", - "url": "https://github.com/UstymUkhman/matrix-theme" - }, + "categories": [ + "Themes" + ], "keywords": [ - "Theme", - "Dark Theme", - "Matrix", - "Black", - "Green" + "dark", + "theme", + "themes", + "dark-theme", + "color-theme", + "matrix", + "black", + "green" ], - "scripts": { - "publish": "vsce publish" + "engines": { + "vscode": "^1.47.0" }, "galleryBanner": { "color": "#0c0c0c", "theme": "dark" }, - "engines": { - "vscode": "^1.47.0" + "scripts": { + "publish": "vsce publish" + }, + "author": { + "name": "Ustym Ukhman", + "email": "ustym.ukhman@gmail.com", + "url": "https://github.com/UstymUkhman/" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/UstymUkhman/matrix-theme" + }, + "bugs": { + "url": "https://github.com/UstymUkhman/matrix-theme/issues", + "email": "ustym.ukhman@gmail.com" }, - "categories": [ - "Themes" - ], - "icon": "images/icon.png", "contributes": { - "themes": [{ - "label": "Matrix", - "uiTheme": "vs-dark", - "path": "./themes/Matrix-color-theme.json" - }] + "themes": [ + { + "label": "Matrix", + "uiTheme": "vs-dark", + "path": "./themes/Matrix-color-theme.json" + } + ] } } \ No newline at end of file diff --git a/vsc-extension-quickstart.md b/vsc-extension-quickstart.md index 77a6887..3f46ad0 100644 --- a/vsc-extension-quickstart.md +++ b/vsc-extension-quickstart.md @@ -25,4 +25,4 @@ To learn more about scopes and how they're used, check out the [color theme](htt ## Install your extension * To start using your extension with Visual Studio Code copy it into the `/.vscode/extensions` folder and restart Code. -* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension. +* To share your extension with the world, read on [https://code.visualstudio.com/docs](https://code.visualstudio.com/docs) about publishing an extension.