Skip to content

Commit bc1a737

Browse files
committed
Update version to 1.82.0 and add patch notes for 1.82
1 parent 47ec8c9 commit bc1a737

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "RisuAI",
11-
"version": "1.81.1"
11+
"version": "1.82.0"
1212
},
1313
"tauri": {
1414
"allowlist": {

src/etc/patchNote.ts

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
export const patchNote = {
2-
version: "1.81",
2+
version: "1.82",
33
content:
44
`
5-
# Update 1.81
6-
- Added {{model}}
7-
- {{model}} outputs the current ai model that is being used
8-
- Added {{axmodel}}
9-
- {{axmodel}} outputs the current ax. model that is being used
10-
- Added {{startswith::A::B}}
11-
- {{startswith::A::B}} returns true if A starts with B
12-
- Improved Claude 3 format handling
5+
# Update 1.82
6+
- Added native fetch handling for local version
7+
- This would make the fetch request faster and more stable
8+
- This would solve many issues with fetch request on local version
9+
- Added Claude-3 streaming
10+
- Force Plain Fetch is now unrecommended
1311
`
1412
}
1513

src/ts/storage/database.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba';
1515

1616
export const DataBase = writable({} as any as Database)
1717
export const loadedStore = writable(false)
18-
export let appVer = "1.81.1"
18+
export let appVer = "1.82.0"
1919
export let webAppSubVer = ''
2020

2121
export function setDatabase(data:Database){

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.81.1"}
1+
{"version":"1.82.0"}

0 commit comments

Comments
 (0)