mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-08 00:53:30 +00:00
auto login added, tests updated to take $true, $false
Added $this.Login() into Remote constructor to automatically log user in. Updated test codes accordingly. Boolean params take $true and $false Updated readme to reflect changes.
This commit is contained in:
@@ -63,17 +63,13 @@ Function Buttons {
|
||||
if ($MyInvocation.InvocationName -ne '.')
|
||||
{
|
||||
. .\voicemeeter.ps1
|
||||
try {
|
||||
$vmr = [Remote]::new('potato')
|
||||
|
||||
$vmr = [Remote]::new('potato')
|
||||
|
||||
$vmr.Login()
|
||||
|
||||
$vmr.button = Buttons
|
||||
|
||||
$vmr.button[0].state = 1
|
||||
$vmr.button[0].state
|
||||
$vmr.button[0].state = 0
|
||||
$vmr.button[0].state
|
||||
|
||||
$vmr.Logout()
|
||||
$vmr.button[0].state = $true
|
||||
$vmr.button[0].state
|
||||
$vmr.button[0].state = $false
|
||||
$vmr.button[0].state
|
||||
}
|
||||
finally { $vmr.Logout() }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user