diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index ce1976ab..292c3172 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.80.0" + "version": "1.81.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 860d38e1..49f40872 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,19 +1,15 @@ export const patchNote = { - version: "1.78", + version: "1.81", content: ` -# Update 1.78 -- Added Modules - - Modules are package of triggers, regex, and lorebook - - You can enable globally, or enable only in specific chat - - Designed for easy sharing and activation/deactivation. -- Removed global regex and lorebook - - This would be replaced by modules - - Old global regex and lorebook will be converted to modules -- Fixed Claude prompting -- Settings menu would be remembered -- Added persona portraits (#289) -- Added gpt-3.5-turbo-0125 (#288) +# Update 1.81 +- Added {{model}} + - {{model}} outputs the current ai model that is being used +- Added {{axmodel}} + - {{axmodel}} outputs the current ax. model that is being used +- Added {{startswith::A::B}} + - {{startswith::A::B}} returns true if A starts with B +- Improved Claude 3 format handling ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 0c65741a..ea3cbf8b 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.80.0" +export let appVer = "1.81.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index be03c5e8..31c9b930 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.80.0"} \ No newline at end of file +{"version":"1.81.0"} \ No newline at end of file