From 1540c62d3aad05ac01584301fc734bb315f49e81 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sun, 24 May 2026 21:40:03 -0400 Subject: [PATCH] scheduler: smart auto-scroll replaces separate scroll lock checkbox; lidarr: allow single-seed candidates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auto Scroll now pauses automatically when user scrolls up and resumes when they reach the bottom — no separate Scroll Lock needed. Lidarr discovery no longer hard-skips single-seed candidates; they score low on breadth but can still reach threshold on merit. --- Media/playback_aware_lidarr_discovery.sh | 6 --- .../plugins/varaverk/pages/scheduler.php | 39 +++++++------------ 2 files changed, 14 insertions(+), 31 deletions(-) diff --git a/Media/playback_aware_lidarr_discovery.sh b/Media/playback_aware_lidarr_discovery.sh index 9c18854..c1454c9 100755 --- a/Media/playback_aware_lidarr_discovery.sh +++ b/Media/playback_aware_lidarr_discovery.sh @@ -571,12 +571,6 @@ for candidate in "${!CANDIDATE_SCORE[@]}"; do days_ago=0 fi - if (( seed_count < 2 )); then - log " $ICON_SKIP Single-seed candidate skipped: $candidate" - REJECT_LIST+=("0|${candidate}|${seed_count}|0|single-seed skip") - continue - fi - affinity_s=$(_affinity_score "$raw_score") breadth_s=$(_breadth_score "$seed_count") diff --git a/Plugin/usr/local/emhttp/plugins/varaverk/pages/scheduler.php b/Plugin/usr/local/emhttp/plugins/varaverk/pages/scheduler.php index 9164991..e7a4ebd 100644 --- a/Plugin/usr/local/emhttp/plugins/varaverk/pages/scheduler.php +++ b/Plugin/usr/local/emhttp/plugins/varaverk/pages/scheduler.php @@ -177,12 +177,9 @@ foreach ($tree as $orch) {
-