mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 05:10:48 +00:00
run 64bit exe for potato, update changelog
Run 64bit executable is launched if on 64bit OS update changelog
This commit is contained in:
parent
41ae9b299f
commit
01a60b99b1
@ -11,6 +11,7 @@ Before any minor/major patch is released all test units will be run to verify th
|
||||
- [x] Update tests to reflect changes
|
||||
- [x] Add vban section to README
|
||||
- [x] Added meta functions for bus/strip attrs
|
||||
- [x] Run 64bit exe for potato version if on 64bit OS
|
||||
|
||||
## [1.5] - 2021-05-11
|
||||
### Added
|
||||
|
@ -263,7 +263,12 @@ Function Login {
|
||||
Switch($TYPE) {
|
||||
'basic' { $vbtype = 1; Break}
|
||||
'banana' { $vbtype = 2; Break}
|
||||
'potato' { $vbtype = 3; Break}
|
||||
'potato' {
|
||||
if ([Environment]::Is64BitOperatingSystem) {
|
||||
$vbtype = 6
|
||||
} else { $vbtype = 3 }
|
||||
Break
|
||||
}
|
||||
Default { throw [LoginError]::new('Unknown Voicemeeter type') }
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user