Skip to content

Commit

Permalink
chore: Prepare for 0.14.3 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored May 18, 2019
1 parent fc80f68 commit 650244e
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 24 deletions.
51 changes: 29 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Binary file modified docs/imgs/sponsor_coding.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 650244e

Please sign in to comment.