• v3.3.64 3573c6860a

    Administrator released this 2026-06-10 16:53:05 +02:00 | 113 commits to master since this release

    The network-outage auto-pause from 3.3.59 is REMOVED entirely. It false-positived on real servers and froze running batches with 'Netzwerk-Ausfall — pausiert' even though the network was fine, leaving thousands of jobs stuck at 'Wartet' with 0 connections until app restart.

    Root cause of the false positive: the connectivity probe used dns.resolve(), which queries DNS servers directly via c-ares and BYPASSES the Windows system resolver. On locked-down servers (filtered DNS, VPN setups) those direct queries fail permanently while actual uploads — which use the OS resolver via dns.lookup() — work fine. Two failed probes closed the gate; since the probe could never succeed on such machines, the gate never reopened. Heavy uplink saturation during 5-hoster uploads could also time out the 5s probes and trigger the same freeze mid-batch.

    Removed completely: the DNS probe loop, the network gate in the upload manager (job-start hold + retry hold), the 'Netzwerk-Ausfall — pausiert' status, and the pause/resume toasts. Upload behavior is back to exactly how it was before 3.3.59: transient network errors retry on the same account without blacklisting it, nothing ever holds the queue.

    Unaffected and still active: Discord/webhook notifications (incl. ping + retry), auto-retry rounds after batch end (default off), and all other 3.3.59-3.3.63 features.

    Downloads