Skip to content

Commit

Permalink
Update version to 1.82.0 and add patch notes for 1.82
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaroran committed Mar 6, 2024
1 parent 47ec8c9 commit bc1a737
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "RisuAI",
"version": "1.81.1"
"version": "1.82.0"
},
"tauri": {
"allowlist": {
Expand Down
16 changes: 7 additions & 9 deletions src/etc/patchNote.ts
Original file line number Diff line number Diff line change
@@ -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
`
}

Expand Down
2 changes: 1 addition & 1 deletion src/ts/storage/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"1.81.1"}
{"version":"1.82.0"}

0 comments on commit bc1a737

Please sign in to comment.