Add blackhole audiodevice for macOS Big sur, add sox and Switchaudio-osx versions to the docs (#3542)

This commit is contained in:
Mikhail Timofeev
2021-06-08 10:44:31 +03:00
committed by GitHub
parent 2ae7ebddab
commit 4da3c8eef9
6 changed files with 52 additions and 8 deletions

View File

@@ -462,6 +462,16 @@ function Get-CabalVersion {
return "Cabal $cabalVersion"
}
function Get-SwitchAudioOsxVersion {
$switchAudioVersion = Get-BrewPackageVersion -CommandName "SwitchAudioSource"
return "Switchaudio-osx $switchAudioVersion"
}
function Get-SoxVersion {
$soxVersion = Get-BrewPackageVersion -CommandName "sox"
return "Sox $soxVersion"
}
function Get-StackVersion {
$stackVersion = Run-Command "stack --version" | Take-Part -Part 1 | ForEach-Object {$_.replace(",","")}
return "Stack $stackVersion"