Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ryanraposo committed Nov 19, 2020
1 parent 4e2cc4b commit c8851fa
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
23 changes: 17 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
## [0.2.0] [Feature] Targeting Mode
## [0.3.0]

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

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

## [0.1.2] [Bugfix] Documentation
- Added configuration 'codeui.preferredScope'. Controls scoping behaviour when a workspace/folder is open.

- Changed startup behaviour. CodeUI will now activate when accessed, not when VS Code is launched.

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

- fixed duplicate section (usage.md)
## [0.2.0]

## [0.1.1] [Bugfix] Icon Contrast
- Added Targeting Mode. Allows toggling between 'themeSpecific' and 'general' contexts for all customization commands.

## [0.1.2]

- Changed release notes schema (readme.md)

- Fixed duplicate section (usage.md)

## [0.1.1]

- Fixed light-theme icon contrast for treeview command buttons

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div align="center">

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

</div>
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.2.0",
"version": "0.3.0",
"preview": true,
"galleryBanner": {
"color": "#18191e",
Expand Down
2 changes: 1 addition & 1 deletion src/elementProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class ElementProvider implements vscode.TreeDataProvider<any>{
for(let key in this.elementItems){
this.elementItems[key].update();
}
this._onDidChangeTreeData.fire();
this._onDidChangeTreeData.fire(null);
}

}
Expand Down
8 changes: 4 additions & 4 deletions src/infoProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { Element } from './elementProvider';
import * as theme from "./theme";


export class InfoProvider implements vscode.TreeDataProvider<vscode.TreeItem> {
export class InfoProvider implements vscode.TreeDataProvider<any> {

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

currentTheme : any;
selectedElement : any;
Expand All @@ -25,7 +25,7 @@ export class InfoProvider implements vscode.TreeDataProvider<vscode.TreeItem> {
if(infoItem){
this._onDidChangeTreeData.fire(infoItem);
}else{
this._onDidChangeTreeData.fire();
this._onDidChangeTreeData.fire(null);
}
}

Expand Down

0 comments on commit c8851fa

Please sign in to comment.