diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b343bfb0..c47e61e0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.95.7" + "version": "1.96.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 1357d02d..7a1b090e 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,20 +1,13 @@ export const patchNote = { - version: "1.95", + version: "1.96", content: ` -# Update 1.95 -- Added New character import screen -- Added Metadata viewer for chat -- Changed default prompt -- Changed High contrast text color -- Changed SupaMemory and HypaMemory to return one chunk instead of multiple -- Made progress circle color to change dynamically depending how the progress is -- Imported flag would be saved when character is imported -- Fixed Realm UI cutoff -- Fixed Realm import not working for new URLs -- Fixed Error message in SupaMemory returning [Object Object] -- Fixed HypaMemory not running even the HypaMemory is enabled -- Fixed HypaMemory and SupaMemory returning same result +# Update 1.96 +- Added Openrouter Repetition penalty +- Added Openrouter Min P +- Added Openrouter Top A +- Added Custom Tokenizer settings for both Openrouter and Custom +- Added Remove Incomplete Sentences option ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 459d00b9..7912213c 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.95.7" +export let appVer = "1.96.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index 24640242..4f9e46dc 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.95.7"} \ No newline at end of file +{"version":"1.96.0"} \ No newline at end of file