mirror of
https://github.com/onyx-and-iris/vban-cli.git
synced 2026-04-16 02:23:30 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d5ca50e9bd | |||
| 0f8be6de48 |
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "vban-cli"
|
name = "vban-cli"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
description = "A command-line interface for Voicemeeter leveraging VBAN."
|
description = "A command-line interface for Voicemeeter leveraging VBAN."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = { text = "LICENSE" }
|
license = { text = "LICENSE" }
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ def damping_max(
|
|||||||
|
|
||||||
@app.command(name='bp-sidechain')
|
@app.command(name='bp-sidechain')
|
||||||
def bp_sidechain(
|
def bp_sidechain(
|
||||||
new_bp_sidechain: Annotated[bool, Argument()] = None,
|
new_bp_sidechain: Annotated[float, Argument()] = None,
|
||||||
*,
|
*,
|
||||||
index: Annotated[int, Parameter(parse=False)],
|
index: Annotated[int, Parameter(parse=False)],
|
||||||
ctx: Annotated[Context, Parameter(parse=False)],
|
ctx: Annotated[Context, Parameter(parse=False)],
|
||||||
@@ -97,7 +97,7 @@ def bp_sidechain(
|
|||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
new_bp_sidechain : bool, optional
|
new_bp_sidechain : float, optional
|
||||||
If provided, sets the BP sidechain to this value. If not provided, the current BP sidechain is printed.
|
If provided, sets the BP sidechain to this value. If not provided, the current BP sidechain is printed.
|
||||||
"""
|
"""
|
||||||
if new_bp_sidechain is None:
|
if new_bp_sidechain is None:
|
||||||
|
|||||||
Reference in New Issue
Block a user