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 +95 -96
- package/README_de.md +230 -0
- package/README_ja.md +230 -0
- package/README_ko.md +230 -0
- package/README_zh.md +241 -0
- package/package.json +1 -1
- package/README_en.md +0 -239
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
|
-
>
|
|
5
|
+
> A command-line tool to look up JAV metadata by title ID — cast, release date, studio, and more
|
|
4
6
|
|
|
5
7
|
[](https://github.com/gdjdkid/AvDict)
|
|
6
8
|
[](https://nodejs.org)
|
|
7
9
|
[](LICENSE)
|
|
8
10
|
[]()
|
|
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
|
-

|
|
13
15
|
|
|
14
16
|
---
|
|
15
17
|
|
|
16
|
-
##
|
|
18
|
+
## Features
|
|
17
19
|
|
|
18
|
-
- 🔍
|
|
19
|
-
- 📋
|
|
20
|
-
- 💾
|
|
21
|
-
- 🖥️
|
|
22
|
-
- 🎨
|
|
23
|
-
- ⚡
|
|
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
|
-
- curl
|
|
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
|
-
|
|
|
38
|
-
|
|
39
|
+
| Platform | JAVBUS | NJAV | JavLibrary | JAVDB |
|
|
40
|
+
|----------|--------|------|------------|-------|
|
|
39
41
|
| Linux / macOS | ✅ | ✅ | ✅ | ✅ |
|
|
40
42
|
| Windows | ✅ | ✅ | ✅ | ❌ |
|
|
41
43
|
|
|
42
|
-
> JAVDB
|
|
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
|
-
|
|
50
|
+
**Option 1: Install via npm (recommended)**
|
|
49
51
|
```bash
|
|
50
52
|
npm install -g javdict
|
|
51
53
|
```
|
|
52
54
|
|
|
53
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
113
|
+
id Title ID to look up, e.g. SSIS-001
|
|
112
114
|
|
|
113
115
|
Options:
|
|
114
|
-
-v, --version
|
|
115
|
-
-r, --raw
|
|
116
|
-
--setup
|
|
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
|
-
|
|
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.
|
|
132
|
-
2.
|
|
133
|
-
3.
|
|
134
|
-
4.
|
|
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
|
|
143
|
+
Your Cookie is saved locally at `~/.config/javinfo/config.json` and never sent anywhere.
|
|
142
144
|
|
|
143
|
-
**
|
|
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
|
|
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
|
|
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:
|
|
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:
|
|
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:
|
|
185
|
+
**Q: Does it support FC2 amateur titles?**
|
|
187
186
|
|
|
188
|
-
A:
|
|
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) |
|
|
198
|
-
| JavLibrary | [javlibrary.com](https://www.javlibrary.com) |
|
|
199
|
-
| JAVDB | [javdb.com](https://javdb.com) |
|
|
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
|
-
|
|
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
|
-
|
|
210
|
+
PRs and Issues are welcome!
|
|
212
211
|
|
|
213
|
-
1. Fork
|
|
214
|
-
2.
|
|
215
|
-
3.
|
|
216
|
-
4.
|
|
217
|
-
5.
|
|
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:`
|
|
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** —
|
|
241
|
-
- **v1.1.x** —
|
|
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
|
+
[](https://github.com/gdjdkid/AvDict)
|
|
8
|
+
[](https://nodejs.org)
|
|
9
|
+
[](LICENSE)
|
|
10
|
+
[]()
|
|
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
|