From 905d8b99983d025648e15ec3a2336d0e24ba0a3c Mon Sep 17 00:00:00 2001 From: Gurpreet Kait Date: Sun, 5 Apr 2026 04:41:11 +0530 Subject: [PATCH] initial: homebrew cask --- recordly.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 recordly.rb diff --git a/recordly.rb b/recordly.rb new file mode 100644 index 00000000..8d3e7db8 --- /dev/null +++ b/recordly.rb @@ -0,0 +1,25 @@ +cask "recordly" do + arch arm: "arm64", intel: "x64" + + version "1.1.14" + sha256 arm: "e669ab7c8bdd4596211937183ee2374545da5482702cab0dfe477c1466422b0f", + intel: "85f5183219de0b656400625797ff9299893bd8fbda8455b0f745878b2c729526" + + url "https://github.com/webadderall/Recordly/releases/download/v#{version}/Recordly-#{arch}.dmg" + name "Recordly" + desc "Creator-focused screen recorder with auto-zoom, cursor effects, and more" + homepage "https://github.com/webadderall/Recordly" + + livecheck do + url :url + strategy :github_latest + end + + app "Recordly.app" + + zap trash: [ + "~/Library/Application Support/Recordly", + "~/Library/Preferences/dev.recordly.app.plist", + "~/Library/Saved Application State/dev.recordly.app.savedState", + ] +end