diff --git a/obsws_cli/__about__.py b/obsws_cli/__about__.py index 6536a36..28fc353 100644 --- a/obsws_cli/__about__.py +++ b/obsws_cli/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2025-present onyx-and-iris # # SPDX-License-Identifier: MIT -__version__ = "0.12.7" +__version__ = "0.12.8" diff --git a/obsws_cli/filter.py b/obsws_cli/filter.py index d5f0f2e..507e32f 100644 --- a/obsws_cli/filter.py +++ b/obsws_cli/filter.py @@ -26,12 +26,12 @@ def list(ctx: typer.Context, source_name: str): out_console.print(f'No filters found for source {source_name}') return - table = Table(title=f'Filters for Source: {source_name}') + table = Table(title=f'Filters for Source: {source_name}', padding=(0, 2)) - for column in ('Name', 'Kind', 'Enabled', 'Settings'): + for column in ('Filter Name', 'Kind', 'Enabled', 'Settings'): table.add_column( column, - justify='left' if column in ('Name', 'Kind') else 'center', + justify='left' if column in ('Filter Name', 'Kind') else 'center', style='cyan', ) diff --git a/obsws_cli/group.py b/obsws_cli/group.py index 5ffcd8e..e7a2f68 100644 --- a/obsws_cli/group.py +++ b/obsws_cli/group.py @@ -44,11 +44,11 @@ def list( err_console.print(f"No groups found in scene '{scene_name}'.") raise typer.Exit(1) - table = Table(title=f'Groups in Scene: {scene_name}') + table = Table(title=f'Groups in Scene: {scene_name}', padding=(0, 2)) - for column in ('ID', 'Name', 'Enabled'): + for column in ('ID', 'Group Name', 'Enabled'): table.add_column( - column, justify='left' if column == 'Name' else 'center', style='cyan' + column, justify='left' if column == 'Group Name' else 'center', style='cyan' ) for item_id, group_name, is_enabled in groups: diff --git a/obsws_cli/hotkey.py b/obsws_cli/hotkey.py index 5dabef7..fed5704 100644 --- a/obsws_cli/hotkey.py +++ b/obsws_cli/hotkey.py @@ -23,8 +23,8 @@ def list( """List all hotkeys.""" resp = ctx.obj.get_hotkey_list() - table = Table(title='Hotkeys') - table.add_column('Name', justify='left', style='cyan') + table = Table(title='Hotkeys', padding=(0, 2)) + table.add_column('Hotkey Name', justify='left', style='cyan') for hotkey in resp.hotkeys: table.add_row(hotkey) diff --git a/obsws_cli/input.py b/obsws_cli/input.py index faae799..fa884bf 100644 --- a/obsws_cli/input.py +++ b/obsws_cli/input.py @@ -51,10 +51,10 @@ def list( err_console.print('No inputs found.') raise typer.Exit(1) - table = Table(title='Inputs') - for column in ('Name', 'Kind'): + table = Table(title='Inputs', padding=(0, 2)) + for column in ('Input Name', 'Kind'): table.add_column( - column, justify='left' if column == 'Name' else 'center', style='cyan' + column, justify='left' if column == 'Input Name' else 'center', style='cyan' ) for input_name, input_kind in inputs: diff --git a/obsws_cli/profile.py b/obsws_cli/profile.py index ed43ba9..eb4dbad 100644 --- a/obsws_cli/profile.py +++ b/obsws_cli/profile.py @@ -22,10 +22,12 @@ def list(ctx: typer.Context): """List profiles.""" resp = ctx.obj.get_profile_list() - table = Table(title='Profiles') - for column in ('Name', 'Current'): + table = Table(title='Profiles', padding=(0, 2)) + for column in ('Profile Name', 'Current'): table.add_column( - column, justify='left' if column == 'Name' else 'center', style='cyan' + column, + justify='left' if column == 'Profile Name' else 'center', + style='cyan', ) for profile in resp.profiles: diff --git a/obsws_cli/scene.py b/obsws_cli/scene.py index ffe063d..8fa5eb5 100644 --- a/obsws_cli/scene.py +++ b/obsws_cli/scene.py @@ -28,8 +28,8 @@ def list(ctx: typer.Context): for scene in reversed(resp.scenes) ) - table = Table(title='Scenes') - for column in ('Name', 'UUID'): + table = Table(title='Scenes', padding=(0, 2)) + for column in ('Scene Name', 'UUID'): table.add_column(column, justify='left', style='cyan') for scene_name, scene_uuid in scenes: diff --git a/obsws_cli/scenecollection.py b/obsws_cli/scenecollection.py index 42c5726..557e059 100644 --- a/obsws_cli/scenecollection.py +++ b/obsws_cli/scenecollection.py @@ -22,8 +22,8 @@ def list(ctx: typer.Context): """List all scene collections.""" resp = ctx.obj.get_scene_collection_list() - table = Table(title='Scene Collections') - table.add_column('Name', justify='left', style='cyan') + table = Table(title='Scene Collections', padding=(0, 2)) + table.add_column('Scene Collection Name', justify='left', style='cyan') for scene_collection_name in resp.scene_collections: table.add_row(scene_collection_name) diff --git a/obsws_cli/sceneitem.py b/obsws_cli/sceneitem.py index a2c5978..e8ed5d1 100644 --- a/obsws_cli/sceneitem.py +++ b/obsws_cli/sceneitem.py @@ -42,8 +42,8 @@ def list( err_console.print(f"No items found in scene '{scene_name}'.") raise typer.Exit(1) - table = Table(title=f'Items in Scene: {scene_name}') - table.add_column('Name', justify='left', style='cyan') + table = Table(title=f'Items in Scene: {scene_name}', padding=(0, 2)) + table.add_column('Item Name', justify='left', style='cyan') for item in items: table.add_row(item)