Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanraposo committed Dec 7, 2020
1 parent e1ed251 commit b1e7731
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.3.1]

- Fixed various low-level performance issues.

- Fixed outdated links in README.


## [0.3.0]

- Added support for custom-value brightness adjustments (@usernamehw).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Customize your color theme for VS Code.

[![Version](https://img.shields.io/badge/version-0.3.0-red)]()
[![Version](https://img.shields.io/badge/version-0.3.1-red)]()
[![License](https://img.shields.io/badge/license-MIT-blue.svg)]()
</div>

Expand Down Expand Up @@ -55,7 +55,7 @@ The recommended method for installing CodeUI is via the Extension Marketplace, a
Alternatively, you can download the VSIX from [releases](https://github.com/ryanraposo/codeui/releases) and install using the terminal with command:

```
code --install-extension codeui-0.3.0.vsix
code --install-extension codeui-0.3.1.vsix
```

*Note: it may be necessary to reload vscode if installing via the terminal.*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "SEE LICENSE IN LICENSE.md",
"description": "Customize your color theme for VS Code.",
"icon": "resources/marketplace/codeui-128.png",
"version": "0.3.0",
"version": "0.3.1",
"preview": true,
"galleryBanner": {
"color": "#18191e",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as path from 'path';
import { getConfig } from './configuration';
import { ElementProvider, ViewMode } from './elements';
import { InfoProvider } from './info';
import { TargetingModeStatusBarItem } from './statusBar';
import { TargetingModeStatusBarItem } from './statusbar';

let elementProvider: ElementProvider;
let infoProvider: InfoProvider;
Expand Down

0 comments on commit b1e7731

Please sign in to comment.