Short note on what shipped in Arroxy over the past month, plus what’s next. Arroxy is a free, open-source desktop YouTube downloader built on yt-dlp; this is what’s changed lately.
Released this month
- Auto-updater stabilised. Resolved a regression where the auto-updater would occasionally fail to download the new binary on Windows and silently retry forever. The fix lives in the
electron-updaterflow; users on 0.3.3+ get the new version automatically when 0.3.4 ships. - Tray-mode fixes. Closing the window now correctly keeps active downloads running in the background on Windows and Linux. Previously a race condition could orphan the queue when the renderer process tore down before the main process saved state.
- Winget delivery polished. The Winget pipeline now publishes the new manifest within minutes of a stable release. The microsoft/winget-pkgs PR is opened automatically by
vedantmgoyal9/winget-releaseron every tag — reviewers merge within hours-to-a-day. - Binary analytics improvements. Telemetry around which managed-binary strategy resolved at runtime (managed yt-dlp, system PATH, env override) now feeds back into reliability reporting. Telemetry is off by default and opt-in only.
- Landing page rebuilt on Astro. The site at https://arroxy.orionus.dev/ moved from a hand-rolled template build to Astro. Same content, faster builds, real Markdown blog posts (this one included), and structured data (FAQ schema, Organization schema, BlogPosting schema, BreadcrumbList) for both Google and AI search engines.
- 30+ app comparison post. Published Best YouTube downloaders in 2026: 30+ apps compared. If you’re trying to pick between Arroxy, Stacher, Tartube, ClipGrab, 4K Video Downloader, and the rest, that’s the rundown.
yt-dlp keeps shipping fixes
Arroxy auto-fetches the latest yt-dlp binary at runtime. That matters because YouTube and other supported sites keep changing their extraction surfaces, and yt-dlp’s maintainers ship fixes within hours.
In practice this means: when YouTube changes something — a new player version, a tweaked nsig algorithm, a renamed signature — yt-dlp’s nightly build picks it up first, and your installed Arroxy fetches it the next time you start the app. You don’t have to wait for an Arroxy app release.
This is also why we bundle ffmpeg + ffprobe at build time but don’t bundle yt-dlp. ffmpeg’s API is stable and its codec semantics don’t change between releases on a useful timescale; yt-dlp’s extractor logic changes daily. Mixing those two cadences into a single Arroxy release would either slow ffmpeg fixes down or force yt-dlp updates to wait on a full app build.
What’s next
- Channel subscription / auto-download-new-uploads. One-shot channel batch download (paste a channel URL → grab every video) works today via yt-dlp. What’s missing is the recurring “watch this channel and auto-pull new uploads” feature — the most-requested gap versus 4K Video Downloader Plus and Stacher. Roadmap target: Q3 2026.
- Better playlist UX. Bulk-select, filter by duration, and skip-already-downloaded across runs.
- More localised blog content. This post is English-only at launch; translations to the 20 other supported languages roll out as the i18n contract workflow catches up.
Track everything on GitHub Issues and Releases.