diff --git a/frame_forge.py b/frame_forge.py index 80c693b..7107b2e 100644 --- a/frame_forge.py +++ b/frame_forge.py @@ -6,7 +6,7 @@ from frame_forge.utils import exit_application program_name = "FrameForge" -__version__ = "1.0.2" +__version__ = "1.0.3" if __name__ == "__main__": @@ -26,7 +26,7 @@ if __name__ == "__main__": help="Indexer choice", ) parser.add_argument("--index-dir", type=str, help="Path to look/create indexes") - parser.add_argument("--sub-size", type=int, help="Size of subtitles") + parser.add_argument("--sub-size", type=int, default=20, help="Size of subtitles") parser.add_argument("--left-crop", type=int, help="Left crop") parser.add_argument("--right-crop", type=int, help="Right crop") parser.add_argument("--top-crop", type=int, help="Top crop") diff --git a/pyproject.toml b/pyproject.toml index 82a342a..5b4e9ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "frame-forge" -version = "1.0.2" +version = "1.0.3" description = "CLI to offload image generation to" authors = ["jlw4049 "] license = "MIT"