-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Port VBVMR to ahk v2 * Add doc comments in VBVMR + Fix VMRError message * Update comments * Fix VBVMR.FUNC member access * Format comments * Add VMRBus * Add returnCode field in VMRError * Add VMRDevice * Add VMRStrip * Add VMR.ahk * Add VMRConsts + Add VMR Login/Sync * Add VMR.On/Off * Refactor code * Implement VMR.Sync method * Add VMR._InitializeComponents * Refactor code * Fix VMRDevice Set/GetParameter * Remove unnecessary Bus/Strip properties * Implement VMR Exec/UpdateDevices + Refactor code * Add DevicesUpdated event + Refactor code * Refactor code + jsdoc * Fix VBVMR bug + Refactor code * Update VMR Get*Device to use a a default driver * Fix VMR bug * Update docs links * Fix VMR.Sync * Add GainPercentage property to VMRAudioIO * Fix VMRUtils bug * Add VMRAudioIO.Increment + Fix GainPercentage * Update docs * Add Build script + Add vscode settings * Fix include paths and update version * Fix build script * Add properties for string bus/strip parameters * Update examples + README for v2 * Refactor code + Update VMR methods to use one-based indices * Add VMRAsyncOp + Update example * Update examples * Fix VMRAsyncOp not resolving inner op correctly * Update AppGain/Appmute to throw on physical strips + Refactor code * Fix AppGain/Mute bug + Refactor code * Move EQ property to VMRAudioIO + Refactor code * Add VMR Commands * Add VMRControllerBase + Add Fx, Option, Patch properties * Refactor code * Add VMRMacroButton * Refactor code * Add VMRRecorder * Add VMRVBAN * Fix VMRControllerBase bug * Update example * Add VMR.Version * Fix VMRAudioIO case sensitivity bug + Refactor code * Remove Get*Device methods from VMR * Refactor code * Add VMRAudioIO.Type + Add UI example * Add support for string RecallPreset command + Update README * Fix ui_example bug * Build v2 rc * Update docs * Update docsify settings * Fix jsdoc comments * Update docs * Fix docs style * Release v2.0.0
- Loading branch information
Showing
63 changed files
with
6,143 additions
and
2,315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
*.exe | ||
_site | ||
.jekyll-cache | ||
.vscode | ||
.vscode/launch.json | ||
src/v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"recommendations": [ | ||
"thqby.vscode-autohotkey2-lsp", | ||
"zero-plusplus.vscode-autohotkey-debug" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"AutoHotkey2.ActionWhenV1IsDetected": "Warn", | ||
"AutoHotkey2.AutoLibInclude": "Local", | ||
"AutoHotkey2.CompleteFunctionParens": true, | ||
"AutoHotkey2.Files.ScanMaxDepth": 3, | ||
"AutoHotkey2.FormatOptions": { | ||
"brace_style": "One True Brace Variant", | ||
"keep_array_indentation": true, | ||
"keyword_start_with_uppercase": false, | ||
"max_preserve_newlines": 3, | ||
"preserve_newlines": true, | ||
"space_after_double_colon": true, | ||
"switch_case_alignment": false, | ||
"symbol_with_same_case": true | ||
}, | ||
"AutoHotkey2.Warn.CallWithoutParentheses": "On", | ||
"AutoHotkey2.Warn.LocalSameAsGlobal": true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build VMR", | ||
"type": "process", | ||
"command": "${config:AutoHotkey2.InterpreterPath}", | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
"args": [ | ||
{ | ||
"value": ".\\src\\Build.ahk", | ||
"quoting": "strong" | ||
}, | ||
{ | ||
"value": ".\\src\\VMR.ahk", | ||
"quoting": "strong" | ||
}, | ||
{ | ||
"value": ".\\dist\\VMR.ahk", | ||
"quoting": "strong" | ||
}, | ||
{ | ||
"value": "${input:buildVersion}", | ||
"quoting": "strong" | ||
} | ||
], | ||
"problemMatcher": [], | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "buildVersion", | ||
"description": "Please enter the build version", | ||
"type": "promptString", | ||
"default": "ahkpm" | ||
} | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.