v0.3.2 - 2026-08-05
🚀 新功能
- 完善 Web 与 PC 的多设备协同:任务可在设备间远程下发执行,同一账号多设备/多标签页同时打开时状态与进度实时保持一致,不再各行其是
- 本机服务新增局域网访问支持:可在「设置 > 安全」查看并切换本机在局域网中的可用地址,多网卡时自动列出可选项;同时新增「允许任意网页跨域访问」开关,解决部分网站(如网页版 aria2 探测)识别不到 FluxDown 的问题(默认关闭,开启前请阅读风险提示)
- 已完成任务对应的文件在磁盘上被删除或移走后,可选择保留任务记录(便于重新下载)或自动清除记录;管理栏新增「清理失效任务」,支持批量清理
- 新增一键分类目录:可将各分类的保存目录批量设为默认下载目录下的同名子文件夹,也可一键清除;Web 端新建下载时的分类保存路径与桌面端行为保持一致
- RSS 订阅条目标题过长被省略号截断时,鼠标悬浮即可查看完整标题
🐛 问题修复
- 修复部分厂商(如腾讯云 COS)返回的 Content-Disposition 文件名带多余引号,导致 Windows 上文件名被替换为下划线的问题
- 默认下载目录改为通过系统 API 获取(Windows/Linux/macOS 各自的标准下载目录),用户在系统里修改过下载文件夹位置后,服务器能正确识别,不再固定写回旧路径
v0.3.2 - 2026-08-05
🚀 Features
- Improved multi-device sync between Web and PC: tasks can be dispatched to run on a remote device, and when the same account is open on multiple devices or browser tabs at once, task status and progress now stay consistent instead of drifting out of sync
- Added LAN access support for the local server: the Security settings page now shows and lets you switch the address FluxDown is reachable at on your local network, with automatic detection when multiple network interfaces are present; also added an "allow cross-origin requests from any page" toggle to fix cases where some websites (e.g. web-based aria2 detection) can't find FluxDown (off by default — read the risk notice before enabling)
- When a completed task's file is deleted or moved on disk, you can now choose to keep the task record (so it can be re-downloaded) or have it removed automatically; the manage bar gained a "Clean up missing-file tasks" action for batch cleanup
- Added one-click category folders: set every category's save directory to a matching subfolder under the default download directory in one click, or clear them all; the Web app's category save path now matches desktop behavior
- Hovering over a truncated RSS item title now shows the full text instead of requiring you to widen the window
🐛 Bug Fixes
- Fixed filenames from Content-Disposition headers sent by some providers (e.g. Tencent Cloud COS) carrying stray quote marks, which caused filenames to be mangled into underscores on Windows
- The default download directory is now resolved through the OS's own API (the standard Downloads folder on Windows/Linux/macOS), so the server correctly picks up a relocated Downloads folder instead of always writing back to the old path
📦 直接下载运行(免 Docker)
| 平台 | 资产 |
|---|---|
| Windows x64 / ARM64 | FluxDown-Server-0.3.2-windows-{x64,arm64}.zip
|
| macOS Intel / Apple Silicon | FluxDown-Server-0.3.2-macos-{x64,arm64}.tar.gz
|
| Linux x64 / ARM64(musl 静态链接,任意发行版可用) | FluxDown-Server-0.3.2-linux-{x64,arm64}.tar.gz
|
| OpenWrt 软路由(x86_64 / aarch64 各子架构) | fluxdown-server_0.3.2_<arch>.ipk + luci-app-fluxdown_0.3.2_all.ipk
|
| QNAP NAS(QTS x86_64 / ARM64) | FluxDown-Server-0.3.2-qnap-{x64,arm64}.qpkg
|
| 群晖 NAS(DSM 7 / DSM 6,x86_64 / ARM64) | FluxDown-Server-0.3.2-synology-{dsm7,dsm6}-{x64,arm64}.spk
|
解压后直接运行 fluxdown-server(Windows 为 fluxdown-server.exe),浏览器访问 http://127.0.0.1:17800。
单文件分发:Web 控制台已编译进二进制,包内只有可执行文件本身,无需附带任何静态资源目录。
首次启动请在浏览器里完成「初始化 FluxDown Server」向导设置访问密钥(无人值守部署可用 FLUXDOWN_TOKEN 预置)。文件校验见 SHA256SUMS.txt。
OpenWrt:opkg install fluxdown-server_*.ipk luci-app-fluxdown_*.ipk,LuCI「服务 → FluxDown」页管理,Web 界面在 http://路由器IP:17800。二进制含完整 Web UI(约 30MB),需 overlay 空间充足的软路由设备。
QNAP:App Center → 手动安装 .qpkg(需在设置中允许安装未经验证的应用),装完点应用图标直达 Web 界面。
群晖:套件中心 → 手动安装 .spk(需在「设置 → 信任来源」允许任何发行者)。DSM 7.x 装 dsm7 包(以套件专属用户运行),DSM 6.x 装 dsm6 包;Intel/AMD 机型选 x64,ARM 机型(rtd1296/rtd1619b 等)选 arm64。装完在套件中心点「打开」直达 Web 界面(端口 17800)。
🐳 Docker(linux/amd64 · linux/arm64)
docker pull ghcr.io/zerx-lab/fluxdown-server:0.3.2
docker run -d -p 17800:17800 -v fluxdown-data:/data \
ghcr.io/zerx-lab/fluxdown-server:0.3.2Compose 部署见仓库 docker/docker-compose.yml。首次打开 Web 界面时按向导设置访问密钥,或用 -e FLUXDOWN_TOKEN=... 预置。