Skip to content

Commit b1e7731

Browse files
committed
v0.3.1
1 parent e1ed251 commit b1e7731

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.3.1]
2+
3+
- Fixed various low-level performance issues.
4+
5+
- Fixed outdated links in README.
6+
7+
18
## [0.3.0]
29

310
- Added support for custom-value brightness adjustments (@usernamehw).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Customize your color theme for VS Code.
1010

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

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

5757
```
58-
code --install-extension codeui-0.3.0.vsix
58+
code --install-extension codeui-0.3.1.vsix
5959
```
6060

6161
*Note: it may be necessary to reload vscode if installing via the terminal.*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "SEE LICENSE IN LICENSE.md",
66
"description": "Customize your color theme for VS Code.",
77
"icon": "resources/marketplace/codeui-128.png",
8-
"version": "0.3.0",
8+
"version": "0.3.1",
99
"preview": true,
1010
"galleryBanner": {
1111
"color": "#18191e",

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as path from 'path';
66
import { getConfig } from './configuration';
77
import { ElementProvider, ViewMode } from './elements';
88
import { InfoProvider } from './info';
9-
import { TargetingModeStatusBarItem } from './statusBar';
9+
import { TargetingModeStatusBarItem } from './statusbar';
1010

1111
let elementProvider: ElementProvider;
1212
let infoProvider: InfoProvider;

0 commit comments

Comments
 (0)