diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index a25d14dc..b9080ab0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.103.4" + "version": "1.104.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index f4fbb827..fd645468 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,13 +1,15 @@ export const patchNote = { - version: "1.103", + version: "1.104", content: ` -# Update 1.103 -- Made logit_bias work for all gpt-based multimodal models (#418) -- Added supports of gpt-4o tokenizer for reverse_proxy (#418) -- Added GPT-4o in Custom (OpenAI-compatible) (#419) -- Added Tag autocomplete in RisuRealm upload -- Fixed GPT-4o image multimodal feature not working properly +# Update 1.104 +- Added experimental Hypamemory V2 +- Added catalog list menu +- Added catalog trash menu +- Added trash + - Now if you delete a character, it will be moved to the trash instead of being deleted permanently + - You can restore the character from the trash + - Characters in the trash will be deleted permanently after 3 days ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 2d3eeb77..598347ce 100644 --- a/src/ts/storage/database.ts +++ b/src/ts/storage/database.ts @@ -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 = "1.103.4" +export let appVer = "1.104.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index 80f97cd1..ed5cf034 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.103.4"} \ No newline at end of file +{"version":"1.104.0"} \ No newline at end of file