javdict 1.2.2 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,56 +1,58 @@
1
+ English | [中文](README_zh.md) | [日本語](README_ja.md) | [한국어](README_ko.md) | [Deutsch](README_de.md)
2
+
1
3
  # AvDict 🎬
2
4
 
3
- > 一个命令行查询 AV 车牌号详细信息的工具
5
+ > A command-line tool to look up JAV metadata by title ID — cast, release date, studio, and more
4
6
 
5
7
  [![npm version](https://img.shields.io/badge/version-1.2.1-blue.svg)](https://github.com/gdjdkid/AvDict)
6
8
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-green.svg)](https://nodejs.org)
7
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
8
10
  [![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20Windows%20%7C%20macOS-lightgrey.svg)]()
9
11
 
10
- 输入一个车牌号,即可获取女优、发售日期、制作商、时长、类别等完整信息。支持多数据源自动兜底,无需手动切换。
12
+ Type a title ID, get back the full details — cast, release date, studio, duration, tags, and more. Multiple data sources are queried automatically with no manual switching required.
11
13
 
12
- ![示例](https://raw.githubusercontent.com/gdjdkid/AvDict/master/example.gif)
14
+ ![Example](https://raw.githubusercontent.com/gdjdkid/AvDict/master/example.gif)
13
15
 
14
16
  ---
15
17
 
16
- ## 功能特点
18
+ ## Features
17
19
 
18
- - 🔍 **多数据源自动兜底**依次查询 JAVBUS → NJAV → JavLibrary → JAVDB,任意一个命中即返回
19
- - 📋 **信息完整**女优、男优、发售日期、时长、制作商、发行商、导演、系列、类别、封面、评分
20
- - 💾 **本地缓存**查询结果缓存 7 天,减少重复请求
21
- - 🖥️ **跨平台**支持 Linux、WindowsmacOS
22
- - 🎨 **彩色输出**终端美化显示,字段分色,清晰易读
23
- - ⚡ **查询快速**直接番号拼 URL,无需登录即可使用
20
+ - 🔍 **Multi-source fallback** Queries JAVBUS → NJAV → JavLibrary → JAVDB in order; returns on first hit
21
+ - 📋 **Rich metadata** Cast, release date, duration, studio, label, director, series, tags, cover image, rating
22
+ - 💾 **Local cache** Results cached for 7 days to reduce repeat requests
23
+ - 🖥️ **Cross-platform**Linux, Windows, and macOS supported
24
+ - 🎨 **Color output** Terminal-formatted display with field-level color coding
25
+ - ⚡ **Fast lookups** Direct URL construction by title ID; no login required for most sources
24
26
 
25
27
  ---
26
28
 
27
- ## 系统要求
29
+ ## Requirements
28
30
 
29
31
  - Node.js >= 18.0.0
30
32
  - npm >= 6.0.0
31
- - curlLinux/macOS 系统自带;Windows 请确认 Git Bash 环境下可用)
33
+ - curl (built into Linux/macOS; ensure it's available in your Git Bash environment on Windows)
32
34
 
33
35
  ---
34
36
 
35
- ## 支持的平台
37
+ ## Platform Support
36
38
 
37
- | 平台 | JAVBUS | NJAV | JavLibrary | JAVDB |
38
- |------|--------|------|------------|-------|
39
+ | Platform | JAVBUS | NJAV | JavLibrary | JAVDB |
40
+ |----------|--------|------|------------|-------|
39
41
  | Linux / macOS | ✅ | ✅ | ✅ | ✅ |
40
42
  | Windows | ✅ | ✅ | ✅ | ❌ |
41
43
 
42
- > JAVDB Windows 上因 Cloudflare TLS 指纹限制无法使用,其他三个数据源在 Windows 上完全正常。
44
+ > JAVDB is unavailable on Windows due to Cloudflare TLS fingerprint restrictions. The other three sources work fully on Windows.
43
45
 
44
46
  ---
45
47
 
46
- ## 安装方法
48
+ ## Installation
47
49
 
48
- **方式一:通过 npm 安装(推荐)**
50
+ **Option 1: Install via npm (recommended)**
49
51
  ```bash
50
52
  npm install -g javdict
51
53
  ```
52
54
 
53
- **方式二:从 GitHub 克隆安装(开发者)**
55
+ **Option 2: Clone from GitHub (for developers)**
54
56
  ```bash
55
57
  git clone https://github.com/gdjdkid/AvDict.git
56
58
  cd AvDict
@@ -58,7 +60,7 @@ npm install
58
60
  npm install -g .
59
61
  ```
60
62
 
61
- **验证安装成功:**
63
+ **Verify the installation:**
62
64
 
63
65
  ```bash
64
66
  jav -v
@@ -66,9 +68,9 @@ jav -v
66
68
 
67
69
  ---
68
70
 
69
- ## 使用说明
71
+ ## Usage
70
72
 
71
- **查询车牌号:**
73
+ **Look up a title ID:**
72
74
 
73
75
  ```bash
74
76
  jav SSIS-001
@@ -76,25 +78,25 @@ jav ABF-331
76
78
  jav JUR-067
77
79
  ```
78
80
 
79
- **输出原始 JSON 数据:**
81
+ **Output raw JSON:**
80
82
 
81
83
  ```bash
82
84
  jav -r SSIS-001
83
85
  ```
84
86
 
85
- **清空本地缓存:**
87
+ **Clear local cache:**
86
88
 
87
89
  ```bash
88
90
  jav --clear-cache
89
91
  ```
90
92
 
91
- **配置 JAVDB Cookie(可选):**
93
+ **Configure JAVDB Cookie (optional):**
92
94
 
93
95
  ```bash
94
96
  jav --setup
95
97
  ```
96
98
 
97
- **显示帮助信息:**
99
+ **Show help:**
98
100
 
99
101
  ```bash
100
102
  jav -h
@@ -102,56 +104,53 @@ jav -h
102
104
 
103
105
  ---
104
106
 
105
- ## 命令行选项
107
+ ## CLI Options
106
108
 
107
109
  ```
108
- Usage: jav [options] [番号]
110
+ Usage: jav [options] [id]
109
111
 
110
112
  Arguments:
111
- 番号 要查询的车牌号,例如: SSIS-001
113
+ id Title ID to look up, e.g. SSIS-001
112
114
 
113
115
  Options:
114
- -v, --version 显示版本号
115
- -r, --raw 以原始 JSON 格式输出结果
116
- --setup 配置 JAVDB Cookie(可选,提高覆盖率)
117
- --clear-cache 清空本地缓存
118
- -h, --help 显示帮助信息
116
+ -v, --version Print version number
117
+ -r, --raw Output raw JSON instead of formatted display
118
+ --setup Configure JAVDB Cookie (optional, improves coverage)
119
+ --clear-cache Clear local result cache
120
+ -h, --help Show help
119
121
  ```
120
122
 
121
123
  ---
122
124
 
123
- ## 自定义设置
125
+ ## Configuration
124
126
 
125
- ### JAVDB Cookie 配置(可选)
127
+ ### JAVDB Cookie (optional)
126
128
 
127
- 不配置也可以正常使用,配置后可提高部分冷门番号的查询覆盖率(仅 Linux/macOS 生效)。
129
+ The tool works without any configuration. Adding a JAVDB Cookie improves coverage for niche titles that only exist in JAVDB's database. This only takes effect on Linux/macOS.
128
130
 
129
- **获取步骤:**
131
+ **How to get your Cookie:**
130
132
 
131
- 1. Chrome 打开 [https://javdb.com](https://javdb.com) 并登录账号
132
- 2. 安装 Chrome 插件 [Get cookies.txt LOCALLY](https://chrome.google.com/webstore/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc)
133
- 3. JAVDB 页面点击插件图标,导出 Cookie 文件
134
- 4. 找到 `_jdb_session` 那一行,复制最后一列的值
135
- 5. 运行以下命令并粘贴:
133
+ 1. Open [https://javdb.com](https://javdb.com) in Chrome and sign in
134
+ 2. Install the Chrome extension [Get cookies.txt LOCALLY](https://chrome.google.com/webstore/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc)
135
+ 3. Click the extension icon on the JAVDB page and export your cookies
136
+ 4. Find the `_jdb_session` row and copy the value in the last column
137
+ 5. Run the setup command and paste it in:
136
138
 
137
139
  ```bash
138
140
  jav --setup
139
141
  ```
140
142
 
141
- Cookie 配置保存在本地 `~/.config/javinfo/config.json`,不会上传到任何地方。
143
+ Your Cookie is saved locally at `~/.config/javinfo/config.json` and never sent anywhere.
142
144
 
143
- **Cookie 有效期约 2 周**,过期后重新运行 `jav --setup` 更新即可。
145
+ **Cookies typically expire in about 2 weeks.** When niche titles start returning "not found", just run `jav --setup` again to refresh.
144
146
 
145
147
  ---
146
148
 
147
- ## 缓存说明
148
-
149
- 查询结果自动缓存到 `~/.config/javinfo/cache.json`,有效期 7 天。缓存可以:
149
+ ## Caching
150
150
 
151
- - 加快重复查询速度
152
- - 减少对数据源网站的请求压力
151
+ Query results are automatically cached to `~/.config/javinfo/cache.json` with a 7-day TTL. This speeds up repeat lookups and reduces load on the source sites.
153
152
 
154
- 如需强制刷新数据,运行:
153
+ To force a fresh fetch:
155
154
 
156
155
  ```bash
157
156
  jav --clear-cache
@@ -159,84 +158,84 @@ jav --clear-cache
159
158
 
160
159
  ---
161
160
 
162
- ## 常见问题
161
+ ## FAQ
163
162
 
164
- **Q: 查询失败提示 `未找到番号`?**
163
+ **Q: I get "title not found" — what's wrong?**
165
164
 
166
- A: 可能原因有三个:
167
- 1. 该番号在所有数据源均未收录(极小众内容)
168
- 2. JAVDB Cookie 已过期,运行 `jav --setup` 重新配置
169
- 3. 网络无法访问数据源,请检查代理设置
165
+ A: There are three likely causes:
166
+ 1. The title isn't indexed by any of the four sources (extremely niche content)
167
+ 2. Your JAVDB Cookie has expired — run `jav --setup` to refresh it
168
+ 3. Your network can't reach the source sites — check your proxy settings
170
169
 
171
- **Q: Windows 上部分番号查不到?**
170
+ **Q: Some titles don't show up on Windows?**
172
171
 
173
- A: Windows JAVDB 数据源因 Cloudflare 限制无法使用,少数仅收录于 JAVDB 的番号在 Windows 上无法查询。建议在 Linux 环境(如树莓派)下使用以获得最完整的查询结果。
172
+ A: JAVDB is unavailable on Windows due to Cloudflare restrictions. A small number of titles that only exist in JAVDB can't be found on Windows. For full coverage, use a Linux environment (e.g. a Raspberry Pi).
174
173
 
175
- **Q: 提示 `Permission denied`?**
174
+ **Q: I get `Permission denied` when installing?**
176
175
 
177
- A: 全局安装时需要管理员权限:
176
+ A: Global installation requires elevated permissions:
178
177
  ```bash
179
178
  sudo npm install -g .
180
179
  ```
181
180
 
182
- **Q: Cookie 多久需要更新一次?**
181
+ **Q: How often do I need to update my Cookie?**
183
182
 
184
- A: 通常 2 周左右,当出现冷门番号突然查不到时,运行 `jav --setup` 更新即可。
183
+ A: Roughly every 2 weeks. If niche titles that previously worked start returning "not found", your Cookie has likely expired — run `jav --setup` to update it.
185
184
 
186
- **Q: 支持 FC2 素人番号吗?**
185
+ **Q: Does it support FC2 amateur titles?**
187
186
 
188
- A: 支持,输入格式为 `031926-100`(连字符格式),工具会自动识别并转换格式查询。
187
+ A: Yes. Enter the title in hyphen format, e.g. `031926-100`. The tool auto-detects FC2 format and handles the conversion internally.
189
188
 
190
189
  ---
191
190
 
192
- ## 数据来源
191
+ ## Data Sources
193
192
 
194
- | 数据源 | 网站 | 特点 |
195
- |--------|------|------|
196
- | JAVBUS | [javbus.com](https://www.javbus.com) | 速度快,数据丰富 |
197
- | NJAV | [njav.com](https://www.njav.com) | 覆盖率高,无需 Cookie |
198
- | JavLibrary | [javlibrary.com](https://www.javlibrary.com) | 数据完整,评分信息 |
199
- | JAVDB | [javdb.com](https://javdb.com) | 数据最全,需要 Cookie |
193
+ | Source | Website | Notes |
194
+ |--------|---------|-------|
195
+ | JAVBUS | [javbus.com](https://www.javbus.com) | Fast, broad coverage |
196
+ | NJAV | [njav.com](https://www.njav.com) | High coverage, no Cookie needed |
197
+ | JavLibrary | [javlibrary.com](https://www.javlibrary.com) | Detailed metadata, includes ratings |
198
+ | JAVDB | [javdb.com](https://javdb.com) | Most comprehensive, requires Cookie |
200
199
 
201
200
  ---
202
201
 
203
- ## 开源协议
202
+ ## License
204
203
 
205
- 本项目基于 [MIT License](LICENSE) 开源,你可以自由使用、修改和分发。
204
+ This project is open source under the [MIT License](LICENSE). You're free to use, modify, and distribute it.
206
205
 
207
206
  ---
208
207
 
209
- ## 如何贡献代码
208
+ ## Contributing
210
209
 
211
- 欢迎提交 PR Issue!
210
+ PRs and Issues are welcome!
212
211
 
213
- 1. Fork 这个仓库
214
- 2. 创建你的功能分支:`git checkout -b feat/your-feature`
215
- 3. 提交改动:`git commit -m "feat: 描述你的改动"`
216
- 4. 推送分支:`git push origin feat/your-feature`
217
- 5. 提交 Pull Request
212
+ 1. Fork this repository
213
+ 2. Create your branch: `git checkout -b feat/your-feature`
214
+ 3. Commit your changes: `git commit -m "feat: describe your change"`
215
+ 4. Push the branch: `git push origin feat/your-feature`
216
+ 5. Open a Pull Request
218
217
 
219
- **Commit 规范:**
220
- - `feat:` 新增功能
221
- - `fix:` 修复 bug
222
- - `docs:` 修改文档
223
- - `chore:` 杂项维护
218
+ **Commit message conventions:**
219
+ - `feat:` — new feature
220
+ - `fix:` bug fix
221
+ - `docs:` — documentation update
222
+ - `chore:` — maintenance / housekeeping
224
223
 
225
224
  ---
226
225
 
227
- ## 请作者喝一杯咖啡
226
+ ## Buy Me a Coffee
228
227
 
229
- 如果这个工具对你有帮助,欢迎打赏支持:
228
+ If this tool saves you time, consider supporting development:
230
229
 
231
- | 微信支付 | 支付宝 |
232
- |---------|--------|
233
- | *(二维码)* | *(二维码)* |
230
+ | WeChat Pay | Alipay |
231
+ |------------|--------|
232
+ | *(QR code)* | *(QR code)* |
234
233
 
235
234
  ---
236
235
 
237
- ## 更新日志
236
+ ## Changelog
238
237
 
239
- - **v1.2.1** — 修复代码细节,稳定性优化
240
- - **v1.2.0** — 新增 NJAV 第四数据源,调整数据源优先级
241
- - **v1.1.x** — 三数据源兜底,JAVDB Cookie 改为可选配置,跨平台兼容优化
242
- - **v1.0.0** — 初始版本发布
238
+ - **v1.2.1** — Minor fixes and stability improvements
239
+ - **v1.2.0** — Added NJAV as fourth data source; reordered source priority
240
+ - **v1.1.x** — Three-source fallback; JAVDB Cookie made optional; cross-platform compatibility fixes
241
+ - **v1.0.0** — Initial release
package/README_de.md ADDED
@@ -0,0 +1,230 @@
1
+ [English](README.md) | [中文](README_zh.md) | [日本語](README_ja.md) | [한국어](README_ko.md) | Deutsch
2
+
3
+ # AvDict 🎬
4
+
5
+ > Ein Kommandozeilen-Tool zum Abrufen von JAV-Metadaten anhand der Titel-ID — Besetzung, Erscheinungsdatum, Studio und mehr
6
+
7
+ [![npm version](https://img.shields.io/badge/version-1.2.2-blue.svg)](https://github.com/gdjdkid/AvDict)
8
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-green.svg)](https://nodejs.org)
9
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
10
+ [![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20Windows%20%7C%20macOS-lightgrey.svg)]()
11
+
12
+ Gib eine Titel-ID ein und erhalte sofort vollständige Informationen — Besetzung, Erscheinungsdatum, Studio, Laufzeit, Tags und mehr. Mehrere Datenquellen werden automatisch abgefragt, ohne manuelles Umschalten.
13
+
14
+ ---
15
+
16
+ ## Funktionen
17
+
18
+ - 🔍 **Automatisches Multi-Source-Fallback** — Fragt JAVBUS → NJAV → JavLibrary → JAVDB der Reihe nach ab und gibt beim ersten Treffer zurück
19
+ - 📋 **Umfangreiche Metadaten** — Besetzung, Erscheinungsdatum, Laufzeit, Studio, Label, Regisseur, Serie, Tags, Cover-Bild, Bewertung
20
+ - 💾 **Lokaler Cache** — Ergebnisse werden 7 Tage lang gecacht, um wiederholte Anfragen zu reduzieren
21
+ - 🖥️ **Plattformübergreifend** — Linux, Windows und macOS werden unterstützt
22
+ - 🎨 **Farbige Ausgabe** — Übersichtliche Terminal-Darstellung mit feldweiser Farbkodierung
23
+ - ⚡ **Schnelle Suche** — Direkte URL-Konstruktion anhand der Titel-ID, kein Login erforderlich
24
+
25
+ ---
26
+
27
+ ## Systemanforderungen
28
+
29
+ - Node.js >= 18.0.0
30
+ - npm >= 6.0.0
31
+ - curl(unter Linux/macOS vorinstalliert; unter Windows in der Git Bash-Umgebung verfügbar)
32
+
33
+ ---
34
+
35
+ ## Plattform-Unterstützung
36
+
37
+ | Plattform | JAVBUS | NJAV | JavLibrary | JAVDB |
38
+ |-----------|--------|------|------------|-------|
39
+ | Linux / macOS | ✅ | ✅ | ✅ | ✅ |
40
+ | Windows | ✅ | ✅ | ✅ | ❌ |
41
+
42
+ > JAVDB ist unter Windows aufgrund von Cloudflare TLS-Fingerprint-Einschränkungen nicht verfügbar. Die anderen drei Quellen funktionieren unter Windows vollständig.
43
+
44
+ ---
45
+
46
+ ## Installation
47
+
48
+ **Option 1: Installation über npm(empfohlen)**
49
+
50
+ ```bash
51
+ npm install -g javdict
52
+ ```
53
+
54
+ **Option 2: Klonen von GitHub(für Entwickler)**
55
+
56
+ ```bash
57
+ git clone https://github.com/gdjdkid/AvDict.git
58
+ cd AvDict
59
+ npm install
60
+ npm install -g .
61
+ ```
62
+
63
+ **Installation überprüfen:**
64
+
65
+ ```bash
66
+ jav -v
67
+ ```
68
+
69
+ ---
70
+
71
+ ## Verwendung
72
+
73
+ **Titel-ID suchen:**
74
+
75
+ ```bash
76
+ jav SSIS-001
77
+ jav ABF-331
78
+ jav JUR-067
79
+ ```
80
+
81
+ **Rohdaten als JSON ausgeben:**
82
+
83
+ ```bash
84
+ jav -r SSIS-001
85
+ ```
86
+
87
+ **Lokalen Cache leeren:**
88
+
89
+ ```bash
90
+ jav --clear-cache
91
+ ```
92
+
93
+ **JAVDB Cookie konfigurieren(optional):**
94
+
95
+ ```bash
96
+ jav --setup
97
+ ```
98
+
99
+ **Hilfe anzeigen:**
100
+
101
+ ```bash
102
+ jav -h
103
+ ```
104
+
105
+ ---
106
+
107
+ ## CLI-Optionen
108
+
109
+ ```
110
+ Usage: jav [options] [id]
111
+
112
+ Arguments:
113
+ id Zu suchende Titel-ID, z.B. SSIS-001
114
+
115
+ Options:
116
+ -v, --version Versionsnummer ausgeben
117
+ -r, --raw Ausgabe als rohes JSON
118
+ --setup JAVDB Cookie konfigurieren(optional, verbessert Abdeckung)
119
+ --clear-cache Lokalen Cache leeren
120
+ -h, --help Hilfe anzeigen
121
+ ```
122
+
123
+ ---
124
+
125
+ ## Konfiguration
126
+
127
+ ### JAVDB Cookie(optional)
128
+
129
+ Das Tool funktioniert ohne jede Konfiguration. Das Hinzufügen eines JAVDB Cookies verbessert die Abdeckung für seltene Titel, die nur in der JAVDB-Datenbank vorhanden sind. Dies gilt nur für Linux/macOS.
130
+
131
+ **So erhältst du deinen Cookie:**
132
+
133
+ 1. Öffne [https://javdb.com](https://javdb.com) in Chrome und melde dich an
134
+ 2. Installiere die Chrome-Erweiterung [Get cookies.txt LOCALLY](https://chrome.google.com/webstore/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc)
135
+ 3. Klicke auf das Erweiterungs-Symbol auf der JAVDB-Seite und exportiere die Cookies
136
+ 4. Suche die Zeile `_jdb_session` und kopiere den Wert in der letzten Spalte
137
+ 5. Führe den Setup-Befehl aus und füge den Wert ein:
138
+
139
+ ```bash
140
+ jav --setup
141
+ ```
142
+
143
+ Dein Cookie wird lokal unter `~/.config/javinfo/config.json` gespeichert und nirgendwo hin gesendet.
144
+
145
+ **Cookies laufen in etwa 2 Wochen ab.** Wenn seltene Titel plötzlich nicht mehr gefunden werden, führe einfach `jav --setup` erneut aus.
146
+
147
+ ---
148
+
149
+ ## Caching
150
+
151
+ Suchergebnisse werden automatisch in `~/.config/javinfo/cache.json` mit einer Gültigkeitsdauer von 7 Tagen gespeichert.
152
+
153
+ Um frische Daten zu erzwingen:
154
+
155
+ ```bash
156
+ jav --clear-cache
157
+ ```
158
+
159
+ ---
160
+
161
+ ## Häufige Fragen
162
+
163
+ **F: Ich erhalte „Titel nicht gefunden" — was ist falsch?**
164
+
165
+ A: Es gibt drei mögliche Ursachen:
166
+ 1. Der Titel ist in keiner der vier Quellen indexiert(sehr seltene Inhalte)
167
+ 2. Dein JAVDB Cookie ist abgelaufen — führe `jav --setup` aus, um ihn zu erneuern
168
+ 3. Dein Netzwerk kann die Quellen nicht erreichen — überprüfe deine Proxy-Einstellungen
169
+
170
+ **F: Einige Titel werden unter Windows nicht gefunden?**
171
+
172
+ A: JAVDB ist unter Windows aufgrund von Cloudflare-Einschränkungen nicht verfügbar. Eine kleine Anzahl von Titeln, die nur in JAVDB existieren, kann unter Windows nicht gefunden werden. Für vollständige Abdeckung empfehlen wir eine Linux-Umgebung(z.B. Raspberry Pi).
173
+
174
+ **F: Werden FC2-Amateur-Titel unterstützt?**
175
+
176
+ A: Ja. Gib den Titel im Bindestrich-Format ein, z.B. `031926-100`. Das Tool erkennt das FC2-Format automatisch und wandelt es intern um.
177
+
178
+ ---
179
+
180
+ ## Datenquellen
181
+
182
+ | Quelle | Website | Hinweise |
183
+ |--------|---------|----------|
184
+ | JAVBUS | [javbus.com](https://www.javbus.com) | Schnell, breite Abdeckung |
185
+ | NJAV | [njav.com](https://www.njav.com) | Hohe Abdeckung, kein Cookie erforderlich |
186
+ | JavLibrary | [javlibrary.com](https://www.javlibrary.com) | Detaillierte Metadaten, enthält Bewertungen |
187
+ | JAVDB | [javdb.com](https://javdb.com) | Umfangreichste Datenbank, Cookie erforderlich |
188
+
189
+ ---
190
+
191
+ ## Lizenz
192
+
193
+ Dieses Projekt ist Open Source unter der [MIT License](LICENSE). Du kannst es frei verwenden, modifizieren und verteilen.
194
+
195
+ ---
196
+
197
+ ## Mitwirken
198
+
199
+ PRs und Issues sind willkommen!
200
+
201
+ 1. Dieses Repository forken
202
+ 2. Branch erstellen:`git checkout -b feat/dein-feature`
203
+ 3. Änderungen committen:`git commit -m "feat: Beschreibe deine Änderung"`
204
+ 4. Branch pushen:`git push origin feat/dein-feature`
205
+ 5. Pull Request öffnen
206
+
207
+ **Commit-Nachricht-Konventionen:**
208
+ - `feat:` — Neue Funktion
209
+ - `fix:` — Fehlerbehebung
210
+ - `docs:` — Dokumentation aktualisiert
211
+ - `chore:` — Wartung / Housekeeping
212
+
213
+ ---
214
+
215
+ ## Kauf mir einen Kaffee ☕
216
+
217
+ Wenn dir dieses Tool Zeit spart, unterstütze gerne die Entwicklung:
218
+
219
+ | WeChat Pay | Alipay |
220
+ |------------|--------|
221
+ | *(QR-Code)* | *(QR-Code)* |
222
+
223
+ ---
224
+
225
+ ## Änderungsprotokoll
226
+
227
+ - **v1.2.2** — Mehrsprachige README, npm-Veröffentlichung
228
+ - **v1.2.0** — NJAV als vierte Datenquelle hinzugefügt, Quellenpriorität neu geordnet
229
+ - **v1.1.x** — Drei-Quellen-Fallback, JAVDB Cookie optional, plattformübergreifende Kompatibilität
230
+ - **v1.0.0** — Erstveröffentlichung