Skip to content

Commit de35828

Browse files
authored
Merge pull request #85 from ccagml/main
version
2 parents 2747701 + a4f7dc9 commit de35828

26 files changed

+49
-115
lines changed

.github/workflows/auto_build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: auto_build
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [release]
66
pull_request:
7-
branches: [main]
7+
branches: [release]
88

99
jobs:
1010
linux:

.github/workflows/debug.yml

-90
This file was deleted.

.github/workflows/update_version.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: debug
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: "test Tag"
8+
required: true
9+
10+
jobs:
11+
linux:
12+
name: Linux
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 30
15+
steps:
16+
- uses: actions/checkout@v2
17+
- run: |
18+
ls
19+
sed -i "s/\"version\":.*$/\"version\": \"${{ github.event.inputs.tag }}\",/" package.json
20+
git config user.name github-actions
21+
git config user.email [email protected]
22+
git add .
23+
git commit -m "update version"
24+
git push

src/controller/BricksViewController.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/controller/BricksViewController.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Tuesday, November 22nd 2022, 11:04:59 am
55
* Author: ccagml
66
*

src/controller/RemarkController.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/controller/RemarkController.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 28th 2022, 3:29:37 pm
55
* Author: ccagml
66
*

src/dao/bricksDao.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/dao/bricksDao.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Wednesday, November 23rd 2022, 4:36:38 pm
55
* Author: ccagml
66
*

src/dao/groupDao.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/dao/groupDao.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Wednesday, November 30th 2022, 9:47:36 am
55
* Author: ccagml
66
*

src/rpc/actionChain/chainManager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/actionChain/chainMgr.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/cache.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/actionChain/cache.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/actionChain/core.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/leetcode.cn.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/actionChain/leetcode.cn.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/leetcode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/actionChain/leetcode.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/retry.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/actionChain/retry.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/factory/api/cacheApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/cacheApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/pluginApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/pluginApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/queryApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/queryApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/showApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/showApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/starApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/starApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/submitApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/submitApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/testApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/testApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/userApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/api/userApi.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/apiBase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/factory/apiBase.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/utils/ReplyUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/Response.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/utils/commUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/rpc/commUtils.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Wednesday, November 16th 2022, 4:50:55 pm
55
* Author: ccagml
66
*

src/service/BricksDataService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/service/BricksDataService.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Tuesday, November 22nd 2022, 10:42:49 am
55
* Author: ccagml
66
*

src/service/StatusBarTimeService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* https://github.com/ccagml/vscode-leetcode-problem-rating/src/service/StatusBarTimeService.ts
3-
* Path: /home/cc/vscode-leetcode-problem-rating
3+
* Path: https://github.com/ccagml/vscode-leetcode-problem-rating
44
* Created Date: Saturday, November 26th 2022, 2:14:53 pm
55
* Author: ccagml
66
*

0 commit comments

Comments
 (0)