Merge branch 'kwaroran:main' into main

This commit is contained in:
HyperBlaze
2024-06-14 10:01:00 -07:00
committed by GitHub
11 changed files with 74 additions and 107 deletions

View File

@@ -14,7 +14,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba';
export const DataBase = writable({} as any as Database)
export const loadedStore = writable(false)
export let appVer = "114.2.2"
export let appVer = "114.3.0"
export let webAppSubVer = ''
export function setDatabase(data:Database){

View File

@@ -7,7 +7,7 @@ import { get } from "svelte/store";
import {open} from '@tauri-apps/api/shell'
import { DataBase, loadedStore, setDatabase, type Database, defaultSdDataFunc } from "./database";
import { appWindow } from "@tauri-apps/api/window";
import { checkUpdate } from "../update";
import { checkRisuUpdate } from "../update";
import { botMakerMode, selectedCharID } from "../stores";
import { Body, ResponseType, fetch as TauriFetch } from "@tauri-apps/api/http";
import { loadPlugins } from "../plugins/plugins";
@@ -419,7 +419,7 @@ export async function loadData() {
throw "Your save file is corrupted"
}
}
await checkUpdate()
await checkRisuUpdate()
await changeFullscreen()
}