diff --git a/CHANGELOG.md b/CHANGELOG.md index 34dbfbe9..ffc9f01e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,87 +3,94 @@ All notable changes to the "leetcode" extension will be documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [0.14.3] +### Added +- Support interpolation for `leetcode.outputFolder` settings [#151](https://github.com/jdneo/vscode-leetcode/issues/151) + +### Fixed +[Bugs fixed](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.14.3+label%3Abug) + ## [0.14.2] -## Added +### Added - Add the `All` category in the LeetCode Explorer [#184](https://github.com/jdneo/vscode-leetcode/issues/184) - Add shortcuts for `Show top voted solution` [#269](https://github.com/jdneo/vscode-leetcode/issues/269) -## Fixed -[Fix Bugs](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+is%3Aclosed+label%3Abug+milestone%3A0.14.2) +### Fixed +[Bugs fixed](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+is%3Aclosed+label%3Abug+milestone%3A0.14.2) ## [0.14.1] -## Added +### Added - Add setting `leetcode.showCommentDescription` to specify whether including the problem description in comments or not [#287](https://github.com/jdneo/vscode-leetcode/issues/287) ## [0.14.0] -## Added +### Added - Add setting `leetcode.enableShortcuts` to specify whether to show the submit/test shortcuts in editor [#146](https://github.com/jdneo/vscode-leetcode/issues/146) - Add `Like` and `Dislike` counts in the problem description [#267](https://github.com/jdneo/vscode-leetcode/issues/267) -## Changed +### Changed - Improve the `Preview`, `Result` and `Solution` views -## Fixed +### Fixed [Bugs fixed](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+label%3Abug+is%3Aclosed+milestone%3A0.14.0) ## [0.13.3] -## Fixed +### Fixed - Fix the bug that the extension cannot be activated ## [0.13.2] -## Added +### Added - Add a setting `leetcode.enableStatusBar` to specify whether the LeetCode status bar will be shown or not [#156](https://github.com/jdneo/vscode-leetcode/issues/156) - Add a setting `leetcode.nodePath` to specify the `Node.js` executable path [#227](https://github.com/jdneo/vscode-leetcode/issues/227) -## Changed +### Changed - Update the activity bar icon, See: [#225](https://github.com/jdneo/vscode-leetcode/pull/225) -## Fixed +### Fixed [Bugs fixed](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+milestone%3A0.13.2+is%3Aclosed+label%3Abug) ## [0.13.1] -## Fixed +### Fixed [Bugs fixed](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+milestone%3A0.13.1+is%3Aclosed+label%3Abug) ## [0.13.0] -## Added +### Added - Preview the problem description [#131](https://github.com/jdneo/vscode-leetcode/issues/131) - Show top voted solution [#193](https://github.com/jdneo/vscode-leetcode/pull/193) - Add `collapse all` for the explorer [#197](https://github.com/jdneo/vscode-leetcode/pull/197) -## Fixed +### Fixed [Bugs fixed](https://github.com/jdneo/vscode-leetcode/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.13.0+label%3Abug) ## [0.12.0] -## Added +### Added - Add new command `LeetCode: Switch Default Language` to support switching the default language [#115](https://github.com/jdneo/vscode-leetcode/issues/115) - Support `PHP` and `Rust` ([#83](https://github.com/jdneo/vscode-leetcode/issues/83), [#103](https://github.com/jdneo/vscode-leetcode/issues/103)) -## Fixed +### Fixed - Cannot retrieve time and memory result [#105](https://github.com/jdneo/vscode-leetcode/issues/105) - Power operator displays in a wrong way [#74](https://github.com/jdneo/vscode-leetcode/issues/74) ## [0.11.0] -## Added +### Added - Add new setting: `leetcode.outputFolder` to customize the sub-directory to save the files generated by 'Show Problem' [#119](https://github.com/jdneo/vscode-leetcode/issues/119) - Add tooltips for sub-category nodes in LeetCode Explorer [#143](https://github.com/jdneo/vscode-leetcode/pull/143) -## Changed +### Changed - Now when triggering 'Show Problem', the extension will not generate a new file if it already exists [#59](https://github.com/jdneo/vscode-leetcode/issues/59) -## Fixed +### Fixed - Log in timeout when proxy is enabled [#117](https://github.com/jdneo/vscode-leetcode/issues/117) ## [0.10.2] -## Fixed +### Fixed - Test cases cannot have double quotes [#60](https://github.com/jdneo/vscode-leetcode/issues/60) ## [0.10.1] -## Changed +### Changed - Refine the README page. ## [0.10.0] -## Added +### Added - Add an extension setting to hide solved problems [#95](https://github.com/jdneo/vscode-leetcode/issues/95) - Support categorize problems by company, tag, difficulty and favorite [#67](https://github.com/jdneo/vscode-leetcode/issues/67) diff --git a/docs/imgs/sponsor_coding.png b/docs/imgs/sponsor_coding.png index df7b7780..78c47fc0 100644 Binary files a/docs/imgs/sponsor_coding.png and b/docs/imgs/sponsor_coding.png differ diff --git a/package-lock.json b/package-lock.json index 75dee600..7ea3a73c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-leetcode", - "version": "0.14.2", + "version": "0.14.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3fb76020..5413bc2b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-leetcode", "displayName": "LeetCode", "description": "Solve LeetCode problems in VS Code", - "version": "0.14.2", + "version": "0.14.3", "author": "Sheng Chen", "publisher": "shengchen", "license": "MIT",