diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 75485ce6..cb1a06f0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.98.2" + "version": "1.99.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 5e788857..a545163e 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,14 +1,19 @@ export const patchNote = { - version: "1.98", + version: "1.99", content: ` -# Update 1.98 -- Added Hanurai Memory feature -- Added Supamemory boilerplate -- Added Llama3 Tokenizer +# Update 1.99 +- Added Playground + - Added Chat Playground + - Added Embedding Playground + - Added Tokenization Playground + - Added Syntax Playground + - Added Jinja Playground - Added Openrouter instruct mode -- Improved vector embedding similarity calculation -- Fixed error alert returning [object Object] instead of the error message +- Improved embedding performance +- Now Chat prompt item in prompt template would not show chat range by default +- Fixed Harunai enable option not appearing +- Fixed Approximate Tokens displaying wrong number ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 1cc646a7..ed354110 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.98.2" +export let appVer = "1.99.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index ce824de1..2119ee3c 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.98.2"} \ No newline at end of file +{"version":"1.99.0"} \ No newline at end of file