general updates, added fadeto/fadeby

fadeto, fadeby added to strip|bus

kind maps reworked.

bindings/profiles/kinds moved into their own files.

changelog/readme updated

version bump
This commit is contained in:
onyx-and-iris
2022-06-25 23:12:02 +01:00
parent 8429fed8b4
commit 095a9362cb
12 changed files with 274 additions and 239 deletions

View File

@@ -1,8 +1,11 @@
. $PSScriptRoot\meta.ps1
class Recorder {
[Object]$remote
# Constructor
Recorder() {
Recorder([Object]$remote) {
$this.remote = $remote
AddActionMembers -PARAMS @('play', 'stop', 'pause', 'replay', 'record', 'ff', 'rew')
AddChannelMembers
}
@@ -34,11 +37,11 @@ class Recorder {
}
)
[void] load([String]$filename) {
[void] Load([String]$filename) {
$this.Setter($this.cmd('load'), $filename)
}
}
Function Make_Recorder {
return [Recorder]::new()
Function Make_Recorder([Object]$remote) {
return [Recorder]::new($remote)
}