Skip to content

RClone Manager Headless v0.2.9

Choose a tag to compare

@github-actions github-actions released this 11 Jul 09:44

v0.2.9 — 2026-07-10

A big one: native context menu integration across all three platforms, five new Rclone operations, manual obscure support, and early librclone support for mobile targets.

✨ Highlights

  • 🖱️ System file manager integration: right-click any file/folder to upload straight to a remote, on Windows, Linux, and macOS
  • ⚙️ 5 new Rclone operations: check, delete, copyurl, archivecreate, cryptcheck, with a dedicated results table
  • 🔐 Built-in Obscure Tool: encrypt credentials without leaving the app
  • 📱 Librclone (beta): early Android/iOS support with DNS-over-HTTPS and deeplink OAuth

Added

Context Menu Integration (#80)
Register paths from the File Browser to add them to your system's right-click menu for direct remote uploads. See the integrations wiki for setup.

  • Windows: cascading "RClone Manager" submenu (Upload to [Remote]) plus Send To shortcuts
  • Linux: GNOME Nautilus Python extensions (with shell-script fallback), KDE Dolphin service menus, Nemo actions
  • macOS: Finder Quick Actions via Automator workflows
  • CLI: new --send-to-remote / --send-to-path flags for triggering uploads from context menus or custom scripts, with strict argument validation
  • Integrations are fully cleaned up on uninstall or manual path unregistration

Operations Support
Added check, delete, copyurl, archivecreate, and cryptcheck, with a new Action Selection Modal to trigger them from the UI. check and cryptcheck results (differences, missing files, errors) now show in a dedicated Check Results table in the transfer activity panel, backed by Rust-side output parsing.

Manual Obscure Support (#237)
New Obscure Tool in the remote config wizard. Enter cleartext credentials and generate obscured values via Rclone's native obscure function, then apply them directly to form fields or copy to clipboard.

image

Librclone Support (Beta)
Initial support for librclone on Android/iOS. When enabled, app/Rclone auto-updates and local process management are disabled in favor of remote instances and local servers.

  • Android NDK cross-compilation for aarch64, armv7, x86_64, 386 plus a new GitHub Actions build workflow
  • DNS-over-HTTPS resolver on Android, proxying queries to Cloudflare/Google over port 443 to work around Android's port-53 restriction (platform docs)

Deeplink Support
rclone-manager:// URI scheme to auto-focus the app from the browser and other releated places.
Example usage for browser Auth Remotes, Requires Rclone 1.75 Beta+:

image

Other

  • New DMG installer background

Changed

  • Upgraded to Angular v22, TypeScript v6.0, ngx-translate v18; migrated TranslateModule to a standalone, signal-driven TranslatePipe
  • Updated Rust crate constraints (tower-http, notify); pinned sysinfo and keyring for compatibility
  • Updated static flags (#242)

Fixed

  • Strict ESLint compliance: eliminated unsafe ! assertions, added explicit return types, enforced @typescript-eslint/no-non-null-assertion and explicit-function-return-type
  • DirCacheTime no longer defaults to an overloaded 1000h value
  • Rclone Flags modal now correctly saves numeric values (e.g. Transfers) (#240)
  • Windows paths in the remote config wizard now handled correctly (#238)