Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Casks/c/clearly.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
cask "clearly" do
version "1.6.0"
sha256 "33f07501517048edd66c4ad04c4c3e2d00ac996847df842427fc13697efa5dc1"

url "https://github.com/Shpigford/clearly/releases/download/v#{version}/Clearly.dmg",

Check failure on line 5 in Casks/c/clearly.rb

View workflow job for this annotation

GitHub Actions / test clearly (macos-15-intel, intel)

GitHub repository too new (<30 days old)

Check failure on line 5 in Casks/c/clearly.rb

View workflow job for this annotation

GitHub Actions / test clearly (macos-26, arm)

GitHub repository too new (<30 days old)
verified: "github.com/Shpigford/clearly/"
name "Clearly"
desc "Clean, native markdown editor"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
desc "Clean, native markdown editor"
desc "Markdown editor"

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

homepage "https://clearly.md/"

livecheck do
url :url
strategy :github_latest
end
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
livecheck do
url :url
strategy :github_latest
end

The default livecheck should suffice here.
Although I am concerned about the release cadence, if it continues at the current rate it will likely need to be throttled in Homebrew if there are multiple releases per day.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

release cadence

Noted. The app is newly released and the developer is iterating quickly. I'll keep an eye on the release cadence.


depends_on macos: ">= :sonoma"

app "Clearly.app"

zap trash: [
"~/Library/Application Scripts/com.sabotage.clearly*",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.sabotage.clearly.sfl*",
"~/Library/Containers/com.sabotage.clearly*",
],
rmdir: "~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments"
end
Loading