diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index bbc20876..64daeecc 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.88.3" + "version": "1.89.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 882b817b..da8528c1 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,15 +1,16 @@ export const patchNote = { - version: "1.88", + version: "1.89", content: ` -# Update 1.88 -- Added DeepLX API support for translation #328 -- Added ElevenLabs Multilingual support #328 -- Added CharacterJS API support for Background Embedding #324 -- Added CodeMinor based syntax highlighting on input #325 -- Added ST preset import support -- Reworked Variable system, now variables are stored in CharacterJS states, rather than in the chat context - +# Update 1.89.0 +- Reworked import card system + - Now it would read streamed data instead of whole file + - This would reduce memory usage and increase performance, and also allow to import larger files +- Reworked RisuRealm share system + - Now it would upload and download streamed data instead of splited assets + - Added Upload functionallity +- Added /setvar, /addvar, /getvar command +- Fixed trigger scripts using old variable system ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 11216505..50bd8785 100644 --- a/src/ts/storage/database.ts +++ b/src/ts/storage/database.ts @@ -15,7 +15,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba'; export const DataBase = writable({} as any as Database) export const loadedStore = writable(false) -export let appVer = "1.88.3" +export let appVer = "1.89.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index c789c71d..031b0b52 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.88.3"} \ No newline at end of file +{"version":"1.89.0"} \ No newline at end of file