GetPlatform

This commit is contained in:
josc146 2023-05-29 21:15:11 +08:00
parent da033ab096
commit deb9e030cb
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import commonStore from './stores/commonStore';
import { ReadJson } from '../wailsjs/go/backend_golang/App';
import { GetPlatform, ReadJson } from '../wailsjs/go/backend_golang/App';
import { Cache, checkUpdate, downloadProgramFiles, LocalConfig, refreshModels, saveCache } from './utils';
import { getStatus } from './apis';
import { EventsOn } from '../wailsjs/runtime';
@ -15,6 +15,7 @@ export async function startup() {
initCache().then(initRemoteText);
await GetPlatform().then(commonStore.setPlatform);
await initConfig();
if (commonStore.settings.autoUpdatesCheck) // depends on config settings

View File

@ -33,6 +33,7 @@ class CommonStore {
device_name: 'CPU'
};
depComplete: boolean = false;
platform: string = 'windows';
// home
introduction: IntroductionContent = manifest.introduction;
// chat
@ -168,6 +169,10 @@ class CommonStore {
setCompletionGenerating(value: boolean) {
this.completionGenerating = value;
}
setPlatform(value: string) {
this.platform = value;
}
}
export default new CommonStore();