mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
parent
1d115f4132
commit
5229df81ad
@ -9,7 +9,8 @@ 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
|
||||||
|
- [ ] Implement comp/gate parameters introduced in v3.0.2.8 of api.
|
||||||
|
|
||||||
## [2.5.0] - 2022-10-27
|
## [2.5.0] - 2022-10-27
|
||||||
|
|
||||||
|
12
README.md
12
README.md
@ -8,9 +8,9 @@ For past/future changes to this project refer to: [CHANGELOG](CHANGELOG.md)
|
|||||||
|
|
||||||
## Tested against
|
## Tested against
|
||||||
|
|
||||||
- Basic 1.0.8.4
|
- Basic 1.0.8.8
|
||||||
- Banana 2.0.6.4
|
- Banana 2.0.6.8
|
||||||
- Potato 3.0.2.4
|
- Potato 3.0.2.8
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@ -238,6 +238,7 @@ The following methods are available:
|
|||||||
- hide
|
- hide
|
||||||
- restart
|
- restart
|
||||||
- shutdown
|
- shutdown
|
||||||
|
- Load(<filepath>)
|
||||||
|
|
||||||
The following properties are write only and accept boolean values:
|
The following properties are write only and accept boolean values:
|
||||||
|
|
||||||
@ -250,6 +251,9 @@ example:
|
|||||||
$vmr.command.show
|
$vmr.command.show
|
||||||
|
|
||||||
$vmr.command.lock = $true
|
$vmr.command.lock = $true
|
||||||
|
|
||||||
|
|
||||||
|
$vmr.command.Load("<path/to/filename.xml>")
|
||||||
```
|
```
|
||||||
|
|
||||||
### Recorder
|
### Recorder
|
||||||
@ -362,4 +366,4 @@ Run tests from repository root in a subshell and write logs, like so:
|
|||||||
|
|
||||||
### Official Documentation
|
### Official Documentation
|
||||||
|
|
||||||
- [Voicemeeter Remote C API](https://github.com/onyx-and-iris/Voicemeeter-SDK/blob/main/VoicemeeterRemoteAPI.pdf)
|
- [Voicemeeter Remote C API](https://github.com/onyx-and-iris/Voicemeeter-SDK/blob/update-docs/VoicemeeterRemoteAPI.pdf)
|
||||||
|
@ -53,6 +53,10 @@ class Special {
|
|||||||
$this._lock = $this.Setter($this.cmd('lock'), $arg)
|
$this._lock = $this.Setter($this.cmd('lock'), $arg)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
[void] Load ([string]$filename) {
|
||||||
|
$this.Setter($this.cmd('load'), $filename)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Make_Command {
|
function Make_Command {
|
||||||
|
Loading…
Reference in New Issue
Block a user