From 0d4b89ff8016d346a810f511bf434be70275dc03 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Wed, 10 Apr 2024 11:34:37 +0900 Subject: [PATCH] Update version numbers to 1.94.0 --- src-tauri/tauri.conf.json | 2 +- src/etc/patchNote.ts | 23 ++++++++++++++--------- src/ts/storage/database.ts | 2 +- version.json | 2 +- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e374ea4e..1bcf08ad 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.93.7" + "version": "1.94.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index e9b23b5b..73a8ffd3 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,15 +1,20 @@ export const patchNote = { - version: "1.93", + version: "1.94", content: ` -# Update 1.93 -- Added {{#each A B}} syntax for looping through arrays -- Added {{range::A}} syntax which returns an array of numbers from 0 to A -- Added {{assetlist}} and {{emotionlist}} which returns a list of assets and emotions -- Added functionality to update card to realm optionally -- Changed {{history}} behavior to return the array of history -- Fixed a bug where {{#if}} was not working properly when its nested multiple times -- Removed tag dude to buggy behavior +# 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 ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 1641f35e..d8fd0845 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.93.7" +export let appVer = "1.94.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index 388022c9..0e59f7e1 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.93.7"} \ No newline at end of file +{"version":"1.94.0"} \ No newline at end of file