vban commands added, tests updated

Added vban_in/vban_out to definetypes in base

Added string attribute label for strips

Added vban.ps1 which defines instream/oustream attributes.

Version bumped and changelog updated

Unit tests updated to reflect changes
This commit is contained in:
onyx-and-iris
2021-05-11 19:09:57 +01:00
parent 5ceacb4486
commit a66a101ba1
6 changed files with 484 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
. $PSScriptRoot\strip.ps1
. $PSScriptRoot\bus.ps1
. $PSScriptRoot\macrobuttons.ps1
. $PSScriptRoot\vban.ps1
$global:layout = $null
@@ -224,18 +225,24 @@ Function DefineVersion {
$layout = @{
"strip" = 3
"bus" = 2
"vban_in" = 4
"vban_out" = 4
}
}
elseif($TYPE -eq 2) {
$layout = @{
"strip" = 5
"bus" = 5
"vban_in" = 8
"vban_out" = 8
}
}
elseif($TYPE -eq 3) {
$layout = @{
"strip" = 8
"bus" = 8
"vban_in" = 8
"vban_out" = 8
}
}
$global:layout = $layout