From f00dd68a4df1215c96df1bc8055da0b87719a9e6 Mon Sep 17 00:00:00 2001 From: FTCHD <144691102+FTCHD@users.noreply.github.com> Date: Sat, 1 Nov 2025 20:06:53 +0100 Subject: [PATCH] update WinFsp Signed-off-by: FTCHD <144691102+FTCHD@users.noreply.github.com> --- lib/rclone/mount.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rclone/mount.ts b/lib/rclone/mount.ts index 13dc680..5d134f8 100644 --- a/lib/rclone/mount.ts +++ b/lib/rclone/mount.ts @@ -56,7 +56,7 @@ export async function dialogGetMountPlugin() { if (currentPlatform === 'windows') { // download winfsp const wantsDownload = await ask( - "WinFsp is required on Windows to mount remotes. You can continue the operation once you're done with the installation.", + 'WinFsp is required on Windows to mount remotes. You can continue the operation once you\'re done with the installation.\n\nIf you still see this message, download the WinFsp installer from Github and make sure you toggle "FUSE for Cygwin" during the installation process.', { title: 'WinFsp not installed', kind: 'warning', @@ -66,7 +66,7 @@ export async function dialogGetMountPlugin() { ) if (wantsDownload) { const winFspInstallerUrl = - 'https://github.com/winfsp/winfsp/releases/download/v2.0/winfsp-2.0.23075.msi' + 'https://github.com/winfsp/winfsp/releases/download/v2.1/winfsp-2.1.25156.msi' const localPath = `${await downloadDir()}/winfsp-installer.msi` const installer = await (await fetch(winFspInstallerUrl)).arrayBuffer() await writeFile(localPath, new Uint8Array(installer))