Skip to content

Commit

Permalink
Update 1.88.2 (#332)
Browse files Browse the repository at this point in the history
# PR Checklist
- [ ] Did you check if it works normally in all models? *ignore this
when it dosen't uses models*
- [ ] Did you check if it works normally in all of web, local and node
hosted versions? if it dosen't, did you blocked it in those versions?
- [ ] Did you added a type def?

# Description
  • Loading branch information
kwaroran authored Mar 25, 2024
2 parents ff0bd4e + 65c148f commit b8f6b5c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.88.1"
"version": "1.88.2"
},
"tauri": {
"allowlist": {
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.88.1"
export let appVer = "1.88.2"
export let webAppSubVer = ''

export function setDatabase(data:Database){
Expand Down
2 changes: 1 addition & 1 deletion src/ts/storage/globalApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ async function fetchWithProxy(url: string, arg: GlobalFetchArgs): Promise<Global

const body = arg.body instanceof URLSearchParams ? arg.body.toString() : JSON.stringify(arg.body);

const response = await fetch(furl, { body, headers, method: arg.method, signal: arg.abortSignal });
const response = await fetch(furl, { body, headers, method: arg.method ?? "POST", signal: arg.abortSignal });
const isSuccess = response.ok && response.status >= 200 && response.status < 300;

if (arg.rawResponse) {
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"1.88.1"}
{"version":"1.88.2"}

0 comments on commit b8f6b5c

Please sign in to comment.