From 746d88503c4c761570e38237cbab18ba22f83bf2 Mon Sep 17 00:00:00 2001 From: URenko <18209292+URenko@users.noreply.github.com> Date: Fri, 31 May 2024 14:58:35 +0000 Subject: [PATCH] v0.0.6 --- comiclib/main.py | 2 +- docs/en/docs/getting-started.md | 4 ++-- docs/en/docs/index.md | 2 +- docs/zh/docs/getting-started.md | 4 ++-- docs/zh/docs/index.md | 2 +- pyproject.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/comiclib/main.py b/comiclib/main.py index b1a0c5e..0257f6b 100644 --- a/comiclib/main.py +++ b/comiclib/main.py @@ -1,4 +1,4 @@ -__version__ = "0.0.5" +__version__ = "0.0.6" print(f" >>> ComicLib v{__version__}") from .scan import watch, scannow diff --git a/docs/en/docs/getting-started.md b/docs/en/docs/getting-started.md index 269071b..7ff0c0b 100644 --- a/docs/en/docs/getting-started.md +++ b/docs/en/docs/getting-started.md @@ -37,13 +37,13 @@ pip install -U "comiclib[full] @ git+https://github.com/comiclib/comiclib.git" ### Docker (Experimental) !!! tip inline end "Minimal installation" - Image with tag `v0.0.5` (without `-full` suffix) does not ship the ehentai metadata database, therefore its size is much smaller. You can download the ehentai metadata database to `/userdata` if you need it. + Image with tag `v0.0.6` (without `-full` suffix) does not ship the ehentai metadata database, therefore its size is much smaller. You can download the ehentai metadata database to `/userdata` if you need it. ``` bash docker run -p 8000:8000 \ --mount type=bind,source=,target=/root/comiclib \ --mount type=bind,source=,target=/userdata \ -ghcr.io/comiclib/comiclib:v0.0.5-full +ghcr.io/comiclib/comiclib:v0.0.6-full ``` ComicLib now runs at http://localhost:8000 . diff --git a/docs/en/docs/index.md b/docs/en/docs/index.md index 2c0fba7..befbfa2 100644 --- a/docs/en/docs/index.md +++ b/docs/en/docs/index.md @@ -9,7 +9,7 @@ - 🔁 Tag translation ([EhTagTranslation](https://github.com/EhTagTranslation/Database)) - 🖼️ Support JPEG XL [^1] -[^1]: `pip install jxlpy` required. +[^1]: ffmpeg or `pip install jxlpy` required. 👉 [Get started](getting-started.md) now diff --git a/docs/zh/docs/getting-started.md b/docs/zh/docs/getting-started.md index b70c363..653d405 100644 --- a/docs/zh/docs/getting-started.md +++ b/docs/zh/docs/getting-started.md @@ -37,13 +37,13 @@ pip install -U "comiclib[full] @ git+https://github.com/comiclib/comiclib.git" ### Docker(试验性) !!! tip inline end "最小安装" - 使用 tag `v0.0.5`(没有`-full`后缀)的镜像不自带 ehentai 元数据库,其大小会小很多。可手动下载 ehentai 元数据库并将其放在 `/userdata` 下。 + 使用 tag `v0.0.6`(没有`-full`后缀)的镜像不自带 ehentai 元数据库,其大小会小很多。可手动下载 ehentai 元数据库并将其放在 `/userdata` 下。 ``` bash docker run -p 8000:8000 \ --mount type=bind,source=你的漫画库路径,target=/root/comiclib \ --mount type=bind,source=将要存放数据的路径,target=/userdata \ -ghcr.io/comiclib/comiclib:v0.0.5-full +ghcr.io/comiclib/comiclib:v0.0.6-full ``` 现在 ComicLib 运行在了 http://localhost:8000 。 diff --git a/docs/zh/docs/index.md b/docs/zh/docs/index.md index d230ffc..cb60643 100644 --- a/docs/zh/docs/index.md +++ b/docs/zh/docs/index.md @@ -9,7 +9,7 @@ - 🔁 标签翻译([EhTagTranslation](https://github.com/EhTagTranslation/Database)) - 🖼️ 支持 JPEG XL [^1] -[^1]: 需要 `pip install jxlpy`。 +[^1]: 需要 ffmpeg 或者 `pip install jxlpy`。 马上 👉 [开始使用](getting-started.md) diff --git a/pyproject.toml b/pyproject.toml index 2972c0c..dcdf0df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "comiclib" -version = "0.0.5" +version = "0.0.6" authors = [ { name="URenko" }, ]