Skip to content

Commit

Permalink
feat: v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jessielw committed Jan 30, 2024
1 parent ce016cc commit 760587c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frame_forge.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


program_name = "FrameForge"
__version__ = "1.0.2"
__version__ = "1.0.3"


if __name__ == "__main__":
Expand All @@ -26,7 +26,7 @@
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")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 760587c

Please sign in to comment.