From 1faa718a879bb13705745a5276decf73ecedd6fa Mon Sep 17 00:00:00 2001 From: Janos Miko Date: Mon, 18 May 2026 09:05:38 +0200 Subject: [PATCH 1/2] lfk: Add version 0.12.0 --- bucket/lfk.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bucket/lfk.json diff --git a/bucket/lfk.json b/bucket/lfk.json new file mode 100644 index 00000000000000..745a17184b7f4d --- /dev/null +++ b/bucket/lfk.json @@ -0,0 +1,37 @@ +{ + "version": "0.12.0", + "description": "Lightning Fast Kubernetes navigator - keyboard-focused TUI for managing K8s clusters", + "homepage": "https://github.com/janosmiko/lfk", + "license": "Apache-2.0", + "architecture": { + "64bit": { + "url": "https://github.com/janosmiko/lfk/releases/download/v0.12.0/lfk_0.12.0_windows_amd64.zip", + "hash": "339a590ef33be2e6bc97614a8755fa14e35b44e2ce2a2b6fa96f6955dc5571e3" + }, + "arm64": { + "url": "https://github.com/janosmiko/lfk/releases/download/v0.12.0/lfk_0.12.0_windows_arm64.zip", + "hash": "1753dd0fe47217cbb295b4117f2f6a0cb4458f5732795eba69b69cb9fddac665" + } + }, + "bin": "lfk.exe", + "env_set": { + "LFK_CONFIG_DIR": "$persist_dir/config", + "LFK_STATE_DIR": "$persist_dir/state", + "LFK_DATA_DIR": "$persist_dir/data" + }, + "checkver": "github", + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/janosmiko/lfk/releases/download/v$version/lfk_$version_windows_amd64.zip" + }, + "arm64": { + "url": "https://github.com/janosmiko/lfk/releases/download/v$version/lfk_$version_windows_arm64.zip" + } + }, + "hash": { + "url": "$baseurl/checksums.txt", + "regex": "$sha256 $basename\\n" + } + } +} From 9c7570609e4caa83d19efaf25d7c7949785db7ef Mon Sep 17 00:00:00 2001 From: Janos Miko Date: Mon, 18 May 2026 09:35:29 +0200 Subject: [PATCH 2/2] lfk: order env_set before bin per the contributing guide --- bucket/lfk.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucket/lfk.json b/bucket/lfk.json index 745a17184b7f4d..d1fea036867d51 100644 --- a/bucket/lfk.json +++ b/bucket/lfk.json @@ -13,12 +13,12 @@ "hash": "1753dd0fe47217cbb295b4117f2f6a0cb4458f5732795eba69b69cb9fddac665" } }, - "bin": "lfk.exe", "env_set": { "LFK_CONFIG_DIR": "$persist_dir/config", "LFK_STATE_DIR": "$persist_dir/state", "LFK_DATA_DIR": "$persist_dir/data" }, + "bin": "lfk.exe", "checkver": "github", "autoupdate": { "architecture": {