ani-auto 1.3.1 → 1.3.2
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 +32 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
# ani-auto
|
|
12
12
|
|
|
13
|
-
automatically downloads new anime episodes
|
|
13
|
+
automatically downloads new anime episodes. works with your AniList watching list or a manual list — no account required.
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -26,28 +26,42 @@ npm install -g ani-auto
|
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
ani-auto setup
|
|
29
|
-
ani-auto
|
|
29
|
+
ani-auto download
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
> **Tip:** connecting your AniList account lets the daemon know exactly when episodes air and download them automatically. without AniList, you can still add anime manually and the daemon will check every 2 hours.
|
|
33
|
+
|
|
32
34
|
---
|
|
33
35
|
|
|
34
36
|
## features
|
|
35
37
|
|
|
36
38
|
**1. anilist sync**
|
|
37
|
-
stays in sync with your watching list — only downloads episodes you haven't seen yet.
|
|
39
|
+
stays in sync with your watching list — only downloads episodes you haven't seen yet. supports multiple statuses (watching, paused, planning, repeating).
|
|
38
40
|
|
|
39
|
-
**2.
|
|
40
|
-
|
|
41
|
+
**2. manual list**
|
|
42
|
+
no AniList account? add any anime manually with `ani-auto add "title"` and it will be tracked and downloaded just like AniList entries.
|
|
41
43
|
|
|
42
|
-
**3.
|
|
43
|
-
|
|
44
|
+
**3. quality control**
|
|
45
|
+
choose your preferred quality on each run or set a default. set a different quality per anime with `ani-auto quality`.
|
|
44
46
|
|
|
45
|
-
**4.
|
|
46
|
-
|
|
47
|
+
**4. smart daemon**
|
|
48
|
+
connects to your AniList to know exactly when each episode airs and downloads at the right time. falls back to checking every 2 hours for manual list entries or when AniList is not connected.
|
|
49
|
+
|
|
50
|
+
**5. offline recovery**
|
|
51
|
+
if your device loses internet, the daemon detects it instantly and resumes the moment connection is restored.
|
|
52
|
+
|
|
53
|
+
**6. episode range**
|
|
54
|
+
download a specific range of episodes in one run — useful for catching up on a series.
|
|
47
55
|
|
|
48
|
-
**
|
|
56
|
+
**7. telegram notifications**
|
|
49
57
|
get notified on your phone when episodes download, fail, or the daemon starts. message @userinfobot on telegram to get your chat id, then run `ani-auto setup`.
|
|
50
58
|
|
|
59
|
+
**8. pause & resume**
|
|
60
|
+
disable any anime at any time without losing your download history.
|
|
61
|
+
|
|
62
|
+
**9. retry failed episodes**
|
|
63
|
+
re-attempt all failed downloads in one command with `ani-auto retry`.
|
|
64
|
+
|
|
51
65
|
---
|
|
52
66
|
|
|
53
67
|
## commands
|
|
@@ -55,22 +69,22 @@ get notified on your phone when episodes download, fail, or the daemon starts. m
|
|
|
55
69
|
```
|
|
56
70
|
Usage: ani-auto [options] [command]
|
|
57
71
|
|
|
58
|
-
Automatic anime episode downloader — AniList-aware
|
|
59
|
-
|
|
60
72
|
Options:
|
|
61
73
|
-V, --version output the version number
|
|
62
74
|
-h, --help display help for command
|
|
63
75
|
|
|
64
76
|
Commands:
|
|
65
77
|
setup Interactive first-time configuration wizard
|
|
66
|
-
|
|
78
|
+
download Run one download cycle immediately
|
|
67
79
|
list Show all tracked anime and their episode download status
|
|
68
|
-
add [options] <title> Search AniList and add an anime to the manual
|
|
69
|
-
remove [title] Remove an anime from the manual list
|
|
80
|
+
add [options] <title> Search AniList and add an anime to the manual list
|
|
81
|
+
remove [title] Remove an anime from the manual list
|
|
70
82
|
enable Re-enable downloads for an anime
|
|
71
83
|
disable Pause downloads for an anime (keeps history)
|
|
84
|
+
quality [title] Set per-anime quality override
|
|
85
|
+
retry Re-attempt all failed episode downloads
|
|
86
|
+
status [options] Show recent run log or per-anime episode breakdown
|
|
72
87
|
notify [action] Enable or disable Telegram notifications (on, off)
|
|
73
|
-
status [options] Show recent run log
|
|
74
88
|
config [options] View, update, or open config file
|
|
75
89
|
update Check for updates and install the latest version
|
|
76
90
|
daemon [action] Manage the background daemon (install, start, stop, restart, status, logs)
|
|
@@ -85,7 +99,8 @@ Commands:
|
|
|
85
99
|
ani-auto config --set-quality 1080p
|
|
86
100
|
ani-auto config --set-concurrency 3
|
|
87
101
|
ani-auto config --set-output ~/videos/anime
|
|
88
|
-
ani-auto config --set-interval
|
|
102
|
+
ani-auto config --set-interval 120
|
|
103
|
+
ani-auto config --set-airing-buffer 5
|
|
89
104
|
ani-auto config --open
|
|
90
105
|
```
|
|
91
106
|
|