Skip to content

Commit 0b8977e

Browse files
committed
0.0.1a2
1 parent bc9990c commit 0b8977e

9 files changed

Lines changed: 47 additions & 12 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ English | [中文](https://github.com/comiclib/comiclib/blob/master/README.zh.md
66
💬 Join Discussion: [![Discord](https://img.shields.io/discord/1100655762411372604?logo=discord&style=flat-square)](https://discord.gg/UmjCbgGUFW)
77

88
# ✨ Features
9-
- 📁 Support multiple archive formats (WIP)
10-
- 🏷️ Support tag and category metadata import and management (WIP)
11-
- 🔌 Support plugins
9+
- 📁 Support multiple archive formats
10+
- 🏷️ Support tag and category metadata import and management
11+
- 🔌 Support [plugins](https://comiclib.github.io/comiclib/en/scanner/)
1212
- 🖼️ Support JPEG XL
1313
- 💻 [LANraragi](https://github.com/Difegue/LANraragi)-compatible API
1414
- 📜 scroll / book mode reader ([eHunter](https://github.com/hanFengSan/eHunter))

README.zh.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
💬 加入讨论: [![Discord](https://img.shields.io/discord/1100655762411372604?logo=discord&style=flat-square)](https://discord.gg/UmjCbgGUFW)
77

88
# ✨ 特点
9-
- 📁 支持多种存档格式(WIP)
10-
- 🏷️ 支持tag和分类元数据导入和管理(WIP)
11-
- 🔌 支持插件
9+
- 📁 支持多种存档格式
10+
- 🏷️ 支持tag和分类元数据导入和管理
11+
- 🔌 支持[插件](https://comiclib.github.io/comiclib/zh/scanner/)
1212
- 🖼️ 支持JPEG XL
1313
- 💻 与 [LANraragi](https://github.com/Difegue/LANraragi) 兼容的API
1414
- 📜 卷轴式/书本式阅读器([eHunter](https://github.com/hanFengSan/eHunter)

comiclib/LANraragi/public/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Index.initializeAll = function () {
8787
localStorage.sawContextMenuToast = true;
8888

8989
LRR.toast({
90-
heading: `Welcome to LANraragi ${Index.serverVersion}!`,
90+
heading: `Welcome to ComicLib ${Index.serverVersion}!`,
9191
text: "If you want to perform advanced operations on an archive, remember to just right-click its name. Happy reading!",
9292
icon: "info",
9393
hideAfter: 13000,

comiclib/main.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
__version__ = "0.0.1a2"
2+
print(f" >>> ComicLib v{__version__}")
3+
14
from .scan import watch, scannow
25
from .config import settings
36
from .utils import extract_thumbnail, convert_image
@@ -504,7 +507,7 @@ def info():
504507
return {
505508
"name": "ComicLib",
506509
"motd": "Welcome to the library powered by ComicLib!",
507-
"version": "0.0.1a1",
510+
"version": __version__,
508511
"version_name": "Kaosu",
509512
"version_desc": "Ababababa",
510513
"total_pages_read": "0",

docs/en/docs/index.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,20 @@
22
<p align="center"><sup>Manage, read and share your comic/manga library</sup></p>
33

44
## ✨ Features
5-
- 📁 Support multiple archive formats (WIP)
6-
- 🏷️ Support tag and category metadata import and management (WIP)
5+
- 📁 Support multiple archive formats
6+
- 🏷️ Support tag and category metadata import and management
77
- 🔌 Support plugins
88
- 🖼️ Support JPEG XL
99
- 💻 [LANraragi](https://github.com/Difegue/LANraragi)-compatible API
1010
- 📜 scroll / book mode reader ([eHunter](https://github.com/hanFengSan/eHunter))
1111
- 🔁 Tag translation ([EhTagTranslation](https://github.com/EhTagTranslation/Database))
1212

1313
👉 [Get started](getting-started.md) now
14+
15+
16+
## UI preview
17+
Because ComicLib uses [LANraragi](https://github.com/Difegue/LANraragi) and [eHunter](https://github.com/hanFengSan/eHunter) as the front end by default, their UI previews are directly quoted here.
18+
19+
![](https://github.com/Difegue/LANraragi/raw/dev/tools/_screenshots/archive_thumb.png)
20+
![](https://github.com/Difegue/LANraragi/raw/dev/tools/_screenshots/archive_list.png)
21+
![](https://github.com/hanFengSan/eHunter/raw/master/github_image/github_preview_5_1.png?raw=true)

docs/en/docs/supported-formats.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Supported comic archive formats
2+
3+
| File extension | Download method | Corresponding scanner |
4+
| -------------- | --------------- | ----------- |
5+
| zip | general | 10-zip.py |
6+
| zip | [ccloli/E-Hentai-Downloader](https://github.com/ccloli/E-Hentai-Downloader) | 20-ccloli.py |
7+
| folder | [Hentai@Home](https://ehwiki.org/wiki/Hentai@Home#H.40H_Downloader) | 21-hath.py |
8+
| folder | [EhViewer](https://github.com/seven332/EhViewer) | 22-ehviewer.py |

docs/zh/docs/index.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<p align="center"><sup>管理、阅读、分享你的漫画库</sup></p>
33

44
## ✨ 特点
5-
- 📁 支持多种存档格式(WIP)
5+
- 📁 支持多种存档格式
66
- 🏷️ 支持 tag 和分类元数据导入和管理
77
- 🔌 支持[插件](scanner.md)
88
- 🖼️ 支持 JPEG XL
@@ -11,3 +11,11 @@
1111
- 🔁 标签翻译([EhTagTranslation](https://github.com/EhTagTranslation/Database)
1212

1313
马上 👉 [开始使用](getting-started.md)
14+
15+
16+
## 界面预览
17+
因为 ComicLib 默认使用 [LANraragi](https://github.com/Difegue/LANraragi)[eHunter](https://github.com/hanFengSan/eHunter) 作为前端,这里直接引用他们的界面预览。
18+
19+
![](https://github.com/Difegue/LANraragi/raw/dev/tools/_screenshots/archive_thumb.png)
20+
![](https://github.com/Difegue/LANraragi/raw/dev/tools/_screenshots/archive_list.png)
21+
![](https://github.com/hanFengSan/eHunter/raw/master/github_image/github_preview_5_1.png?raw=true)

docs/zh/docs/supported-formats.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 支持的漫画存档格式
2+
3+
| 文件扩展名 | 下载方式 | 对应扫描脚本 |
4+
| --------- | ------- | ----------- |
5+
| zip | 一般 | 10-zip.py |
6+
| zip | [ccloli/E-Hentai-Downloader](https://github.com/ccloli/E-Hentai-Downloader) | 20-ccloli.py |
7+
| 文件夹 | [Hentai@Home](https://ehwiki.org/wiki/Hentai@Home#H.40H_Downloader) | 21-hath.py |
8+
| 文件夹 | [EhViewer](https://github.com/seven332/EhViewer) | 22-ehviewer.py |

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.1a1"
7+
version = "0.0.1a2"
88
authors = [
99
{ name="URenko" },
1010
]

0 commit comments

Comments
 (0)