2 Commits

Author SHA1 Message Date
d5ca50e9bd patch bump 2026-03-02 22:08:07 +00:00
0f8be6de48 bp-sidechain should be float 2026-03-02 22:07:53 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -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" }

View File

@@ -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:

2
uv.lock generated
View File

@@ -124,7 +124,7 @@ wheels = [
[[package]] [[package]]
name = "vban-cli" name = "vban-cli"
version = "0.11.0" version = "0.11.1"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "cyclopts" }, { name = "cyclopts" },