1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00

Merge pull request #77 from lencx/dev

This commit is contained in:
lencx 2022-12-25 02:27:58 +08:00 committed by GitHub
commit ed268b32b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 12 deletions

View File

@ -22,9 +22,9 @@
**最新版:**
- `Mac`: [ChatGPT_0.6.8_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.8/ChatGPT_0.6.8_x64.dmg)
- `Linux`: [chat-gpt_0.6.8_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.8/chat-gpt_0.6.8_amd64.deb)
- `Windows`: [ChatGPT_0.6.8_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.8/ChatGPT_0.6.8_x64_en-US.msi)
- `Mac`: [ChatGPT_0.6.9_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.9/ChatGPT_0.6.9_x64.dmg)
- `Linux`: [chat-gpt_0.6.9_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.9/chat-gpt_0.6.9_amd64.deb)
- `Windows`: [ChatGPT_0.6.9_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.9/ChatGPT_0.6.9_x64_en-US.msi)
[其他版本...](https://github.com/lencx/ChatGPT/releases)

View File

@ -24,9 +24,9 @@
**Latest:**
- `Mac`: [ChatGPT_0.6.8_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.8/ChatGPT_0.6.8_x64.dmg)
- `Linux`: [chat-gpt_0.6.8_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.8/chat-gpt_0.6.8_amd64.deb)
- `Windows`: [ChatGPT_0.6.8_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.8/ChatGPT_0.6.8_x64_en-US.msi)
- `Mac`: [ChatGPT_0.6.9_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.9/ChatGPT_0.6.9_x64.dmg)
- `Linux`: [chat-gpt_0.6.9_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.9/chat-gpt_0.6.9_amd64.deb)
- `Windows`: [ChatGPT_0.6.9_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.9/ChatGPT_0.6.9_x64_en-US.msi)
[Other version...](https://github.com/lencx/ChatGPT/releases)

View File

@ -1,6 +1,6 @@
# UPDATE LOG
## v0.6.8
## v0.6.9
fix: unable to synchronize

View File

@ -7,7 +7,7 @@
},
"package": {
"productName": "ChatGPT",
"version": "0.6.8"
"version": "0.6.9"
},
"tauri": {
"allowlist": {
@ -22,9 +22,8 @@
"fs": {
"all": true,
"scope": [
"$HOME/*",
"$HOME/.chatgpt/*",
"$HOME/.chatgpt/cache_mode/*"
"$HOME/.chatgpt/**",
"$HOME/.chatgpt/cache_model/**"
]
}
},

2
src/utils.ts vendored
View File

@ -1,4 +1,4 @@
import { readTextFile, writeTextFile, exists, createDir, BaseDirectory } from '@tauri-apps/api/fs';
import { readTextFile, writeTextFile, exists, createDir } from '@tauri-apps/api/fs';
import { homeDir, join, dirname } from '@tauri-apps/api/path';
import dayjs from 'dayjs';