diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8966533a..20b7d352 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.81.1" + "version": "1.82.0" }, "tauri": { "allowlist": { diff --git a/src/etc/patchNote.ts b/src/etc/patchNote.ts index 49f40872..8e260295 100644 --- a/src/etc/patchNote.ts +++ b/src/etc/patchNote.ts @@ -1,15 +1,13 @@ export const patchNote = { - version: "1.81", + version: "1.82", content: ` -# Update 1.81 -- Added {{model}} - - {{model}} outputs the current ai model that is being used -- Added {{axmodel}} - - {{axmodel}} outputs the current ax. model that is being used -- Added {{startswith::A::B}} - - {{startswith::A::B}} returns true if A starts with B -- Improved Claude 3 format handling +# Update 1.82 +- Added native fetch handling for local version + - This would make the fetch request faster and more stable + - This would solve many issues with fetch request on local version +- Added Claude-3 streaming +- Force Plain Fetch is now unrecommended ` } diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index ba7b6978..d7d0c3b8 100644 --- a/src/ts/storage/database.ts +++ b/src/ts/storage/database.ts @@ -15,7 +15,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba'; export const DataBase = writable({} as any as Database) export const loadedStore = writable(false) -export let appVer = "1.81.1" +export let appVer = "1.82.0" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index 8869dcb6..12e027f2 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.81.1"} \ No newline at end of file +{"version":"1.82.0"} \ No newline at end of file