From d2486be29a3d7b487c5cf607964e71ccf25c71a4 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 25 Jun 2025 18:06:59 +0100 Subject: [PATCH] add more theme options patch bump --- pyproject.toml | 2 +- src/simple_recorder/app.py | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 13d8e23..188d529 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "simple-recorder" -version = "0.1.1" +version = "0.1.2" description = "A simple OBS recorder" authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }] dependencies = [ diff --git a/src/simple_recorder/app.py b/src/simple_recorder/app.py index f1301be..28e57ef 100644 --- a/src/simple_recorder/app.py +++ b/src/simple_recorder/app.py @@ -78,7 +78,15 @@ class Stop(Command): def theme_parser(value: str) -> str: """Parse the theme argument.""" - themes = ["Light Purple", "Neutral Blue", "Reds", "Sandy Beach"] + themes = [ + "Light Purple", + "Neutral Blue", + "Reds", + "Sandy Beach", + "Kayak", + "Light Blue 2", + "Dark Teal1", + ] if value not in themes: raise ClypiException( f"Invalid theme: {value}. Available themes: {', '.join(themes)}" @@ -148,7 +156,7 @@ class SimpleRecorder(Command): def run(): - """Run the CLI application.""" + """Run the application.""" SimpleRecorder.parse().start()