From c23fa882d7e7e120466a0d24cca7530b4f0c6e80 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Wed, 29 May 2024 18:43:50 +0900 Subject: [PATCH] chore: Update app version to 1.109.0 --- android/app/build.gradle | 2 +- android/app/release/output-metadata.json | 2 +- src-tauri/tauri.conf.json | 2 +- src/etc/patchNote.ts | 19 +++++++++---------- src/ts/storage/database.ts | 2 +- version.json | 2 +- 6 files changed, 14 insertions(+), 15 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 6a680f0f..666f9000 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.108.2" + versionName "1.109.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 b1645957..9abca355 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.108.2", + "versionName": "1.109.0", "outputFile": "app-release.apk" } ], diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0b4cf5ce..42d75315 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.108.2" + "version": "1.109.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index af8fcb85..bebe4623 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,16 +1,15 @@ export const patchNote = { - version: "1.108", + version: "1.109", content: ` -# Update 1.108 (Low Level Access) -- Added new character field: Low Level Access - - Enabling this field will allow you to access the low level functions, like accessing the AI model via triggers - - Added Run Main Model trigger - - Added Resend AI trigger - - Added Check Similarity trigger - - Added Show Alert trigger -- Added is Truthy condition in trigger -- Fixed lorebook not threatening as a match if the key is not lowercase +# Update 1.109 (More triggers update) +- Added new triggers + - Added Image Generation trigger + - Added Extract Text with Regex trigger + - Added Cut Chat trigger + - Added Modify Chat trigger +- Now modules can have low level access +- Fixed Lorebooks not matching with spaces ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 3b7f87c8..044c6f71 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.108.2" +export let appVer = "1.109.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index ac20e8d7..9b7a5ac9 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.108.2"} \ No newline at end of file +{"version":"1.109.0"} \ No newline at end of file