From 11e07e87d40ca627bb80a3907bc4f069bbe23e2b Mon Sep 17 00:00:00 2001 From: lencx Date: Fri, 23 Dec 2022 21:30:08 +0800 Subject: [PATCH] fix: path not allowed on the configured scope --- README-ZH_CN.md | 6 +++--- README.md | 6 +++--- UPDATE_LOG.md | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README-ZH_CN.md b/README-ZH_CN.md index b0578f9..f914392 100644 --- a/README-ZH_CN.md +++ b/README-ZH_CN.md @@ -22,9 +22,9 @@ **最新版:** -- `Mac`: [ChatGPT_0.6.1_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.1/ChatGPT_0.6.1_x64.dmg) -- `Linux`: [chat-gpt_0.6.1_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.1/chat-gpt_0.6.1_amd64.deb) -- `Windows`: [ChatGPT_0.6.1_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.1/ChatGPT_0.6.1_x64_en-US.msi) +- `Mac`: [ChatGPT_0.6.2_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.2/ChatGPT_0.6.2_x64.dmg) +- `Linux`: [chat-gpt_0.6.2_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.2/chat-gpt_0.6.2_amd64.deb) +- `Windows`: [ChatGPT_0.6.2_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.2/ChatGPT_0.6.2_x64_en-US.msi) [其他版本...](https://github.com/lencx/ChatGPT/releases) diff --git a/README.md b/README.md index d496d8a..e047147 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ **Latest:** -- `Mac`: [ChatGPT_0.6.1_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.1/ChatGPT_0.6.1_x64.dmg) -- `Linux`: [chat-gpt_0.6.1_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.1/chat-gpt_0.6.1_amd64.deb) -- `Windows`: [ChatGPT_0.6.1_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.1/ChatGPT_0.6.1_x64_en-US.msi) +- `Mac`: [ChatGPT_0.6.2_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.6.2/ChatGPT_0.6.2_x64.dmg) +- `Linux`: [chat-gpt_0.6.2_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.6.2/chat-gpt_0.6.2_amd64.deb) +- `Windows`: [ChatGPT_0.6.2_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.6.2/ChatGPT_0.6.2_x64_en-US.msi) [Other version...](https://github.com/lencx/ChatGPT/releases) diff --git a/UPDATE_LOG.md b/UPDATE_LOG.md index 1caca26..8367d0a 100644 --- a/UPDATE_LOG.md +++ b/UPDATE_LOG.md @@ -1,6 +1,6 @@ # UPDATE LOG -## v0.6.1 +## v0.6.2 fix: path not allowed on the configured scope diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 58faa7c..b58a152 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -22,7 +22,7 @@ "fs": { "all": true, "scope": [ - "$HOME/.chatgpt/*" + "$HOME/**" ] } },