Skip to content

Commit a44d3db

Browse files
committed
prepare for 0.4.0 release
1 parent 12db081 commit a44d3db

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77
### Added
88
- Support locked problem [(#20)](https://github.com/jdneo/vscode-leetcode/issues/20)
99

10+
### Changed
11+
- Simplify the command 'LeetCode: Test Current File' to 'LeetCode: Test' [(#18)](https://github.com/jdneo/vscode-leetcode/issues/18)
12+
- Will automatically save cuurent file when 'LeetCode: Test' command is triggered [(#17)](https://github.com/jdneo/vscode-leetcode/issues/17)
13+
1014
## [0.3.0]
1115
### Added
1216
- Test current solution file [(#15)](https://github.com/jdneo/vscode-leetcode/issues/15)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Solve LeetCode problems in VS Code.
1717
- Sign in/out to LeetCode
1818
- Switch and create session
1919
- Show problems in explorer
20+
> Note: To show the locked problems, please set `leetcode.showLocked` to **true**
2021
- Search problems by keywords
2122
- Test solutions by customized test case
2223
- Submit solutions to LeetCode
@@ -47,12 +48,11 @@ This extension provides several commands in the Command Palette (F1 or Ctrl + Sh
4748
- **LeetCode: Create new session** - Create a new session
4849
- **LeetCode: Refresh** - Refresh the LeetCode Explorer
4950
- **LeetCode: Search Problem** - Search for problems by keywords
50-
- **LeetCode: Test Current File** - Test the solution by customized test case
51+
- **LeetCode: Test** - Test the current solution file by customized test case
5152
- **LeetCode: Submit** - Submit the solution to LeetCode
5253

5354
## Known Issues:
5455
- This extension will infer the current target problem according to the active editing file. Please do not change the file name.
55-
- Currently, only unlocked problems will be listed.
5656

5757
## Release Notes
5858

@@ -72,6 +72,7 @@ This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcod
7272
- 登入 / 登出 LeetCode
7373
- 切换及创建 session
7474
- 在 Explorer 中展示题目
75+
> 注意: 如果想要展示付费题目,您需要将 `leetcode.showLocked` 设置为 **true**
7576
- 根据关键字搜索题目
7677
- 用自定义测试用例测试答案
7778
- 向 LeetCode 提交答案
@@ -102,12 +103,11 @@ This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcod
102103
- **LeetCode: Create new session** - 创建一个新的答题进度存档
103104
- **LeetCode: Refresh** - 刷新左侧题目列表视图
104105
- **LeetCode: Search Problem** - 根据关键字搜索题目
105-
- **LeetCode: Test Current File** - 用自定义测试用例测试答案
106+
- **LeetCode: Test** - 用自定义测试用例测试当前解答文件
106107
- **LeetCode: Submit** - 提交答案到 LeetCode
107108

108109
## 已知问题
109110
- 本插件会根据文件名称推测当前的目标题目,因此建议不要改变文件名。
110-
- 本插件目前仅会显示已解锁的问题。
111111

112112
## 更新日志
113113

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-leetcode",
33
"displayName": "LeetCode",
44
"description": "Solve LeetCode problems in VS Code",
5-
"version": "0.3.0",
5+
"version": "0.4.0",
66
"author": "Sheng Chen",
77
"publisher": "shengchen",
88
"icon": "resources/LeetCode.png",

resources/gif/testsolution.gif

-111 KB
Loading

0 commit comments

Comments
 (0)