From a476bc9c05f8dac136d21a213c6bd7ce1f63f0ba Mon Sep 17 00:00:00 2001 From: kwaroran Date: Thu, 25 Apr 2024 14:43:04 +0900 Subject: [PATCH] Update version numbers to 1.100.0 --- src-tauri/tauri.conf.json | 2 +- src/etc/patchNote.ts | 43 ++++++++++++++++++++++++++------------ src/ts/storage/database.ts | 2 +- version.json | 2 +- 4 files changed, 33 insertions(+), 16 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 3a4b91c1..0d41e9e4 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.99.1" + "version": "1.100.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index a545163e..7434cda0 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,19 +1,36 @@ export const patchNote = { - version: "1.99", + version: "1.100", content: ` -# Update 1.99 -- Added Playground - - Added Chat Playground - - Added Embedding Playground - - Added Tokenization Playground - - Added Syntax Playground - - Added Jinja Playground -- Added Openrouter instruct mode -- Improved embedding performance -- Now Chat prompt item in prompt template would not show chat range by default -- Fixed Harunai enable option not appearing -- Fixed Approximate Tokens displaying wrong number +# Update 1.100 +- Improved {{datetimeformat:A}} + - Now it can be also called with {{datetimeformat::A}}, {{date::A}}, {{time::A}} + - Added \`X\` and \`x\` format for unix timestamp + - Characters over 300 will be cut off +- Improved {{calc::A}} + - Now it can be also called with {{? A}} + - Now it can use \`(\` and \`)\` for calculation + - Now it can use \`^\` for power + - Now it can use \`%\` for modulo + - Now it can use \`|\` for or + - Now it can use \`&\` for and + - Now it can use \`<\` for less than + - Now it can use \`>\` for greater than +- Added {{idle_duration}} + - Old {{idle_duration}} has been renamed to {{message_idle_duration}} + - {{idle_duration}} will return (current time - last message time) +- Added {{setdefaultvar::A::B}} + - If A is not defined, it will be set to B +- Added \`/?\` command +- Added \`risu_user\` and \`risu_char\` variable to jinja template +- Added escape key functionality to close the modal +- Added Text Input Size setting +- Added Text Input Text Size setting +- Added Sidebar Size setting +- Added functionality to make a blank first message by using only {{blank}} +- CloneDeep has been replaced with structuredClone + - This will improve the performance +- Unhandled Error will be automatically alerted now ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 78960063..48398889 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.99.1" +export let appVer = "1.100.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index f2492e52..fc796ffc 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.99.1"} \ No newline at end of file +{"version":"1.100.0"} \ No newline at end of file