mirror of
https://github.com/lencx/ChatGPT.git
synced 2024-10-01 01:06:13 -04:00
b403dea11b
checked locally: brew reinstall --cask chatgpt --no-quarantine ==> Downloading https://github.com/lencx/ChatGPT/releases/download/v0.10.3/ChatGPT_0.10.3_x64.dmg ==> Downloading from https://objects.githubusercontent.com/github-production-release-asset-2e65be/575340621/b ######################################################################## 100.0% Warning: Cannot verify integrity of 'a77703907b8af9fcb951d9e896b73c3424f60799b39b49a6b9a2d2e3fca259e3--ChatGPT_0.10.3_x64.dmg'. No checksum was provided for this cask. For your reference, the checksum is: sha256 "f44838a80844999191a303684fd7ae1811dd2fae6709aebe8bff23c70f9b8a10" ==> Uninstalling Cask chatgpt ==> Backing App 'ChatGPT.app' up to '/usr/local/Caskroom/chatgpt/0.6.10/ChatGPT.app' ==> Removing App '/Applications/ChatGPT.app' ==> Purging files for version 0.6.10 of Cask chatgpt ==> Installing Cask chatgpt Warning: macOS's Gatekeeper has been disabled for this Cask ==> Moving App 'ChatGPT.app' to '/Applications/ChatGPT.app' 🍺 chatgpt was successfully installed!
23 lines
699 B
Ruby
23 lines
699 B
Ruby
cask "chatgpt" do
|
|
version "0.10.3"
|
|
sha256 "f44838a80844999191a303684fd7ae1811dd2fae6709aebe8bff23c70f9b8a10"
|
|
|
|
url "https://github.com/lencx/ChatGPT/releases/download/v#{version}/ChatGPT_#{version}_x64.dmg"
|
|
name "ChatGPT"
|
|
desc "Desktop wrapper for OpenAI ChatGPT"
|
|
homepage "https://github.com/lencx/ChatGPT#readme"
|
|
|
|
app "ChatGPT.app"
|
|
|
|
uninstall quit: "com.lencx.chatgpt"
|
|
|
|
zap trash: [
|
|
"~/.chatgpt",
|
|
"~/Library/Caches/com.lencx.chatgpt",
|
|
"~/Library/HTTPStorages/com.lencx.chatgpt.binarycookies",
|
|
"~/Library/Preferences/com.lencx.chatgpt.plist",
|
|
"~/Library/Saved Application State/com.lencx.chatgpt.savedState",
|
|
"~/Library/WebKit/com.lencx.chatgpt",
|
|
]
|
|
end
|