mirror of
https://github.com/onyx-and-iris/vban-cli.git
synced 2026-04-19 03:43:30 +00:00
Compare commits
4 Commits
v0.12.4
...
37b8c387d9
| Author | SHA1 | Date | |
|---|---|---|---|
| 37b8c387d9 | |||
| 02f96ddf62 | |||
| 411234aeb3 | |||
| 2ca89515be |
@@ -1,11 +1,11 @@
|
||||
[project]
|
||||
name = "vban-cli"
|
||||
version = "0.12.4"
|
||||
version = "0.12.5"
|
||||
description = "A command-line interface for Voicemeeter leveraging VBAN."
|
||||
readme = "README.md"
|
||||
license = { text = "LICENSE" }
|
||||
requires-python = ">=3.13"
|
||||
dependencies = ["cyclopts>=4.6.0", "loguru>=0.7.3", "vban-cmd>=2.9.6"]
|
||||
dependencies = ["cyclopts>=4.6.0", "loguru>=0.7.3", "vban-cmd>=2.10.1"]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Programming Language :: Python",
|
||||
|
||||
@@ -50,3 +50,23 @@ def restart(
|
||||
"""Restart the Voicemeeter engine."""
|
||||
ctx.client.command.restart()
|
||||
app.console.print('Voicemeeter engine should now be restarting.')
|
||||
|
||||
|
||||
@app.command(name='lock')
|
||||
def lock(
|
||||
*,
|
||||
ctx: Annotated[Context, Parameter(parse=False)],
|
||||
):
|
||||
"""Lock the Voicemeeter GUI."""
|
||||
ctx.client.command.lock = True
|
||||
app.console.print('Voicemeeter GUI should now be locked.')
|
||||
|
||||
|
||||
@app.command(name='unlock')
|
||||
def unlock(
|
||||
*,
|
||||
ctx: Annotated[Context, Parameter(parse=False)],
|
||||
):
|
||||
"""Unlock the Voicemeeter GUI."""
|
||||
ctx.client.command.lock = False
|
||||
app.console.print('Voicemeeter GUI should now be unlocked.')
|
||||
|
||||
4
uv.lock
generated
4
uv.lock
generated
@@ -124,7 +124,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "vban-cli"
|
||||
version = "0.12.4"
|
||||
version = "0.12.5"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "cyclopts" },
|
||||
@@ -141,7 +141,7 @@ requires-dist = [
|
||||
|
||||
[[package]]
|
||||
name = "vban-cmd"
|
||||
version = "2.9.6"
|
||||
version = "2.10.3"
|
||||
source = { editable = "../vban-cmd-python" }
|
||||
|
||||
[package.metadata]
|
||||
|
||||
Reference in New Issue
Block a user