add output to scene switch command

add unit test

patch bump
This commit is contained in:
2025-05-19 01:45:31 +01:00
parent 81762508a7
commit 1dd6992129
3 changed files with 19 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online>
#
# SPDX-License-Identifier: MIT
__version__ = "0.10.4"
__version__ = "0.10.5"

View File

@@ -65,5 +65,7 @@ def switch(
if preview:
ctx.obj.set_current_preview_scene(scene_name)
typer.echo(f'Switched to preview scene: {scene_name}')
else:
ctx.obj.set_current_program_scene(scene_name)
typer.echo(f'Switched to program scene: {scene_name}')