Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
URenko committed May 31, 2024
1 parent 051c99d commit 746d885
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 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.5"
__version__ = "0.0.6"
print(f" >>> ComicLib v{__version__}")

from .scan import watch, scannow
Expand Down
4 changes: 2 additions & 2 deletions docs/en/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<YOUR_COMIC_DIRECTORY_HERE>,target=/root/comiclib \
--mount type=bind,source=<USER_DATA_PATH>,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 .

Expand Down
2 changes: 1 addition & 1 deletion docs/en/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/zh/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

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.5"
version = "0.0.6"
authors = [
{ name="URenko" },
]
Expand Down

0 comments on commit 746d885

Please sign in to comment.