diff --git a/android/app/build.gradle b/android/app/build.gradle index a27c323e..7784cdba 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 "114.4.0" + versionName "114.5.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 6dc38819..777b8455 100644 --- a/android/app/release/output-metadata.json +++ b/android/app/release/output-metadata.json @@ -12,7 +12,7 @@ "filters": [], "attributes": [], "versionCode": 2, - "versionName": "114.4.0", + "versionName": "114.5.0", "outputFile": "app-release.apk" } ], diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b6a2dd98..6ed8cffa 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "114.4.0" + "version": "114.5.0" }, "tauri": { "allowlist": { diff --git a/src/lang/en.ts b/src/lang/en.ts index d56051eb..4f2785bc 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -131,6 +131,7 @@ export const languageEnglish = { defaultVariables: "Here you can define your own default variables. use `=` format, seperated by newline. for example, `name=RisuAI`, which then can be used with trigger scripts and variables CBS like `{{getvar::A}}`, `{{setvar::A::B}}` or `{{? $A + 1}}`. if prompt template's default variable and character's default variable has same name, character's default variable will be used.", lowLevelAccess: "If enabled, it will enable access to features that requires high computing powers and executing AI model via triggers in the character. do not enable this unless you really need these features.", triggerLLMPrompt: "A prompt that would be sent to the model. you can use multi turns and roles by using `@@role user`, `@@role system`, `@@role assistant`. for example, \n\`\`\`\n@@role system\nrespond as hello\n@@role assistant\nhello\n@@role user\nhi\n\`\`\`", + legacyTranslation: "If enabled, it will use the old translation method, which preprocess markdown and quotes before translations instead of postprocessing after translations." }, setup: { chooseProvider: "Choose AI Provider", @@ -655,4 +656,11 @@ export const languageEnglish = { lineHeight: "Line Height", loadAutoServerBackup: "Load Auto Server Backup", notCharxWarn: "This character uses multiple assets. it is recommended to export this character as a CharX format for better compatibility.", + noPlugins: "No Plugins Installed", + legacyTranslation: "Legacy Translation", + clipboardSuccess: "Copied to Clipboard", + translateContent: 'Translate Content', + doNotTranslate: "Do Not Translate", + includePersonaName: "Include Persona Name", + hidePersonaName: "Hide Persona Name", } \ No newline at end of file diff --git a/src/lib/ChatScreens/Chat.svelte b/src/lib/ChatScreens/Chat.svelte index 2bafe476..c4657710 100644 --- a/src/lib/ChatScreens/Chat.svelte +++ b/src/lib/ChatScreens/Chat.svelte @@ -1,6 +1,6 @@