Skip to content

Commit dc6fe08

Browse files
committed
fix: 优化
1 parent 21f1809 commit dc6fe08

29 files changed

+5030
-317
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ node_modules
22
dist
33
components.d.ts
44
.DS_Store
5+
.eslintcache
56
deploy/index.js
7+
electron-release
8+
electron-dist

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
"ts",
3939
"tsx",
4040
"vue"
41-
]
41+
],
42+
"typescript.tsdk": "node_modules/typescript/lib"
4243
}

CHANGELOG.md

+544
Large diffs are not rendered by default.

LICENSE

-21
This file was deleted.

README.md

+5-27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://desk.hsslive.cn" target="_blank">
2+
<a href="https://live.hsslive.cn/remoteDesktop" target="_blank">
33
<img
44
width="200"
55
src="https://github.com/galaxy-s10/billd-desk/blob/main/src/assets/img/logo.png?raw=true"
@@ -10,22 +10,10 @@
1010
<h1 align="center">
1111
BilldDesk
1212
</h1>
13-
1413
<p align="center">
1514
基于WebRTC + Vue3 + Electron + Nodejs搭建的远程桌面
1615
</p>
1716

18-
<div align="center">
19-
20-
![stars](https://img.shields.io/github/stars/billd-project/desk)
21-
![forks](https://img.shields.io/github/forks/billd-project/desk)
22-
23-
![version](https://img.shields.io/github/package-json/v/billd-project/desk)
24-
![License](https://img.shields.io/github/license/billd-project/desk)
25-
![language](https://img.shields.io/github/languages/top/billd-project/desk)
26-
27-
</div>
28-
2917
## 简介
3018

3119
BilldDesk远程桌面控制,目前实现了类似ToDesk、向日葵等远程桌面的功能。
@@ -49,7 +37,6 @@ BilldDesk远程桌面控制,目前实现了类似ToDesk、向日葵等远程
4937
- [x] 支持Macos系统
5038
- [x] 支持Windows系统
5139
- [ ] 支持Linux系统
52-
- [x] 组合键
5340
- [ ] 文件传输
5441
- [ ] 移动客户端
5542
- [ ] 后台管理
@@ -206,21 +193,12 @@ npm config set registry https://registry.npmmirror.com
206193
```
207194
3. 在node_modules/electron目录下执行node install
208195
196+
## 交流群🔥
197+
198+
![WechatIMG1417](https://github.com/user-attachments/assets/d0743ee0-4545-4618-863e-13c40f717119)
199+
209200
## 兼容性
210201
211202
- [x] Windows
212203
- [x] Macos
213204
- [ ] Linux
214-
215-
## 交流
216-
217-
- 暂不开放官方交流群
218-
- 遇到有问题,请提[Issue](https://github.com/billd-project/desk/issues)
219-
220-
## 商务合作
221-
222-
- [付费咨询](https://live.hsslive.cn/support)
223-
224-
## 私有化部署
225-
226-
- [付费咨询](https://live.hsslive.cn/support)

build/icons/1024x1024.png

401 KB
Loading

build/icons/128x128.png

13.4 KB
Loading

build/icons/16x16.png

630 Bytes
Loading

build/icons/24x24.png

1.1 KB
Loading

build/icons/256x256.png

41.2 KB
Loading

build/icons/32x32.png

1.64 KB
Loading

build/icons/48x48.png

3.09 KB
Loading

build/icons/512x512.png

127 KB
Loading

build/icons/64x64.png

4.58 KB
Loading

build/icons/icon.icns

760 KB
Binary file not shown.

build/icons/icon.ico

353 KB
Binary file not shown.

build/source/billd.png

46.2 KB
Loading

deploy/handleGiteeJenkins.mjs

+35-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import trash from 'trash';
77

88
const allFile = [];
99
const ignore = ['.DS_Store', '.git', 'node_modules', 'dist'];
10-
const localDir = '/Users/huangshuisheng/Desktop/hss/galaxy-s10/billd-desk';
10+
const localDir = '/Users/huangshuisheng/Desktop/hss/galaxy-s10/desk';
1111
const giteeDir = '/Users/huangshuisheng/Desktop/hss/jenkins/billd-desk';
1212

1313
const dir = fs.readdirSync(localDir).filter((item) => {
@@ -71,6 +71,25 @@ async function clearOld() {
7171
await Promise.all(queue);
7272
}
7373

74+
const newPkgStr = fs.readFileSync(
75+
path.resolve(localDir, 'package.json'),
76+
'utf-8'
77+
);
78+
const viteConfigStr = fs.readFileSync(
79+
path.resolve(localDir, './deploy/vite.config.ts'),
80+
'utf-8'
81+
);
82+
const tsconfigStr = fs.readFileSync(
83+
path.resolve(localDir, './deploy/tsconfig.json'),
84+
'utf-8'
85+
);
86+
const newPkg = JSON.parse(newPkgStr);
87+
delete newPkg['devDependencies']['@electron-toolkit/preload'];
88+
delete newPkg['devDependencies']['@electron/rebuild'];
89+
delete newPkg['devDependencies']['electron'];
90+
delete newPkg['devDependencies']['electron-builder'];
91+
delete newPkg['devDependencies']['electron-icon-builder'];
92+
7493
if (process.cwd().indexOf('jenkins') !== -1) {
7594
console.log('当前目录错误');
7695
} else {
@@ -80,6 +99,21 @@ if (process.cwd().indexOf('jenkins') !== -1) {
8099
const gitignoreTxt =
81100
'node_modules\ndist\ncomponents.d.ts\n.eslintcache\n.DS_Store\n';
82101
fs.writeFileSync(path.resolve(giteeDir, './.gitignore'), gitignoreTxt);
102+
fs.writeFileSync(
103+
path.resolve(giteeDir, 'package.json'),
104+
// @ts-ignore
105+
JSON.stringify({ ...newPkg }, {}, 2)
106+
);
107+
fs.writeFileSync(
108+
path.resolve(giteeDir, 'vite.config.ts'),
109+
// @ts-ignore
110+
viteConfigStr
111+
);
112+
fs.writeFileSync(
113+
path.resolve(giteeDir, 'tsconfig.json'),
114+
// @ts-ignore
115+
tsconfigStr
116+
);
83117
execSync(`pnpm i`, { cwd: giteeDir });
84118
execSync(`git add .`, { cwd: giteeDir });
85119
execSync(`git commit -m 'feat: ${new Date().toLocaleString()}'`, {

deploy/tsconfig.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2020",
4+
"useDefineForClassFields": true,
5+
"module": "ESNext",
6+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
7+
"skipLibCheck": true,
8+
"noImplicitAny": false,
9+
10+
/* Bundler mode */
11+
"moduleResolution": "bundler",
12+
"allowImportingTsExtensions": true,
13+
"resolveJsonModule": true,
14+
"isolatedModules": true,
15+
"noEmit": true,
16+
"jsx": "preserve",
17+
18+
"baseUrl": "./",
19+
"paths": {
20+
"@/*": ["src/*"]
21+
},
22+
23+
/* Linting */
24+
"strict": true,
25+
"noUnusedLocals": true,
26+
"noUnusedParameters": true,
27+
"noFallthroughCasesInSwitch": true
28+
},
29+
30+
"include": [
31+
"src/**/*.ts",
32+
"src/**/*.d.ts",
33+
"src/**/*.tsx",
34+
"src/**/*.vue",
35+
"config/**/*.ts",
36+
"components.d.ts"
37+
], // 仅仅匹配这些文件,除了src以外的文件都不会被匹配
38+
"references": [{ "path": "./tsconfig.node.json" }]
39+
}

deploy/vite.config.ts

+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
import vue from '@vitejs/plugin-vue';
2+
import BilldHtmlWebpackPlugin, { logData } from 'billd-html-webpack-plugin';
3+
import path from 'path';
4+
import AutoImport from 'unplugin-auto-import/vite';
5+
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
6+
import Components from 'unplugin-vue-components/vite';
7+
import { defineConfig } from 'vite';
8+
import checker from 'vite-plugin-checker';
9+
import { createHtmlPlugin } from 'vite-plugin-html';
10+
11+
import pkg from './package.json';
12+
13+
const isWeb = process.env['VITE_APP_RELEASE_PROJECT_ISWEB'] === 'true';
14+
15+
// https://vitejs.dev/config/
16+
export default defineConfig(({ mode }) => {
17+
const isProduction = mode === 'production';
18+
19+
const outputStaticUrl = () => {
20+
if (isWeb) {
21+
if (isProduction) {
22+
return 'https://resource.hsslive.cn/billd-desk/dist/';
23+
} else {
24+
return './';
25+
}
26+
} else {
27+
if (isProduction) {
28+
return 'dist';
29+
} else {
30+
return './';
31+
}
32+
}
33+
};
34+
35+
return {
36+
base: outputStaticUrl(),
37+
css: {
38+
preprocessorOptions: {
39+
scss: {
40+
additionalData: `@use 'billd-scss/src/index.scss' as *;@import "@/assets/css/constant.scss";`,
41+
},
42+
},
43+
},
44+
resolve: {
45+
alias: { '@': path.resolve(__dirname, 'src') },
46+
/**
47+
* 不建议省略.vue后缀
48+
* https://cn.vitejs.dev/config/shared-options.html#resolve-extensions
49+
*/
50+
// extensions: ['.js', '.ts', '.jsx', '.tsx', '.vue'],
51+
},
52+
build: {
53+
outDir: 'dist',
54+
},
55+
plugins: [
56+
// legacy(),
57+
// isProduction && legacy(),
58+
vue(),
59+
createHtmlPlugin({
60+
inject: {
61+
data: {
62+
// @ts-ignore
63+
title: pkg.productName,
64+
},
65+
},
66+
}),
67+
// renderer({
68+
// resolve: {
69+
// '@nut-tree/nut-js': { type: 'cjs' },
70+
// },
71+
// }),
72+
checker({
73+
// typescript: true,
74+
vueTsc: true,
75+
eslint: {
76+
lintCommand: 'eslint "./src/**/*.{ts,tsx}"', // for example, lint .ts & .tsx
77+
},
78+
}),
79+
// eslint({
80+
// failOnError: false,
81+
// failOnWarning: false,
82+
// cache: false,
83+
// }),
84+
AutoImport({
85+
imports: [
86+
{
87+
'naive-ui': ['useMessage', 'useNotification'],
88+
},
89+
],
90+
}),
91+
Components({
92+
resolvers: [NaiveUiResolver()],
93+
}),
94+
new BilldHtmlWebpackPlugin({ env: 'vite4' }).config,
95+
],
96+
define: {
97+
'process.env': {
98+
BilldHtmlWebpackPlugin: logData(),
99+
NODE_ENV: JSON.stringify(isProduction ? 'production' : 'development'),
100+
PUBLIC_PATH: outputStaticUrl(),
101+
VUE_APP_RELEASE_PROJECT_NAME: JSON.stringify(
102+
process.env.VUE_APP_RELEASE_PROJECT_NAME
103+
),
104+
VUE_APP_RELEASE_PROJECT_ENV: JSON.stringify(
105+
process.env.VUE_APP_RELEASE_PROJECT_ENV
106+
),
107+
VUE_APP_RELEASE_PROJECT_VERSION: JSON.stringify(pkg.version),
108+
},
109+
},
110+
111+
server: {
112+
host: '0.0.0.0',
113+
proxy: {
114+
'/api': {
115+
target: 'http://localhost:4300',
116+
secure: false, // 默认情况下(secure: true),不接受在HTTPS上运行的带有无效证书的后端服务器。设置secure: false后,后端服务器的HTTPS有无效证书也可运行
117+
/**
118+
* changeOrigin,是否修改请求地址的源
119+
* 默认changeOrigin: false,即发请求即使用devServer的localhost:port发起的,如果后端服务器有校验源,就会有问题
120+
* 设置changeOrigin: true,就会修改发起请求的源,将原本的localhost:port修改为target,这样就可以通过后端服务器对源的校验
121+
*/
122+
changeOrigin: true,
123+
rewrite: (path) => path.replace(/^\/api/, '/'),
124+
},
125+
'/betaapi': {
126+
target: 'http://localhost:4300',
127+
secure: false, // 默认情况下(secure: true),不接受在HTTPS上运行的带有无效证书的后端服务器。设置secure: false后,后端服务器的HTTPS有无效证书也可运行
128+
/**
129+
* changeOrigin,是否修改请求地址的源
130+
* 默认changeOrigin: false,即发请求即使用devServer的localhost:port发起的,如果后端服务器有校验源,就会有问题
131+
* 设置changeOrigin: true,就会修改发起请求的源,将原本的localhost:port修改为target,这样就可以通过后端服务器对源的校验
132+
*/
133+
changeOrigin: true,
134+
rewrite: (path) => path.replace(/^\/betaapi/, '/'),
135+
},
136+
'/prodapi': {
137+
target: 'http://localhost:4200',
138+
secure: false, // 默认情况下(secure: true),不接受在HTTPS上运行的带有无效证书的后端服务器。设置secure: false后,后端服务器的HTTPS有无效证书也可运行
139+
/**
140+
* changeOrigin,是否修改请求地址的源
141+
* 默认changeOrigin: false,即发请求即使用devServer的localhost:port发起的,如果后端服务器有校验源,就会有问题
142+
* 设置changeOrigin: true,就会修改发起请求的源,将原本的localhost:port修改为target,这样就可以通过后端服务器对源的校验
143+
*/
144+
changeOrigin: true,
145+
rewrite: (path) => path.replace(/^\/prodapi/, '/'),
146+
},
147+
},
148+
},
149+
};
150+
});

0 commit comments

Comments
 (0)