Skip to content

Commit d928c06

Browse files
authored
prepare for 0.5.0 release(#33)
1 parent ef21de7 commit d928c06

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to the "leetcode" extension will be documented in this file.
33

44
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
55

6+
## [0.5.0]
7+
### Added
8+
- Support submit and test solution files from the file explorer in VS Code ([#24](https://github.com/jdneo/vscode-leetcode/issues/24), [#26](https://github.com/jdneo/vscode-leetcode/issues/26))
9+
610
## [0.4.0]
711
### Added
812
- Support locked problem [(#20)](https://github.com/jdneo/vscode-leetcode/issues/20)

Diff for: README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,14 @@ Solve LeetCode problems in VS Code.
3636
### Search Problems by Keywords
3737
![SearchProblem](https://raw.githubusercontent.com/jdneo/vscode-leetcode/master/resources/gif/searchproblem.gif)
3838

39-
### Test solutions by customized test case
39+
### Test solutions by customized test case <sup>1</sup>
4040
![TestSolution](https://raw.githubusercontent.com/jdneo/vscode-leetcode/master/resources/gif/testsolution.gif)
4141

42-
### Submit Solutions to LeetCode
42+
### Submit Solutions to LeetCode <sup>1</sup>
4343
![SubmitSolution](https://raw.githubusercontent.com/jdneo/vscode-leetcode/master/resources/gif/solveproblem.gif)
4444

45+
<sup>1</sup> If you trigger the `Submit to LeetCode` and `Test in LeetCode` commands in the Command Palette, the extension will upload the current active file in editor.
46+
4547
## Commands
4648
This extension provides several commands in the Command Palette (F1 or Ctrl + Shift + P):
4749
- **LeetCode: Sign in** - Sign in to LeetCode
@@ -50,8 +52,8 @@ This extension provides several commands in the Command Palette (F1 or Ctrl + Sh
5052
- **LeetCode: Create new session** - Create a new session
5153
- **LeetCode: Refresh** - Refresh the LeetCode Explorer
5254
- **LeetCode: Search Problem** - Search for problems by keywords
53-
- **LeetCode: Test in LeetCode** - Test the current solution file by customized test case
54-
- **LeetCode: Submit to LeetCode** - Submit the solution to LeetCode
55+
- **LeetCode: Test in LeetCode** - Test solution file by customized test case
56+
- **LeetCode: Submit to LeetCode** - Submit the solution file to LeetCode
5557

5658
## Known Issues:
5759
- This extension will infer the current target problem according to the active editing file. Please do not change the file name.
@@ -91,12 +93,14 @@ This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcod
9193
### 根据关键字搜索题目
9294
![SearchProblem](https://raw.githubusercontent.com/jdneo/vscode-leetcode/master/resources/gif/searchproblem.gif)
9395

94-
### 用自定义测试用例测试答案
96+
### 用自定义测试用例测试答案 <sup>1</sup>
9597
![TestSolution](https://raw.githubusercontent.com/jdneo/vscode-leetcode/master/resources/gif/testsolution.gif)
9698

97-
### 向 LeetCode 提交答案
99+
### 向 LeetCode 提交答案 <sup>1</sup>
98100
![SubmitSolution](https://raw.githubusercontent.com/jdneo/vscode-leetcode/master/resources/gif/solveproblem.gif)
99101

102+
<sup>1</sup> 如果您通过命令面板触发 `Submit to LeetCode``Test in LeetCode` 命令,本插件将会提交当前文件至 LeetCode。
103+
100104
## 命令
101105
该插件在命令面板(F1 或 Ctrl + Shift + P)中支持下列命令:
102106
- **LeetCode: Sign in** - 登入 LeetCode
@@ -105,7 +109,7 @@ This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcod
105109
- **LeetCode: Create new session** - 创建一个新的答题进度存档
106110
- **LeetCode: Refresh** - 刷新左侧题目列表视图
107111
- **LeetCode: Search Problem** - 根据关键字搜索题目
108-
- **LeetCode: Test in LeetCode** - 用自定义测试用例测试当前解答文件
112+
- **LeetCode: Test in LeetCode** - 用自定义测试用例进行测试
109113
- **LeetCode: Submit to LeetCode** - 提交答案到 LeetCode
110114

111115
## 已知问题

Diff for: 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.4.0",
5+
"version": "0.5.0",
66
"author": "Sheng Chen",
77
"publisher": "shengchen",
88
"icon": "resources/LeetCode.png",

Diff for: resources/gif/solveproblem.gif

-68.9 KB
Loading

Diff for: resources/gif/testsolution.gif

25.9 KB
Loading

0 commit comments

Comments
 (0)