-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added support for cloud sync of application data such as settings, …
…personas, and conversations. This is available for Mac users using iCloud.
- Loading branch information
1 parent
972374f
commit 4c91628
Showing
22 changed files
with
9,036 additions
and
1,760 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.app-sandbox</key> | ||
<true/> | ||
<key>com.apple.security.files.user-selected.read-write</key> | ||
<true/> | ||
<key>com.apple.security.network.client</key> | ||
<true/> | ||
<key>com.apple.security.files.downloads.read-write</key> | ||
<true/> | ||
<key>com.apple.security.files.user-selected.read-only</key> | ||
<true/> | ||
<key>com.apple.security.files.bookmarks.app-scope</key> | ||
<true/> | ||
<key>com.apple.security.files.user-selected.executable</key> | ||
<true/> | ||
<key>com.apple.security.inherit</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
<key>com.apple.security.cs.disable-library-validation</key> | ||
<true/> | ||
<key>com.apple.developer.icloud-container-identifiers</key> | ||
<array> | ||
<string>iCloud.com.yourdomain.teamai</string> | ||
</array> | ||
<key>com.apple.developer.icloud-services</key> | ||
<array> | ||
<string>CloudDocuments</string> | ||
</array> | ||
<key>com.apple.developer.ubiquity-container-identifiers</key> | ||
<array> | ||
<string>iCloud.com.yourdomain.teamai</string> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,56 @@ | ||
{ | ||
"$schema": "../gen/schemas/desktop-schema.json", | ||
"identifier": "default", | ||
"description": "Capability for the main window", | ||
"local": true, | ||
"platforms": [ | ||
"macOS", | ||
"windows", | ||
"linux" | ||
], | ||
"windows": [ | ||
"main" | ||
], | ||
"permissions": [ | ||
"core:default", | ||
"http:default", | ||
"$schema": "../gen/schemas/desktop-schema.json", | ||
"identifier": "main-capability", | ||
"description": "Capability for the main window", | ||
"local": true, | ||
"platforms": [ | ||
"macOS", | ||
"windows", | ||
"linux" | ||
], | ||
"windows": [ | ||
"main" | ||
], | ||
"permissions": [ | ||
"fs:default", | ||
"fs:allow-write-file", | ||
"fs:write-files", | ||
"fs:allow-home-write", | ||
"fs:allow-home-write-recursive", | ||
{ | ||
"identifier": "fs:scope", | ||
"allow": [ | ||
{ | ||
"identifier": "http:default", | ||
"allow": [ | ||
{ | ||
"url": "http://*:*/*" | ||
}, | ||
{ | ||
"url": "https://*:*/*" | ||
} | ||
] | ||
"path": "$HOME/Library/Mobile Documents/com~apple~CloudDocs/TeamAI", | ||
"recursive": true | ||
}, | ||
"log:default", | ||
"process:allow-exit", | ||
"process:allow-restart", | ||
"updater:allow-check", | ||
"updater:allow-download", | ||
"updater:allow-install", | ||
"updater:allow-download-and-install", | ||
"process:default" | ||
] | ||
{ | ||
"path": "$HOME/Library/Mobile Documents/com~apple~CloudDocs/TeamAI/*", | ||
"recursive": true | ||
} | ||
] | ||
}, | ||
"core:default", | ||
"http:default", | ||
{ | ||
"identifier": "http:default", | ||
"allow": [ | ||
{ | ||
"url": "http://*:*/*" | ||
}, | ||
{ | ||
"url": "https://*:*/*" | ||
} | ||
] | ||
}, | ||
"log:default", | ||
"process:allow-exit", | ||
"process:allow-restart", | ||
"updater:allow-check", | ||
"updater:allow-download", | ||
"updater:allow-install", | ||
"updater:allow-download-and-install", | ||
"process:default", | ||
"window-state:default" | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"default":{"identifier":"default","description":"Capability for the main window","local":true,"windows":["main"],"permissions":["core:default","http:default",{"identifier":"http:default","allow":[{"url":"http://*:*/*"},{"url":"https://*:*/*"}]},"log:default","process:allow-exit","process:allow-restart","updater:allow-check","updater:allow-download","updater:allow-install","updater:allow-download-and-install","process:default"],"platforms":["macOS","windows","linux"]}} | ||
{"main-capability":{"identifier":"main-capability","description":"Capability for the main window","local":true,"windows":["main"],"permissions":["fs:default","fs:allow-write-file","fs:write-files","fs:allow-home-write","fs:allow-home-write-recursive",{"identifier":"fs:scope","allow":[{"path":"$HOME/Library/Mobile Documents/com~apple~CloudDocs/TeamAI","recursive":true},{"path":"$HOME/Library/Mobile Documents/com~apple~CloudDocs/TeamAI/*","recursive":true}]},"core:default","http:default",{"identifier":"http:default","allow":[{"url":"http://*:*/*"},{"url":"https://*:*/*"}]},"log:default","process:allow-exit","process:allow-restart","updater:allow-check","updater:allow-download","updater:allow-install","updater:allow-download-and-install","process:default","window-state:default"],"platforms":["macOS","windows","linux"]}} |
Oops, something went wrong.