Skip to content

Commit c9d0211

Browse files
author
lrhh123
committed
update: 更新支持微信、千牛等客户端
1 parent 81ab189 commit c9d0211

File tree

24 files changed

+748
-139
lines changed

24 files changed

+748
-139
lines changed

.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
PY_HOSTNAME=localhost
2+
PY_PORT=9999
3+
VAR=1234
4+
BKEXE_PATH=./backend/__main__.exe

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,4 @@ npm-debug.log.*
2828
*.sass.d.ts
2929
*.scss.d.ts
3030
assets/backend/*
31-
src/renderer/services/analytics/index.ts
32-
33-
.env
34-
.vscode
31+
src/renderer/services/analytics/*

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["dbaeumer.vscode-eslint", "EditorConfig.EditorConfig"]
3+
}

.vscode/launch.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Electron: Main",
6+
"type": "node",
7+
"request": "launch",
8+
"protocol": "inspector",
9+
"runtimeExecutable": "npm",
10+
"runtimeArgs": ["run", "start"],
11+
"env": {
12+
"MAIN_ARGS": "--inspect=5858 --remote-debugging-port=9223"
13+
}
14+
},
15+
{
16+
"name": "Electron: Renderer",
17+
"type": "chrome",
18+
"request": "attach",
19+
"port": 9223,
20+
"webRoot": "${workspaceFolder}",
21+
"timeout": 15000
22+
}
23+
],
24+
"compounds": [
25+
{
26+
"name": "Electron: All",
27+
"configurations": ["Electron: Main", "Electron: Renderer"]
28+
}
29+
]
30+
}

.vscode/settings.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"files.associations": {
3+
".eslintrc": "jsonc",
4+
".prettierrc": "jsonc",
5+
".eslintignore": "ignore"
6+
},
7+
8+
"eslint.validate": [
9+
"javascript",
10+
"javascriptreact",
11+
"html",
12+
"typescriptreact"
13+
],
14+
15+
"javascript.validate.enable": false,
16+
"javascript.format.enable": false,
17+
"typescript.format.enable": false,
18+
19+
"search.exclude": {
20+
".git": true,
21+
".eslintcache": true,
22+
".erb/dll": true,
23+
"release/{build,app/dist}": true,
24+
"node_modules": true,
25+
"npm-debug.log.*": true,
26+
"test/**/__snapshots__": true,
27+
"package-lock.json": true,
28+
"*.{css,sass,scss}.d.ts": true
29+
}
30+
}

0 commit comments

Comments
 (0)