From 67755466caf8ce203b887386cb2129dfe012deb1 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Sun, 26 May 2024 08:31:36 +0900 Subject: [PATCH] chore: Update version to 1.106.0 --- android/app/build.gradle | 2 +- android/app/release/output-metadata.json | 2 +- src-tauri/tauri.conf.json | 2 +- src/etc/patchNote.ts | 50 ++++++++++++++++++++---- src/ts/storage/database.ts | 2 +- version.json | 2 +- 6 files changed, 47 insertions(+), 13 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 252c32f5..25e7b8c7 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 2 - versionName "1.105.1" + versionName "1.106.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/android/app/release/output-metadata.json b/android/app/release/output-metadata.json index 13a6f134..2498a25a 100644 --- a/android/app/release/output-metadata.json +++ b/android/app/release/output-metadata.json @@ -12,7 +12,7 @@ "filters": [], "attributes": [], "versionCode": 2, - "versionName": "1.105.1", + "versionName": "1.106.0", "outputFile": "app-release.apk" } ], diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 29f4ddbb..72d64f8a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.105.1" + "version": "1.106.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 442634bf..65c9ca82 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,14 +1,48 @@ export const patchNote = { - version: "1.105", + version: "1.106", content: ` -# Update 1.105 -- Reworked RisuRealm share screen - - Now it uses RisuRealm iframe instead of GUI provided by app -- Added RisuRealm preset sharing support -- Added new preset sharing screen -- Added {{first_msg_index}} CBS #436 -- Removed RisuRCC dude to low usage +# Update 1.106 (Character Card V3 Update 1 & Highlights) +- Added Character Card V3 Support + - Added Character Card V3 Export + - Added Character Card V3 Import + - Added Multiple character icons support + - Added {{// }} CBS support + - Added {{hidden_key:A}} support + - Added {{reverse:B}} support + - Added {{comment:B}} support + - Added nickname field + - Added creation date field + - Added last modified date field + - Added use regex field on lorebook + - Rewrote lorebook system + - Added decorators support + - Added @@activate_only_after support + - Added @@activate_only_every support + - Added @@depth support + - Added @@reverse_depth support + - Added @@role support + - Added @@@scan_depth support + - Added @@is_greeting support + - Added @@position support + - Added @@ignore_on_max_context support + - Added @@additional_keys support + - Added @@exclude_keys support + - Added @@activate support + - Added @@dont_activate support + - Added @@disable_ui_prompt support +- Deprecated legacy decorators + - Deprecated @@end, use @@role end instead + - Deprecated @@assistant, use @@role assistant instead + - Deprecated @@user, use @@role user instead + - Deprecated @@system, use @@role system instead +- Added Highlight system + - Requires Custom Highlight API support in the browser/OS + - This would enable Highlights of CBS, decorators, and more +- Added Long press to close edit +- Added Long press to remove recursive +- Changed Regex OUT to multi-line input, rather than single line +- Changed many Trigger Script fields to multi-line input, rather than single line ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 4e431cad..f2384e1c 100644 --- a/src/ts/storage/database.ts +++ b/src/ts/storage/database.ts @@ -14,7 +14,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba'; export const DataBase = writable({} as any as Database) export const loadedStore = writable(false) -export let appVer = "1.105.1" +export let appVer = "1.106.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index b2f5daea..96ca5af1 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.105.1"} \ No newline at end of file +{"version":"1.106.0"} \ No newline at end of file