Browse Source

refac: electron app

Timothy Jaeryang Baek 6 months ago
parent
commit
f5437dae4a
2 changed files with 4 additions and 4 deletions
  1. 1 1
      src/lib/stores/index.ts
  2. 3 3
      src/routes/+layout.svelte

+ 1 - 1
src/lib/stores/index.ts

@@ -13,7 +13,7 @@ export const user: Writable<SessionUser | undefined> = writable(undefined);
 
 // Electron App
 export const isApp = writable(false);
-export const appVersion = writable(null);
+export const appInfo = writable(null);
 
 // Frontend
 export const MODEL_DOWNLOAD_POOL = writable({});

+ 3 - 3
src/routes/+layout.svelte

@@ -24,7 +24,7 @@
 		temporaryChatEnabled,
 		isLastActiveTab,
 		isApp,
-		appVersion
+		appInfo
 	} from '$lib/stores';
 	import { goto } from '$app/navigation';
 	import { page } from '$app/stores';
@@ -203,12 +203,12 @@
 	onMount(async () => {
 		if (window?.electronAPI) {
 			const res = await window.electronAPI.send({
-				type: 'version'
+				type: 'info'
 			});
 
 			if (res) {
 				isApp.set(true);
-				appVersion.set(res.version);
+				appInfo.set(res);
 			}
 		}