Update version to 1.91.0
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "RisuAI",
|
"productName": "RisuAI",
|
||||||
"version": "1.90.1"
|
"version": "1.91.0"
|
||||||
},
|
},
|
||||||
"tauri": {
|
"tauri": {
|
||||||
"allowlist": {
|
"allowlist": {
|
||||||
|
|||||||
@@ -1,11 +1,23 @@
|
|||||||
export const patchNote = {
|
export const patchNote = {
|
||||||
version: "1.90",
|
version: "1.91",
|
||||||
content:
|
content:
|
||||||
`
|
`
|
||||||
# Update 1.90.1
|
# Update 1.91.0
|
||||||
- Added {{spread::A}} and {{trim::B}}
|
- {{#if A}} now trims the whitespace inside the content
|
||||||
- Fixed undefined variable crashing the app
|
- Old {{time}} and {{date}} is renamed to {{message_time}} and {{message_date}}
|
||||||
- Now invaild curly brace syntax will be ignored
|
- Added {{lastcharmessage}} as allias for {{previous_char_chat}}
|
||||||
|
- Added {{lastusermessage}} as allias for {{previous_user_chat}}
|
||||||
|
- Added {{newline}} as allias for {{br}}
|
||||||
|
- Added {{lastmessage}}, which returns the last message sent in the current chat
|
||||||
|
- Added {{maxcontext}}, which returns the maximum context length
|
||||||
|
- Added {{lastmessageid}}, which returns the index of the last message sent in the current chat
|
||||||
|
- Added {{pow::A::B}}, which returns A raised to the power of B
|
||||||
|
- Added {{pick::A::B...}} which returns a random element from the list, but is consistent across the same message
|
||||||
|
- Added {{time}}, which returns the current time in the format HH:MM:SS in your timezone
|
||||||
|
- Added {{date}}, which returns the current date in the format YYYY-MM-DD in your timezone
|
||||||
|
- Added {{isotime}}, which returns the current time in the format HH:MM:SS in UTC
|
||||||
|
- Added {{isodate}}, which returns the current date in the format YYYY-MM-DD in UTC
|
||||||
|
- Added {{#if-pure A}} which is the same as {{#if A}}, but does not trim the whitespace inside the content
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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.90.1"
|
export let appVer = "1.91.0"
|
||||||
export let webAppSubVer = ''
|
export let webAppSubVer = ''
|
||||||
|
|
||||||
export function setDatabase(data:Database){
|
export function setDatabase(data:Database){
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"version":"1.90.1"}
|
{"version":"1.91.0"}
|
||||||
Reference in New Issue
Block a user