File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 2.5.0] ( https://github.com/willofindie/vscode-cssvar/compare/v2.4.1...v2.5.0 ) - 2022-11-06
8+ ### Features
9+ - [ #72 ] ( https://github.com/willofindie/vscode-cssvar/issues/72 ) Enable all useful language ids to dynamically enable CSS Variable IntelliSense
10+ - Update Readme doc
11+ - Conditionaly enable diagnostics
12+ - Add ` cssvar.enable ` setting to enable/disable the extension
13+ - [ #78 ] ( https://github.com/willofindie/vscode-cssvar/issues/78 ) Add support for ` tokencss `
14+ - Adds custom plugin resolver
15+ - Update examples
16+ - Add ` config ` tests
17+
18+ ### Fixes
19+ - [ #95 ] ( https://github.com/willofindie/vscode-cssvar/issues/95 ) Handle variable recursive evaluation
20+ - [ #58 ] ( https://github.com/willofindie/vscode-cssvar/issues/58 ) Improve config contributions to make it compatible with VSCode's Settings UI.
21+ - Unit Tests
22+ - [ #87 ] ( https://github.com/willofindie/vscode-cssvar/issues/87 ) Handle hover errors for undeclared css vars
23+
24+
725## [ 2.4.1] ( https://github.com/willofindie/vscode-cssvar/compare/v2.4.0...v2.4.1 ) - 2022-10-21
826### Fixes
927- Reverts: [ #74 ] ( https://github.com/willofindie/vscode-cssvar/issues/74 ) Support for .gitignore
Original file line number Diff line number Diff line change 2020 " typescript"
2121 ],
2222 "description" : " Intellisense support for CSS Variables" ,
23- "version" : " 2.4.1 " ,
23+ "version" : " 2.5.0 " ,
2424 "publisher" : " phoenisx" ,
2525 "license" : " MIT" ,
2626 "homepage" : " https://github.com/willofindie/vscode-cssvar" ,
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ const processCommitMsg = (/** @type {string[]} */ msgTokens) => {
106106 changelogs . feature . forEach ( line => console . log ( `- ${ line } ` ) ) ;
107107 }
108108 if ( changelogs . fix . length > 0 ) {
109- console . log ( "### Fixed " ) ;
109+ console . log ( "### Fixes " ) ;
110110 changelogs . fix . forEach ( line => console . log ( `- ${ line } ` ) ) ;
111111 }
112112 if ( changelogs . doc . length > 0 ) {
You can’t perform that action at this time.
0 commit comments