3 Commits

Author SHA1 Message Date
aee3430962 fix strip[i].device.name bug
patch bump
2022-12-19 23:19:20 +00:00
47fb880b91 remove tasklist from unreleased 2022-12-19 00:45:13 +00:00
acc078632d add strip.eq/bus.eq example to readme 2022-12-18 18:52:22 +00:00
3 changed files with 12 additions and 6 deletions

View File

@@ -9,10 +9,7 @@ Before any major/minor/patch is released all test units will be run to verify th
## [Unreleased] These changes have not been added to PSGallery yet
- [x] Implement command.load
- [x] Implement comp/gate parameters introduced in v3.0.2.8 of the api.
- [x] Add unit tests for new classes.
- [x] Update README with changes to Strip/Bus classes.
- [ ]
## [3.0.0]

View File

@@ -79,7 +79,7 @@ Voicemeeter factory function can be:
- Get-RemoteBanana
- Get-RemotePotato
Added in v3 you may also use the following entry/exit points:
Added in `v3` you may also use the following entry/exit points:
- Connect-Voicemeeter
- Disconnect-Voicemeeter
@@ -90,6 +90,8 @@ for example:
```powershell
$vmr = Connect-Voicemeeter -Kind "potato"
...
Disconnect-Voicemeeter
```
#### `Through the Shell`
@@ -292,6 +294,13 @@ The following strip.eq | bus.eq commands are available:
- on: boolean
- ab: boolean
for example:
```powershell
$vmr.strip[0].eq.on = $true
$vmr.bus[0].eq.ab = $false
```
#### FadeTo | FadeBy
- `FadeTo(amount, time)` : float, int

View File

@@ -148,7 +148,7 @@ class Device : IStrip {
return "Strip[" + $this.index + "].Device"
}
hidden $_device = $($this | Add-Member ScriptProperty 'device' `
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
{
$this.Getter_String('name')
} `