Skip to content

2.6.3 #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## version 2.6.3

- 今天搬砖增加添加到自定义分类选项

## version 2.6.2

- 屏蔽测试 api 选项
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ sudo n stable
### 编译 ts 生成 js

```
sudo apt install node-typescript
tsc
```

Expand Down
11 changes: 11 additions & 0 deletions init_env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
sudo apt install nodejs
sudo apt install npm

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

sudo apt install node-typescript
sudo npm i vsce -g


4 changes: 2 additions & 2 deletions package-lock.json

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

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-leetcode-problem-rating",
"displayName": "LeetCode",
"description": "LeetCode 官方插件增强, 代码开源, 增加 LeetCode 题目难度分, 给个star吧, 球球了",
"version": "2.6.2",
"version": "2.6.3",
"author": "ccagml",
"publisher": "ccagml",
"license": "MIT",
Expand Down Expand Up @@ -416,6 +416,11 @@
"when": "view == BricksExplorer && viewItem =~ /nodebricks*/ ",
"group": "leetcode@4"
},
{
"command": "lcpr.addQidToGroup",
"when": "view == BricksExplorer && viewItem != nodebricksdiy",
"group": "leetcode@5"
},
{
"command": "lcpr.removeQidFromGroup",
"when": "view == BricksExplorer && viewItem == nodebricksdiy",
Expand Down