mirror of
https://github.com/lencx/ChatGPT.git
synced 2024-10-01 01:06:13 -04:00
23 lines
696 B
Ruby
23 lines
696 B
Ruby
cask "chatgpt" do
|
|
version "0.1.7"
|
|
sha256 "1320b30a67e2506f9b45ffd2a48243d6141171c231dd698994ae5156a637eb3f"
|
|
|
|
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
|