-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tonejito/shotcut-240829
- Loading branch information
Showing
3 changed files
with
32 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -889,6 +889,7 @@ vamiga | |
vbrokers | ||
vcam | ||
vellum | ||
vienna-assistant | ||
vimr | ||
virtualbox@beta | ||
virtualbuddy | ||
|
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,30 @@ | ||
cask "vienna-assistant" do | ||
version "1.1.433" | ||
sha256 :no_check | ||
|
||
url "https://www.vsl.co.at/service/vamac", | ||
verified: "vsl.co.at", | ||
user_agent: :fake | ||
name "Vienna Assistant" | ||
desc "Manager for Vienna Symphonic Library sound samples" | ||
homepage "https://www.vsl.info/en/manuals/vienna-assistant/introduction" | ||
|
||
livecheck do | ||
url "https://api.vsl.co.at/data/.well-known/dataservice-configuration" | ||
strategy :json do |json| | ||
json["vaLatestVersionReadable"] | ||
end | ||
end | ||
|
||
depends_on macos: ">= :high_sierra" | ||
|
||
pkg "Vienna Assistant #{version}.pkg" | ||
|
||
uninstall pkgutil: "at.co.vsl.viassistant.*" | ||
|
||
zap trash: [ | ||
"~/Library/Preferences/at.co.vsl.Vienna Assistant.plist", | ||
"~/Library/Preferences/at.co.vsl.viennaassistant.plist", | ||
"~/Library/Saved Application State/at.co.vsl.viennaassistant.savedState", | ||
] | ||
end |