完成图标修改

This commit is contained in:
ruotongyu
2024-07-02 23:02:16 +08:00
parent accfb6b8c4
commit 8c9f8caf30
4 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@@ -98,9 +98,10 @@ app.whenReady().then(() => {
win.hide()
})
if(!is.dev){
exec("./autoMateServer.exe", (error: any, stdout: any, stderr: any) => {
const serverPath = process.platform === 'win32' ? '.\\autoMateServer.exe' : './autoMateServer.exe';
exec(serverPath, (error: any, stdout: any, stderr: any) => {
if (error) {
console.error(`执行的错误: ${error}`);
console.error(`error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);

View File

@@ -12,7 +12,6 @@ import { Welcome } from "@renderer/pages/Welcome";
import ContentListAction from "@renderer/pages/ContentList/ContentListAction";
import CategoryAction from "@renderer/pages/Category/CategoryAction";
import { Setting } from "@renderer/pages/Setting";
import Interactive from "@renderer/pages/Interactive";
import SettingAction from "@renderer/pages/Setting/SettingAction";
import SettingLoader from "@renderer/pages/Setting/SettingLoader";