diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index dff30fd6..10f1163a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.75.3" + "version": "1.76.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 950f6c6e..d5e28d23 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,17 +1,22 @@ export const patchNote = { - version: "1.75", + version: "1.76", content: ` -# Update 1.75 -- Added @@move_top and @@move_bottom in regex script -- Added @@end, @@assistant, @@user, @@system -- depercated @@@end, @@@assistant, @@@user, @@@system for consistency - - Use newly added two @ version instead - - deprecated commands could be removed in future update -- Added {{br}}, used for line break -- sendChat error message changed -- fix AWS claude (by @bangonicdd) -- fix TTS replace error when empty string +# Update 1.76 +- Added Commands + - /input: Show input dialog and return inputted text + - /echo: Show toast message + - /popup: Show popup message + - /pass: Pass the pipe + - /buttons: Show button dialog and return selected button + - /speak: Speak text as TTS + - /send: Send text to chat as user, without sending to LLM + - /sendas: Send text to chat as character, with sending to LLM + - /comment: Adds comment to chat + - /cut: Cut the text + - /del: Delete the recent text + - Most of them are SilyTavern compatible +- Memory Punctuation Removal is now on by default ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 7c42c1e5..7e9915d1 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.75.3" +export let appVer = "1.76.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index 28cb3702..12df1caa 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.75.3"} \ No newline at end of file +{"version":"1.76.0"} \ No newline at end of file