From 8c0fe0d7952c15987edc187f662ee847b2b5e90d Mon Sep 17 00:00:00 2001 From: kwaroran Date: Thu, 11 Apr 2024 06:06:26 +0900 Subject: [PATCH] Update version numbers to 1.95.0 --- src-tauri/tauri.conf.json | 2 +- src/etc/patchNote.ts | 28 ++++++++++++++-------------- src/ts/storage/database.ts | 2 +- version.json | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 462ff3ec..4e0d726f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.94.1" + "version": "1.95.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 73a8ffd3..1357d02d 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,20 +1,20 @@ export const patchNote = { - version: "1.94", + version: "1.95", content: ` -# Update 1.94 -- Added "If Value" condition in Trigger Scripts -- Added "Call Trigger" effect in Trigger Scripts -- Added "Stop Sending Prompt" effect in Trigger Scripts -- Added "Run Command" effect in Trigger Scripts -- Added Trigger Scripts' help dialog -- Added "risu-trigger" attribute support to trigger Trigger Scripts in HTML -- Reworked {{button::A::B}} to use with Trigger Scripts -- Trigger Scripts now parses curly braced syntax in attributes -- Fixed Commands not chaining properly -- Fixed Trigger Scripts' variable not saving and syncing properly -- Changed CharacterJS in character to not be shown unless unrecommended option is enabled -- Changed CharacterJS to not be exported in character export +# 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 ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 3302ed70..4805075a 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.94.1" +export let appVer = "1.95.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index e79f8f46..9094c3b4 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.94.1"} \ No newline at end of file +{"version":"1.95.0"} \ No newline at end of file