Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
URenko committed Nov 5, 2023
1 parent d43c5b4 commit 03c10e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion comiclib/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.3.dev"
__version__ = "0.0.3"
print(f" >>> ComicLib v{__version__}")

from .scan import watch, scannow
Expand Down
2 changes: 1 addition & 1 deletion docs/en/docs/scanner.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The main part of ComicLib is only responsible for traversing the comic library.

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.

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.
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.

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.

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/docs/scanner.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ComicLib 的主体仅负责遍历漫画库,漫画文件的判断、解析等

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "comiclib"
version = "0.0.3.dev"
version = "0.0.3"
authors = [
{ name="URenko" },
]
Expand Down

0 comments on commit 03c10e4

Please sign in to comment.