Skip to content

Commit acd24e6

Browse files
committed
update readme
1 parent 2a11e1b commit acd24e6

File tree

4 files changed

+51
-12
lines changed

4 files changed

+51
-12
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +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-
## [Unreleased]
7-
- Initial release
6+
## [0.1.0]
7+
### Added
8+
- Sign in/out to LeetCode
9+
- Switch and create session
10+
- Show problems in explorer
11+
- Search problems by keywords
12+
- Submit solutions to LeetCode

README.md

+25-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
1-
# leetcode README
2-
3-
## Features
1+
# LeetCode
42

3+
Solve LeetCode problems in VS Code.
4+
[中文](#中文)
5+
[English](#English)
56

7+
# English
68
## Requirements
9+
- [Node.js](https://nodejs.org)
10+
> NOTE: Please make sure that Node is in your PATH environment variable. You can check this by running: `node -v`.
11+
12+
## Features
13+
- Sign in/out to LeetCode
14+
- Switch and create session
15+
- Show problems in explorer
16+
- Search problems by keywords
17+
- Submit solutions to LeetCode
718

19+
### Sign In and Sign Out
820

9-
## Extension Settings
21+
### Switch and Create Session
1022

23+
### Show Problems in Explorer
1124

12-
## Known Issues
25+
### Search Problems by Keywords
1326

27+
### Submit Solutions to LeetCode
1428

1529
## Release Notes
30+
31+
Refer to [CHANGELOG](CHANGELOG.md)
32+
33+
## Acknowledgement
34+
35+
This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcode-cli](https://github.com/skygragon/leetcode-cli) open source project.

package.json

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
{
2-
"name": "leetcode",
2+
"name": "vscode-leetcode",
33
"displayName": "LeetCode",
4-
"description": "",
5-
"version": "0.0.1",
6-
"publisher": "ShengChen",
4+
"description": "Solve LeetCode problems in VS Code",
5+
"version": "0.1.0",
6+
"author": "Sheng Chen",
7+
"publisher": "shengchen",
8+
"icon": "resources/LeetCode.png",
79
"engines": {
810
"vscode": "^1.20.0"
911
},
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/jdneo/vscode-leetcode"
15+
},
16+
"homepage": "https://github.com/jdneo/vscode-leetcode/blob/master/README.md",
1017
"categories": [
11-
"Other"
18+
"Other",
19+
"Snippets"
20+
],
21+
"keywords": [
22+
"leetcode",
23+
"algorithm",
24+
"interview"
1225
],
26+
"preview": true,
1327
"activationEvents": [
1428
"onCommand:leetcode.signin",
1529
"onCommand:leetcode.signout",

resources/LeetCode.png

39.8 KB
Loading

0 commit comments

Comments
 (0)