增加 防止系统休眠 功能 修复winipboadcast关闭后再次打开又启动的bug,优化成员列表字体大小和布局

This commit is contained in:
黑先森
2024-12-04 18:13:55 +08:00
parent 0253d95597
commit 7d6e93d796
13 changed files with 85 additions and 21 deletions
+1
View File
@@ -24,6 +24,7 @@ export const updateConfigJson = async (configJsonSeverUrl: Array<string> | strin
serverUrl,
port,
enableCustomListener,
enablePreventSleep,
customListenerData,
...otherConfig
} = mainStore.config;
+1 -1
View File
@@ -44,7 +44,7 @@ export const handleWinipBcStart = async () => {
await getWinIpBroadcastPid();
if (mainStore.winipBcPid <= 0) {
mainStore.$patch({
winIpBcAutoStart: true
winIpBcAutoStart: false
});
}
}