-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d6c689
commit 61d7164
Showing
279 changed files
with
2,986 additions
and
1,802 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
cask "anytype@alpha" do | ||
arch arm: "arm64", intel: "x64" | ||
|
||
version "0.42.27" | ||
sha256 arm: "1d3366fe8ce6ea0b66aec78f9731ba4e182c1971c56c8475b3d584f59139e24c", | ||
intel: "49664837bdf3603010f8ceb74bbd8982b0cb75b0662550ae5b35535da6eba8c1" | ||
|
||
url "https://anytype-release.fra1.cdn.digitaloceanspaces.com/Anytype-#{version}-alpha-mac-#{arch}.dmg", | ||
verified: "anytype-release.fra1.cdn.digitaloceanspaces.com/" | ||
name "Anytype" | ||
desc "Local-first and end-to-end encrypted notes app" | ||
homepage "https://anytype.io/" | ||
|
||
livecheck do | ||
url "https://anytype-release.fra1.cdn.digitaloceanspaces.com/alpha-mac.yml" | ||
strategy :electron_builder do |yaml| | ||
yaml["version"]&.sub(/[._-]alpha.*$/i, "") | ||
end | ||
end | ||
|
||
auto_updates true | ||
conflicts_with cask: [ | ||
"anytype", | ||
"anytype@beta", | ||
] | ||
depends_on macos: ">= :catalina" | ||
|
||
app "Anytype.app" | ||
|
||
zap trash: [ | ||
"~/Library/Application Support/anytype2", | ||
"~/Library/Logs/anytype2", | ||
"~/Library/Preferences/com.anytype.anytype2.plist", | ||
"~/Library/Saved Application State/com.anytype.anytype2.savedState", | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
cask "cap" do | ||
arch arm: "aarch64", intel: "x86_64" | ||
|
||
on_arm do | ||
version "0.3.0-beta.5.4,01J9P79YFJK2F8RWF0C39HMJE8" | ||
sha256 "ba58eccfeeb8f8dba91184c10ec7377a62424f4482d25498df95604e2d51b0ad" | ||
end | ||
on_intel do | ||
version "0.3.0-beta.5.4,01J9P744T6CN259HFZPJBEM19D" | ||
sha256 "a67e048a4e17f23628fde0be42465016bb665a08bf291d2cf3207584de85a983" | ||
end | ||
|
||
url "https://cdn.crabnebula.app/asset/#{version.csv.second}", | ||
verified: "crabnebula.app/asset/" | ||
name "Cap" | ||
desc "Screen recording software" | ||
homepage "https://cap.so/" | ||
|
||
livecheck do | ||
url "https://cdn.crabnebula.app/update/cap/cap/darwin-#{arch}/0.0.0" | ||
regex(%r{cdn.crabnebula.app/asset/(.+)}i) | ||
strategy :json do |json| | ||
asset_id = json["url"][regex, 1] | ||
version = json["version"] | ||
next if asset_id.blank? || version.blank? | ||
|
||
"#{version},#{asset_id}" | ||
end | ||
end | ||
|
||
auto_updates true | ||
depends_on macos: ">= :high_sierra" | ||
|
||
app "Cap.app" | ||
|
||
zap trash: [ | ||
"~/Library/Application Support/cap", | ||
"~/Library/Caches/com.cap.desktop", | ||
"~/Library/Preferences/com.cap.desktop.plist", | ||
"~/Library/Saved Application State/com.cap.desktop.savedState", | ||
"~/Library/WebKit/com.cap.desktop", | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
cask "displaybuddy" do | ||
version "2.24" | ||
sha256 "0b80e30ea0fc1d183c4f0fa86c67a2a97e7f7eb741cac9f554b5f2d5e8f28f6b" | ||
|
||
url "https://displaybuddy.app/public/DisplayBuddy_#{version}.dmg" | ||
name "DisplayBuddy" | ||
desc "Monitor resolution and settings manager" | ||
homepage "https://displaybuddy.app/" | ||
|
||
livecheck do | ||
url "https://displaybuddy.app/public/appcast.xml" | ||
strategy :sparkle, &:short_version | ||
end | ||
|
||
auto_updates true | ||
depends_on macos: ">= :big_sur" | ||
|
||
app "DisplayBuddy.app" | ||
|
||
zap trash: [ | ||
"~/Library/Application Scripts/2SL5ANA588.group.com.sids.DisplayBuddy", | ||
"~/Library/Application Scripts/com.sids.DisplayBuddy-LaunchAtLoginHelper", | ||
"~/Library/Application Scripts/com.sids.DisplayBuddy.DisplayBuddyWidget", | ||
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.sids.displaybuddy.sfl*", | ||
"~/Library/Caches/com.sids.DisplayBuddy", | ||
"~/Library/Containers/com.sids.DisplayBuddy-LaunchAtLoginHelper", | ||
"~/Library/Containers/com.sids.DisplayBuddy.DisplayBuddyWidget", | ||
"~/Library/Group Containers/2SL5ANA588.group.com.sids.DisplayBuddy", | ||
"~/Library/HTTPStorages/com.sids.DisplayBuddy", | ||
"~/Library/HTTPStorages/com.sids.DisplayBuddy.binarycookies", | ||
"~/Library/Preferences/com.sids.DisplayBuddy.plist", | ||
"~/Library/WebKit/com.sids.DisplayBuddy", | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.