mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 21:43:32 +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
|
## [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]
|
## [3.0.0]
|
||||||
|
|
||||||
|
|||||||
11
README.md
11
README.md
@@ -79,7 +79,7 @@ Voicemeeter factory function can be:
|
|||||||
- Get-RemoteBanana
|
- Get-RemoteBanana
|
||||||
- Get-RemotePotato
|
- 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
|
- Connect-Voicemeeter
|
||||||
- Disconnect-Voicemeeter
|
- Disconnect-Voicemeeter
|
||||||
@@ -90,6 +90,8 @@ for example:
|
|||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
$vmr = Connect-Voicemeeter -Kind "potato"
|
$vmr = Connect-Voicemeeter -Kind "potato"
|
||||||
|
...
|
||||||
|
Disconnect-Voicemeeter
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `Through the Shell`
|
#### `Through the Shell`
|
||||||
@@ -292,6 +294,13 @@ The following strip.eq | bus.eq commands are available:
|
|||||||
- on: boolean
|
- on: boolean
|
||||||
- ab: boolean
|
- ab: boolean
|
||||||
|
|
||||||
|
for example:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
$vmr.strip[0].eq.on = $true
|
||||||
|
$vmr.bus[0].eq.ab = $false
|
||||||
|
```
|
||||||
|
|
||||||
#### FadeTo | FadeBy
|
#### FadeTo | FadeBy
|
||||||
|
|
||||||
- `FadeTo(amount, time)` : float, int
|
- `FadeTo(amount, time)` : float, int
|
||||||
|
|||||||
@@ -148,7 +148,7 @@ class Device : IStrip {
|
|||||||
return "Strip[" + $this.index + "].Device"
|
return "Strip[" + $this.index + "].Device"
|
||||||
}
|
}
|
||||||
|
|
||||||
hidden $_device = $($this | Add-Member ScriptProperty 'device' `
|
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
|
||||||
{
|
{
|
||||||
$this.Getter_String('name')
|
$this.Getter_String('name')
|
||||||
} `
|
} `
|
||||||
|
|||||||
Reference in New Issue
Block a user