mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-24 14:55:37 +00:00
The repo was moved from github.com/webadderall to github.com/webadderallorg but several files still reference the old URL. GitHub serves a 301 redirect today, but package.json metadata, the Homebrew cask, and the in-app issues link should point to the canonical location. Updated: - package.json (homepage, repository.url, bugs.url) - README.md and README.zh-CN.md (releases / clone / issues links) - CONTRIBUTING.md (issues link) - recordly.rb (Homebrew cask url + homepage) - src/components/video-editor/TutorialHelp.tsx (RECORDLY_ISSUES_URL) - src/components/video-editor/videoPlayback/motionSmoothing.ts (attribution comment)
26 lines
775 B
Ruby
26 lines
775 B
Ruby
cask "recordly" do
|
|
arch arm: "arm64", intel: "x64"
|
|
|
|
version "1.1.14"
|
|
sha256 arm: "e669ab7c8bdd4596211937183ee2374545da5482702cab0dfe477c1466422b0f",
|
|
intel: "85f5183219de0b656400625797ff9299893bd8fbda8455b0f745878b2c729526"
|
|
|
|
url "https://github.com/webadderallorg/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/webadderallorg/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
|