mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 13:33:31 +00:00
Compare commits
3 Commits
add-comp-g
...
aee3430962
| Author | SHA1 | Date | |
|---|---|---|---|
| aee3430962 | |||
| 47fb880b91 | |||
| acc078632d |
@@ -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]
|
||||
|
||||
|
||||
11
README.md
11
README.md
@@ -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
|
||||
|
||||
@@ -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')
|
||||
} `
|
||||
|
||||
Reference in New Issue
Block a user