Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lencx committed May 25, 2023
1 parent 2fc0983 commit 55eb719
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "ChatGPT",
"version": "0.12.0"
"version": "1.0.0"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -90,22 +90,36 @@
"csp": null,
"dangerousRemoteDomainIpcAccess": [
{
"windows": ["core", "main", "tray"],
"windows": [
"core",
"main",
"tray"
],
"domain": "chat.openai.com",
"enableTauriAPI": true
},
{
"windows": ["core", "main"],
"windows": [
"core",
"main"
],
"domain": "labs.openai.com",
"enableTauriAPI": true
},
{
"windows": ["core", "main", "tray"],
"windows": [
"core",
"main",
"tray"
],
"domain": "openai.com",
"enableTauriAPI": true
},
{
"windows": ["chatgpt_sponsors", "app_website"],
"windows": [
"chatgpt_sponsors",
"app_website"
],
"domain": "app.nofwl.com",
"enableTauriAPI": true
}
Expand Down

0 comments on commit 55eb719

Please sign in to comment.