Skip to content

Commit

Permalink
v0.2.1 make arg description more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
zica87 committed Oct 16, 2022
1 parent e568500 commit 0299744
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ options:
-h, --help show this help message and exit
-m 檔名, --mp4 檔名 要嵌入縮圖的 MP4 檔名。
若為資料夾則表示整季的影片都要嵌入封面。
目前僅支援檔名與動畫瘋的標題相同的 MP4。
註:僅嵌入單集的話不限檔名,
整季嵌入則僅支援檔名與動畫瘋的標題相同的 MP4。
-v, --embed-visual 嵌入視覺圖。
-c, --embed-cover 嵌入封面。
也指定「嵌入視覺圖」選項的話則會檢查有無封面,
Expand Down Expand Up @@ -98,7 +99,7 @@ options:
--version 顯示版本號碼。
GitHub repo 網址:https://github.com/zica87/embed-ani-gamer-covers
版本:0.2.0
版本:0.2.1
```
## 互動模式
也可以不帶引數,只輸入`embed-ani-gamer-covers`,例如:
Expand Down
20 changes: 19 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
## todo
## todo (maybe will not do)
- 錯誤訊息上色
- 錯誤訊息導向至 stderr
- split command line mode and interactive mode source code file (and a lib)

----

## 0.2.1 2022/10/16
- 引數說明改為更清楚的寫法:
- 原本:
```
要嵌入縮圖的 MP4 檔名。
若為資料夾則表示整季的影片都要嵌入封面。
目前僅支援檔名與動畫瘋的標題相同的 MP4。
```
- 改為:
```
要嵌入縮圖的 MP4 檔名。
若為資料夾則表示整季的影片都要嵌入封面。
註:僅嵌入單集的話不限檔名,
整季嵌入則僅支援檔名與動畫瘋的標題相同的 MP4。
```
## 0.2.0 2022/10/1
- 若指定的資料夾不存在則自動建立
- 並新增不要建立的選項
Expand Down
3 changes: 2 additions & 1 deletion embed-ani-gamer-covers/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ def select_metadata_fields(ALL_FIELDS:dict) -> dict:
metavar="檔名",
help="要嵌入縮圖的 MP4 檔名。\n"\
"若為資料夾則表示整季的影片都要嵌入封面。\n"\
"目前僅支援檔名與動畫瘋的標題相同的 MP4。")
"註:僅嵌入單集的話不限檔名,\n"\
"整季嵌入則僅支援檔名與動畫瘋的標題相同的 MP4。")
parser.add_argument("-v",
"--embed-visual",
action="store_true",
Expand Down

0 comments on commit 0299744

Please sign in to comment.