Skip to content
This repository has been archived by the owner on Aug 16, 2021. It is now read-only.

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jolaleye committed Jun 12, 2019
1 parent b22a98e commit 0eea718
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 1,678 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 Horizon will be documented in this file.

## 2.0.0 (June 12, 2019)

- Rewrite Horizon with Mustache.js templates
- Add Horizon Bright variants ([b12e4fe](https://github.com/jolaleye/horizon-theme-vscode/commit/b12e4fe))
- Redesign [horizontheme.com](https://horizontheme.com) with more previews and a color reference
- Update README ([8f2ceb3](https://github.com/jolaleye/horizon-theme-vscode/commit/8f2ceb3), [b22a98e](https://github.com/jolaleye/horizon-theme-vscode/commit/b22a98e))
- Improve Markdown highlighting (thank you [@twhite96](https://github.com/twhite96))

## 1.8.2 (June 8, 2019)

- Fix Markdown highlighting ([d9cb30c](https://github.com/jolaleye/horizon-theme-vscode/commit/d9cb30c))
Expand Down
23 changes: 20 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "horizon-theme-vscode",
"version": "1.8.2",
"version": "2.0.0",
"author": "Jonathan Olaleye <[email protected]>",
"displayName": "Horizon Theme",
"description": "A beautifully warm dark theme for Visual Studio Code",
"description": "A beautifully warm dual theme for Visual Studio Code",
"publisher": "jolaleye",
"license": "MIT",
"icon": "logo.png",
"scripts": {
"build": "node src/build"
"build": "npm run build:dark && npm run build:bright",
"build:dark": "node src/dark/build",
"build:bright": "node src/bright/build"
},
"engines": {
"vscode": "^1.26.0"
Expand Down Expand Up @@ -42,6 +44,21 @@
"label": "Horizon Bold",
"uiTheme": "vs-dark",
"path": "./themes/horizon-bold.json"
},
{
"label": "Horizon Bright",
"uiTheme": "vs",
"path": "./themes/horizon-bright.json"
},
{
"label": "Horizon Bright Italic",
"uiTheme": "vs",
"path": "./themes/horizon-bright-italic.json"
},
{
"label": "Horizon Bright Bold",
"uiTheme": "vs",
"path": "./themes/horizon-bright-bold.json"
}
]
},
Expand Down
Loading

0 comments on commit 0eea718

Please sign in to comment.