From cb11afa31530504c8494d308863d8667234d7cae Mon Sep 17 00:00:00 2001 From: Aulia L Date: Mon, 23 Mar 2026 18:56:51 +0700 Subject: [PATCH 1/2] clearly 1.6.0 (new cask) --- Casks/c/clearly.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Casks/c/clearly.rb diff --git a/Casks/c/clearly.rb b/Casks/c/clearly.rb new file mode 100644 index 0000000000000..4ca73c8367d3d --- /dev/null +++ b/Casks/c/clearly.rb @@ -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", + verified: "github.com/Shpigford/clearly/" + name "Clearly" + desc "Clean, native markdown editor" + homepage "https://clearly.md/" + + livecheck do + url :url + strategy :github_latest + end + + 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 From e569a5dab9961901ce0b94070db7e9b895b4dd72 Mon Sep 17 00:00:00 2001 From: Aulia L Date: Mon, 23 Mar 2026 20:19:37 +0700 Subject: [PATCH 2/2] clearly: remove livecheck, add auto_updates, fix desc --- Casks/c/clearly.rb | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Casks/c/clearly.rb b/Casks/c/clearly.rb index 4ca73c8367d3d..2396c92f13fe7 100644 --- a/Casks/c/clearly.rb +++ b/Casks/c/clearly.rb @@ -5,14 +5,10 @@ url "https://github.com/Shpigford/clearly/releases/download/v#{version}/Clearly.dmg", verified: "github.com/Shpigford/clearly/" name "Clearly" - desc "Clean, native markdown editor" + desc "Markdown editor" homepage "https://clearly.md/" - livecheck do - url :url - strategy :github_latest - end - + auto_updates true depends_on macos: ">= :sonoma" app "Clearly.app"