Skip to content

Commit 03c10e4

Browse files
committed
v0.0.3
1 parent d43c5b4 commit 03c10e4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

comiclib/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.3.dev"
1+
__version__ = "0.0.3"
22
print(f" >>> ComicLib v{__version__}")
33

44
from .scan import watch, scannow

docs/en/docs/scanner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The main part of ComicLib is only responsible for traversing the comic library.
44

55
Scanners are divided into [built-in scanners](https://github.com/ComicLib/comiclib/tree/master/comiclib/scanner) and external scanners. All *.py files in the working directory will be loaded as external scanners.
66

7-
For each candidate comic file (folder), scanners are executed sequentially in the order of the file name (regardless of whether it is built-in or not) to complete different tasks.
7+
For each candidate comic file (folder), scanners are executed sequentially in the order of the file name (regardless of whether it is built-in or not) to complete different tasks, like an assembly line.
88

99
You can find some external scanners in the [official repository](https://github.com/ComicLib/scanner), or download those written by others. In addition, you can write it by yourself as long as you know some simple Python.
1010

docs/zh/docs/scanner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ComicLib 的主体仅负责遍历漫画库,漫画文件的判断、解析等
44

55
扫描脚本分为[内置脚本](https://github.com/ComicLib/comiclib/tree/master/comiclib/scanner)和外置脚本,所有工作目录下的 *.py 文件都会作为外置脚本加载。
66

7-
对于每个候选漫画文件(夹),扫描脚本按照文件名的顺序(与是否内置无关)依次执行,完成不同的任务。
7+
对于每个候选漫画文件(夹),扫描脚本按照文件名的顺序(与是否内置无关)像流水线一样依次执行,完成不同的任务。
88

99
可以在[官方仓库](https://github.com/ComicLib/scanner)找到一些外置扫描脚本,也可以下载其他人编写的。另外,只要会一些简单的 Python 就可以自己编写。
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "comiclib"
7-
version = "0.0.3.dev"
7+
version = "0.0.3"
88
authors = [
99
{ name="URenko" },
1010
]

0 commit comments

Comments
 (0)