Add CodeEdit.app (#141537)

* Add CodeEdit.app

* codeedit: add `livecheck`, adjust url & version

* Update codeedit.rb

* Update codeedit.rb

* codeedit: update livecheck

* codeedit: add `zap`

---------

Co-authored-by: Patrick Linnane <patrick@linnane.io>
Co-authored-by: Miccal Matthews <miccal.matthews@gmail.com>
Co-authored-by: Sam Ford <1584702+samford@users.noreply.github.com>
This commit is contained in:
Invoked 2023-02-21 01:43:27 +01:00 committed by GitHub
parent b2a5724e8b
commit 28a9392865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 43 additions and 0 deletions

43
Casks/codeedit.rb Normal file
View File

@ -0,0 +1,43 @@
cask "codeedit" do
version "0.0.2-alpha.26,de40742"
sha256 "5b030c7273098f863d8ae07624637ab247b203701951a037f7558cc3e393c06c"
url "https://github.com/CodeEditApp/CodeEdit/releases/download/#{version.csv.first}/CodeEdit-#{version.csv.second}.dmg",
verified: "github.com/CodeEditApp/CodeEdit/"
name "CodeEdit"
desc "Code editor"
homepage "https://www.codeedit.app/"
livecheck do
url "https://github.com/CodeEditApp/CodeEdit/releases/latest"
regex(%r{href=.*?/download/\D*?([^/]+?)/CodeEdit[._-]([a-f0-9]+)\.dmg}i)
strategy :header_match do |headers, regex|
next if headers["location"].blank?
# Identify the latest tag from the response's `location` header
latest_tag = File.basename(headers["location"])
next if latest_tag.blank?
# Fetch the assets list HTML for the latest tag and match within it
assets_page = Homebrew::Livecheck::Strategy.page_content(
@url.sub(%r{/releases/?.+}, "/releases/expanded_assets/#{latest_tag}"),
)
assets_page[:content]&.scan(regex)&.map { |match| "#{match[0]},#{match[1]}" }
end
end
depends_on macos: ">= :monterey"
app "CodeEdit.app"
zap trash: [
"~/Library/Application Scripts/austincondiff.CodeEdit.OpenWithCodeEdit",
"~/Library/Application Support/CodeEdit",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/austincondiff.codeedit.sfl2",
"~/Library/Caches/austincondiff.CodeEdit",
"~/Library/Containers/austincondiff.CodeEdit.OpenWithCodeEdit",
"~/Library/HTTPStorages/austincondiff.CodeEdit",
"~/Library/Preferences/austincondiff.CodeEdit.plist",
"~/Library/Saved Application State/austincondiff.CodeEdit.savedState",
]
end