File tree Expand file tree Collapse file tree 5 files changed +24
-13
lines changed
Expand file tree Collapse file tree 5 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import { Element } from './elementProvider';
44import * 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
You can’t perform that action at this time.
0 commit comments