Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita250ccb

Browse files
committed
prepare for release
1 parentb397880 commita250ccb

File tree

6 files changed

+21
-10
lines changed

6 files changed

+21
-10
lines changed

‎.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ package-lock.json
1010
tsconfig.json
1111
tslint.json
1212
**/*.gif
13+
ACKNOWLEDGEMENTS.md

‎ACKNOWLEDGEMENTS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
A big thanks to the following individuals for contributing:
2+
3+
[@TsFreddie](https://github.com/TsFreddie) for contributing[#19](https://github.com/jdneo/vscode-leetcode/pull/19).
4+
[@ntt2k](https://github.com/ntt2k) for contributing[#38](https://github.com/jdneo/vscode-leetcode/pull/38).
5+
[@Xeonacid](https://github.com/Xeonacid) for contributing[#58](https://github.com/jdneo/vscode-leetcode/pull/58).

‎CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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.8.0]
7+
###Added
8+
- Support LeetCode CN([#50](https://github.com/jdneo/vscode-leetcode/issues/50))
9+
- Support Windows Subsystem for Linux([#47](https://github.com/jdneo/vscode-leetcode/issues/47))
10+
611
##[0.7.0]
712
###Added
813
- Add spinner when submitting code([#43](https://github.com/jdneo/vscode-leetcode/issues/43))

‎README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@ This extension provides several commands in the Command Palette (F1 or Ctrl + Sh
5555
-**LeetCode: Search Problem** - Search for problems by keywords
5656
-**LeetCode: Test in LeetCode** - Test solution file by customized test case
5757
-**LeetCode: Submit to LeetCode** - Submit the solution file to LeetCode
58+
-**LeetCode: Switch endpoint** - Switch the LeetCode endpoint. (LeetCode or LeetCode-cn)
5859

5960
##Known Issues:
6061
- This extension will infer the current target problem according to the active editing file. Please do not change the file name.
6162

6263
##Release Notes
6364

64-
Refer to[CHANGELOG](CHANGELOG.md)
65+
Refer to[CHANGELOG](https://github.com/jdneo/vscode-leetcode/blob/master/CHANGELOG.md)
6566

6667
##Acknowledgement
6768

6869
- This extension is based on[@skygragon](https://github.com/skygragon)'s[leetcode-cli](https://github.com/skygragon/leetcode-cli) open source project.
69-
- Thanks[@TsFreddie](https://github.com/TsFreddie) for contributing[#19](https://github.com/jdneo/vscode-leetcode/pull/19).
70-
- Thanks[@ntt2k](https://github.com/ntt2k) for contributing[#38](https://github.com/jdneo/vscode-leetcode/pull/38).
70+
- Special thanks to our[contributors](https://github.com/jdneo/vscode-leetcode/blob/master/ACKNOWLEDGEMENTS.md)
7171

7272

7373

@@ -116,16 +116,16 @@ Refer to [CHANGELOG](CHANGELOG.md)
116116
-**LeetCode: Search Problem** - 根据关键字搜索题目
117117
-**LeetCode: Test in LeetCode** - 用自定义测试用例进行测试
118118
-**LeetCode: Submit to LeetCode** - 提交答案到 LeetCode
119+
-**LeetCode: Switch endpoint** - 变更 LeetCode 终端(LeetCode 或 领扣)
119120

120121
##已知问题
121122
- 本插件会根据文件名称推测当前的目标题目,因此建议不要改变文件名。
122123

123124
##更新日志
124125

125-
请参考[更新日志](CHANGELOG.md)
126+
请参考[更新日志](https://github.com/jdneo/vscode-leetcode/blob/master/CHANGELOG.md)
126127

127128
##鸣谢
128129

129130
- 本插件基于[@skygragon](https://github.com/skygragon)[leetcode-cli](https://github.com/skygragon/leetcode-cli)开源项目制作。
130-
- 感谢[@TsFreddie](https://github.com/TsFreddie)贡献[#19](https://github.com/jdneo/vscode-leetcode/pull/19)
131-
- 感谢[@ntt2k](https://github.com/ntt2k)贡献[#38](https://github.com/jdneo/vscode-leetcode/pull/38)
131+
- 特别鸣谢这些[贡献者们](https://github.com/jdneo/vscode-leetcode/blob/master/ACKNOWLEDGEMENTS.md)

‎package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎package.json

Lines changed: 2 additions & 2 deletions
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.7.0",
5+
"version":"0.8.0",
66
"author":"Sheng Chen",
77
"publisher":"shengchen",
88
"icon":"resources/LeetCode.png",
@@ -238,7 +238,7 @@
238238
"vscode:prepublish":"npm run compile",
239239
"compile":"tsc -p ./",
240240
"watch":"tsc -watch -p ./",
241-
"postinstall":"node ./node_modules/vscode/bin/install && node ./node_modules/leetcode-cli/bin/leetcode plugin -i leetcode.cn",
241+
"postinstall":"node ./node_modules/vscode/bin/install && node ./node_modules/leetcode-cli/bin/leetcode plugin -e leetcode.cn",
242242
"test":"npm run compile && node ./node_modules/vscode/bin/test",
243243
"lint":"tslint --project tsconfig.json -e src/*.d.ts -t verbose"
244244
},

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp