Skip to content

Commit

Permalink
Update to v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
UstymUkhman committed Sep 30, 2023
1 parent 758f413 commit 34fbabc
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 37 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Binary file removed matrix-theme-0.1.2.vsix
Binary file not shown.
Binary file added matrix-theme-0.1.3.vsix
Binary file not shown.
66 changes: 38 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "[email protected]"
},
"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": "[email protected]",
"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": "[email protected]"
},
"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"
}
]
}
}
2 changes: 1 addition & 1 deletion vsc-extension-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<user home>/.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.

0 comments on commit 34fbabc

Please sign in to comment.