From d3c68508720027e852df9ccfddcfb8020c5c3af5 Mon Sep 17 00:00:00 2001 From: Daniel Paul <40488825+danielpauldd@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:39:06 +0200 Subject: [PATCH 1/3] hfs3: Add version 0.53.1 --- bucket/hfs3.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bucket/hfs3.json diff --git a/bucket/hfs3.json b/bucket/hfs3.json new file mode 100644 index 00000000000000..462753b030e7ac --- /dev/null +++ b/bucket/hfs3.json @@ -0,0 +1,37 @@ +{ + "homepage": "https://www.rejetto.com/hfs/", + "description": "HFS is a web file server to run on your computer. Share folders or even a single file thanks to the virtual file system.", + "license": "GPL-3.0", + "version": "0.53.1", + "url": "https://github.com/rejetto/hfs/releases/download/v0.53.1/hfs-windows-x64-0.53.1.zip", + "hash": "0103c3c55db66bb0c5de862ec87749c8ed92f1c67e0407636eb7115bc15f4ccc", + "pre_install": "if (!(Test-Path \"$persist_dir\\config.yaml\")) { New-Item \"$dir\\config.yaml\" | Out-Null }", + "bin": [ + [ + "hfs.exe", + "hfs3", + "--cwd $dir" + ], + [ + "hfs.exe", + "hfs", + "--cwd $dir" + ] + ], + "shortcuts": [ + [ + "hfs.exe", + "HFS 3", + "--cwd $dir" + ] + ], + "persist": [ + "config.yaml", + "logs", + "plugins" + ], + "checkver": "github", + "autoupdate": { + "url": "https://github.com/rejetto/hfs/releases/download/v$version/hfs-windows-x64-$version.zip" + } +} From c469e1eb4ca032f7ce201cec27fcbf6d7956d569 Mon Sep 17 00:00:00 2001 From: Daniel Paul <40488825+danielpauldd@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:47:16 +0200 Subject: [PATCH 2/3] hfs3: add version 0.53.1 changed homepage back to github, otherwise checkver will not work. --- bucket/hfs3.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucket/hfs3.json b/bucket/hfs3.json index 462753b030e7ac..e3f1a091d0eba1 100644 --- a/bucket/hfs3.json +++ b/bucket/hfs3.json @@ -1,5 +1,5 @@ { - "homepage": "https://www.rejetto.com/hfs/", + "homepage": "https://github.com/rejetto/hfs", "description": "HFS is a web file server to run on your computer. Share folders or even a single file thanks to the virtual file system.", "license": "GPL-3.0", "version": "0.53.1", From 45a9dbdc6d89299c376fd4093512f183bd833cab Mon Sep 17 00:00:00 2001 From: Hsiao-nan Cheung Date: Sun, 16 Feb 2025 18:58:28 +0800 Subject: [PATCH 3/3] Tweak manifest --- bucket/hfs.json | 38 ++++++++++++++++++++++++++++++++++++++ bucket/hfs3.json | 37 ------------------------------------- 2 files changed, 38 insertions(+), 37 deletions(-) create mode 100644 bucket/hfs.json delete mode 100644 bucket/hfs3.json diff --git a/bucket/hfs.json b/bucket/hfs.json new file mode 100644 index 00000000000000..cdc064c0614ee2 --- /dev/null +++ b/bucket/hfs.json @@ -0,0 +1,38 @@ +{ + "version": "0.55.4", + "description": "A web file server to run on your computer", + "homepage": "https://rejetto.com/hfs", + "license": "GPL-3.0-or-later", + "architecture": { + "64bit": { + "url": "https://github.com/rejetto/hfs/releases/download/v0.55.4/hfs-windows-x64-0.55.4.zip", + "hash": "ef8d53e2b3779ddf18510109f9c2bf55fe72cae10295f4b02c7ae450334d5f59" + } + }, + "pre_install": "if (!(Test-Path \"$persist_dir\\config.yaml\")) { New-Item \"$dir\\config.yaml\" | Out-Null }", + "bin": [ + [ + "hfs.exe", + "hfs", + "--cwd $dir" + ] + ], + "shortcuts": [ + [ + "hfs.exe", + "HFS", + "--cwd $dir" + ] + ], + "persist": [ + "config.yaml", + "logs", + "plugins" + ], + "checkver": { + "github": "https://github.com/rejetto/hfs" + }, + "autoupdate": { + "url": "https://github.com/rejetto/hfs/releases/download/v$version/hfs-windows-x64-$version.zip" + } +} diff --git a/bucket/hfs3.json b/bucket/hfs3.json deleted file mode 100644 index e3f1a091d0eba1..00000000000000 --- a/bucket/hfs3.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "homepage": "https://github.com/rejetto/hfs", - "description": "HFS is a web file server to run on your computer. Share folders or even a single file thanks to the virtual file system.", - "license": "GPL-3.0", - "version": "0.53.1", - "url": "https://github.com/rejetto/hfs/releases/download/v0.53.1/hfs-windows-x64-0.53.1.zip", - "hash": "0103c3c55db66bb0c5de862ec87749c8ed92f1c67e0407636eb7115bc15f4ccc", - "pre_install": "if (!(Test-Path \"$persist_dir\\config.yaml\")) { New-Item \"$dir\\config.yaml\" | Out-Null }", - "bin": [ - [ - "hfs.exe", - "hfs3", - "--cwd $dir" - ], - [ - "hfs.exe", - "hfs", - "--cwd $dir" - ] - ], - "shortcuts": [ - [ - "hfs.exe", - "HFS 3", - "--cwd $dir" - ] - ], - "persist": [ - "config.yaml", - "logs", - "plugins" - ], - "checkver": "github", - "autoupdate": { - "url": "https://github.com/rejetto/hfs/releases/download/v$version/hfs-windows-x64-$version.zip" - } -}