mirror of
https://github.com/onyx-and-iris/slobs-cli.git
synced 2025-06-27 15:20:24 +01:00
rename leftmost column heading for audio list
patch bump
This commit is contained in:
parent
535b22bf8e
commit
03f1dac8ea
@ -1,3 +1,3 @@
|
|||||||
"""module for package metadata."""
|
"""module for package metadata."""
|
||||||
|
|
||||||
__version__ = '0.9.0'
|
__version__ = '0.9.1'
|
||||||
|
@ -29,7 +29,11 @@ async def list(ctx: click.Context, id: bool = False):
|
|||||||
conn.close()
|
conn.close()
|
||||||
return
|
return
|
||||||
|
|
||||||
table_data = [['Audio Name', 'ID', 'Muted'] if id else ['Name', 'Muted']]
|
table_data = [
|
||||||
|
['Audio Device Name', 'ID', 'Muted']
|
||||||
|
if id
|
||||||
|
else ['Audio Device Name', 'Muted']
|
||||||
|
]
|
||||||
for source in sources:
|
for source in sources:
|
||||||
model = await source.get_model()
|
model = await source.get_model()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user