Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a3513021c | ||
|
|
26d85a9d73 |
@@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
- always bump up the VERSION unless its changes to Dockerfile, *.md files
|
||||||
|
- always document changes in simple CHANGELOG.md unless modifiing Dockerfile, *.md, VERSION
|
||||||
|
- when needed you may install any tools using pip if the project reqires it
|
||||||
|
- you can freely acces any LAN URL and github.com URL.
|
||||||
|
- always update README.md to reflect current project.
|
||||||
|
- always commit changes with commentary
|
||||||
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.46.2 - 2026-07-09
|
||||||
|
|
||||||
|
- Changed the backup downloader setting on the Config page from a hard-to-spot select field into a dedicated checkbox toggle so the enable/disable control is clearly visible.
|
||||||
|
|
||||||
## 0.46.1 - 2026-07-09
|
## 0.46.1 - 2026-07-09
|
||||||
|
|
||||||
- Added a Config-page backup download toggle that lets queue jobs retry failed `ani-cli` downloads automatically with `anikoto-cli`.
|
- Added a Config-page backup download toggle that lets queue jobs retry failed `ani-cli` downloads automatically with `anikoto-cli`.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Local web UI for a system-wide `ani-cli` install.
|
Local web UI for a system-wide `ani-cli` install.
|
||||||
|
|
||||||
Current version: `0.46.1`
|
Current version: `0.46.2`
|
||||||
|
|
||||||
## What it does
|
## What it does
|
||||||
|
|
||||||
|
|||||||
+8
-7
@@ -503,11 +503,12 @@ CONFIG_HTML = r"""<!doctype html>
|
|||||||
<option value="480">480p</option>
|
<option value="480">480p</option>
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
<label>Backup downloader
|
</div>
|
||||||
<select id="downloadBackupEnabled">
|
<div class="stack">
|
||||||
<option value="false">Disabled</option>
|
<label>Backup downloader</label>
|
||||||
<option value="true">Enabled</option>
|
<label class="check-item" for="downloadBackupEnabled">
|
||||||
</select>
|
<input id="downloadBackupEnabled" type="checkbox">
|
||||||
|
<span>Retry failed `ani-cli` downloads with `anikoto-cli`</span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="field-hint">Tip: these are the saved defaults only. The active search form can still be adjusted per download. When backup downloads are enabled, failed `ani-cli` jobs retry automatically with `anikoto-cli`.</div>
|
<div class="field-hint">Tip: these are the saved defaults only. The active search form can still be adjusted per download. When backup downloads are enabled, failed `ani-cli` jobs retry automatically with `anikoto-cli`.</div>
|
||||||
@@ -740,7 +741,7 @@ CONFIG_HTML = r"""<!doctype html>
|
|||||||
download_dir: $("downloadDir").value,
|
download_dir: $("downloadDir").value,
|
||||||
mode: $("configMode").value,
|
mode: $("configMode").value,
|
||||||
quality: $("configQuality").value,
|
quality: $("configQuality").value,
|
||||||
download_backup_enabled: $("downloadBackupEnabled").value === "true",
|
download_backup_enabled: $("downloadBackupEnabled").checked,
|
||||||
watchlist_auto_refresh_enabled: $("watchlistAutoRefreshEnabled").value === "true",
|
watchlist_auto_refresh_enabled: $("watchlistAutoRefreshEnabled").value === "true",
|
||||||
watchlist_auto_refresh_minutes: $("watchlistAutoRefreshMinutes").value,
|
watchlist_auto_refresh_minutes: $("watchlistAutoRefreshMinutes").value,
|
||||||
watchlist_refresh_delay_seconds: $("watchlistRefreshDelaySeconds").value,
|
watchlist_refresh_delay_seconds: $("watchlistRefreshDelaySeconds").value,
|
||||||
@@ -760,7 +761,7 @@ CONFIG_HTML = r"""<!doctype html>
|
|||||||
$("downloadDir").value = data.download_dir;
|
$("downloadDir").value = data.download_dir;
|
||||||
$("configMode").value = data.mode;
|
$("configMode").value = data.mode;
|
||||||
$("configQuality").value = data.quality;
|
$("configQuality").value = data.quality;
|
||||||
$("downloadBackupEnabled").value = String(Boolean(data.download_backup_enabled));
|
$("downloadBackupEnabled").checked = Boolean(data.download_backup_enabled);
|
||||||
$("watchlistAutoRefreshEnabled").value = String(Boolean(data.watchlist_auto_refresh_enabled));
|
$("watchlistAutoRefreshEnabled").value = String(Boolean(data.watchlist_auto_refresh_enabled));
|
||||||
$("watchlistAutoRefreshMinutes").value = data.watchlist_auto_refresh_minutes;
|
$("watchlistAutoRefreshMinutes").value = data.watchlist_auto_refresh_minutes;
|
||||||
$("watchlistRefreshDelaySeconds").value = data.watchlist_refresh_delay_seconds;
|
$("watchlistRefreshDelaySeconds").value = data.watchlist_refresh_delay_seconds;
|
||||||
|
|||||||
Reference in New Issue
Block a user