Skip to content

Commit c8851fa

Browse files
committed
v0.3.0
Add release to changelog Fix changelog format Update badge in README.md Update version in package.json Fix misc. compile error Add element name bugfix to changelog
1 parent 4e2cc4b commit c8851fa

File tree

5 files changed

+24
-13
lines changed

5 files changed

+24
-13
lines changed

CHANGELOG.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
1-
## [0.2.0] [Feature] Targeting Mode
1+
## [0.3.0]
22

3-
- added Targeting Mode. Allows toggling between 'themeSpecific' and 'general' contexts for all customization commands.
3+
- Added support for custom-value brightness adjustments (@usernamehw).
44

5+
- Added support for built-in color picker when editing 'codeui.favoriteColors' in settings. (@usernamehw)
56

6-
## [0.1.2] [Bugfix] Documentation
7+
- Added configuration 'codeui.preferredScope'. Controls scoping behaviour when a workspace/folder is open.
8+
9+
- Changed startup behaviour. CodeUI will now activate when accessed, not when VS Code is launched.
710

8-
- changed release notes schema (readme.md)
11+
- Fixed several element listings with unexpected names.
912

10-
- fixed duplicate section (usage.md)
13+
## [0.2.0]
1114

12-
## [0.1.1] [Bugfix] Icon Contrast
15+
- Added Targeting Mode. Allows toggling between 'themeSpecific' and 'general' contexts for all customization commands.
16+
17+
## [0.1.2]
18+
19+
- Changed release notes schema (readme.md)
20+
21+
- Fixed duplicate section (usage.md)
22+
23+
## [0.1.1]
1324

1425
- Fixed light-theme icon contrast for treeview command buttons
1526

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<div align="center">
1010

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

1414
</div>

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.2.0",
8+
"version": "0.3.0",
99
"preview": true,
1010
"galleryBanner": {
1111
"color": "#18191e",

src/elementProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class ElementProvider implements vscode.TreeDataProvider<any>{
7272
for(let key in this.elementItems){
7373
this.elementItems[key].update();
7474
}
75-
this._onDidChangeTreeData.fire();
75+
this._onDidChangeTreeData.fire(null);
7676
}
7777

7878
}

src/infoProvider.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { Element } from './elementProvider';
44
import * as theme from "./theme";
55

66

7-
export class InfoProvider implements vscode.TreeDataProvider<vscode.TreeItem> {
7+
export class InfoProvider implements vscode.TreeDataProvider<any> {
88

9-
private _onDidChangeTreeData: vscode.EventEmitter<InfoItem | undefined> = new vscode.EventEmitter<InfoItem | undefined>();
10-
readonly onDidChangeTreeData: vscode.Event<InfoItem| undefined> = this._onDidChangeTreeData.event;
9+
private _onDidChangeTreeData: vscode.EventEmitter<any> = new vscode.EventEmitter<any>();
10+
readonly onDidChangeTreeData: vscode.Event<any> = this._onDidChangeTreeData.event;
1111

1212
currentTheme : any;
1313
selectedElement : any;
@@ -25,7 +25,7 @@ export class InfoProvider implements vscode.TreeDataProvider<vscode.TreeItem> {
2525
if(infoItem){
2626
this._onDidChangeTreeData.fire(infoItem);
2727
}else{
28-
this._onDidChangeTreeData.fire();
28+
this._onDidChangeTreeData.fire(null);
2929
}
3030
}
3131

0 commit comments

Comments
 (0)