Update version to 1.76.0

This commit is contained in:
kwaroran
2024-01-17 08:02:42 +09:00
parent 4d27bc49c0
commit a5492b317f
4 changed files with 19 additions and 14 deletions

View File

@@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "RisuAI", "productName": "RisuAI",
"version": "1.75.3" "version": "1.76.0"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {

View File

@@ -1,17 +1,22 @@
export const patchNote = { export const patchNote = {
version: "1.75", version: "1.76",
content: content:
` `
# Update 1.75 # Update 1.76
- Added @@move_top and @@move_bottom in regex script - Added Commands
- Added @@end, @@assistant, @@user, @@system - /input: Show input dialog and return inputted text
- depercated @@@end, @@@assistant, @@@user, @@@system for consistency - /echo: Show toast message
- Use newly added two @ version instead - /popup: Show popup message
- deprecated commands could be removed in future update - /pass: Pass the pipe
- Added {{br}}, used for line break - /buttons: Show button dialog and return selected button
- sendChat error message changed - /speak: Speak text as TTS
- fix AWS claude (by @bangonicdd) - /send: Send text to chat as user, without sending to LLM
- fix TTS replace error when empty string - /sendas: Send text to chat as character, with sending to LLM
- /comment: Adds comment to chat
- /cut: Cut the text
- /del: Delete the recent text
- Most of them are SilyTavern compatible
- Memory Punctuation Removal is now on by default
` `
} }

View File

@@ -15,7 +15,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba';
export const DataBase = writable({} as any as Database) export const DataBase = writable({} as any as Database)
export const loadedStore = writable(false) export const loadedStore = writable(false)
export let appVer = "1.75.3" export let appVer = "1.76.0"
export let webAppSubVer = '' export let webAppSubVer = ''
export function setDatabase(data:Database){ export function setDatabase(data:Database){

View File

@@ -1 +1 @@
{"version":"1.75.3"} {"version":"1.76.0"}