From 73eec2f018ff534fb5706357d1048c850ab51902 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Mon, 27 May 2024 12:40:28 +0900 Subject: [PATCH] chore: Update version to 1.107.0 --- android/app/build.gradle | 2 +- android/app/release/output-metadata.json | 2 +- src-tauri/tauri.conf.json | 2 +- src/etc/patchNote.ts | 52 +++++------------------- src/ts/storage/database.ts | 2 +- version.json | 2 +- 6 files changed, 15 insertions(+), 47 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index bea2dbde..34ab5265 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.106.5" + versionName "1.107.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 53c11d6b..e8b85090 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.106.5", + "versionName": "1.107.0", "outputFile": "app-release.apk" } ], diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index f8d9a859..95856cde 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.106.5" + "version": "1.107.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 65c9ca82..c640842c 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,48 +1,16 @@ export const patchNote = { - version: "1.106", + version: "1.107", content: ` -# 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 +# Update 1.107 (Things & Stuff Update) +- Added custom toggle system in prompt template +- Added default variable setting in prompt template and characters +- Removed experimental flag from HypaMemory V2 +- Added HypaMemory V2 chunk size and allocation size setting +- Changed old COT toggle to deprecated, dude to new custom toggle system +- Fixed Supamemory summary not working when generation choices are more than 1 +- Fixed triggerscript not handling undefined values as null +- Fixed Character Card V3 export not working or missing fields in specific cases ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 70d591f1..10eb1631 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.106.5" +export let appVer = "1.107.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index d6a87a24..4198a572 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.106.5"} \ No newline at end of file +{"version":"1.107.0"} \ No newline at end of file