From e4852f4c229e14ed3068ed95042c4ac11c672f45 Mon Sep 17 00:00:00 2001 From: AgentSeal Date: Fri, 17 Jul 2026 21:53:27 +0200 Subject: [PATCH] desktop: ship .deb and .rpm for Linux, surface all download targets The AppImage-only Linux build hit users with a no-application-installed error on double-click, because AppImages do not self-register and need chmod plus libfuse2 on newer distros. Add deb and rpm electron-builder targets so Linux users get a native install that lands in the app menu with no manual steps; the deb ships a .desktop entry for exactly that. README hero grid now lists Debian/.deb, Fedora/.rpm, and AppImage alongside the macOS and Windows buttons, and the desktop release notes explain the deb/rpm path plus the AppImage FUSE requirement. --- README.md | 4 +++- app/package.json | 16 +++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f169267f..ee71e3ba 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,10 @@ CodeBurn Desktop
Download for macOS (Apple Silicon) Download for macOS (Intel) - Download for Linux Download for Windows + Download for Linux (.deb) + Download for Linux (.rpm) + Download for Linux (AppImage) Web
diff --git a/app/package.json b/app/package.json index 124c2d94..05572d84 100644 --- a/app/package.json +++ b/app/package.json @@ -107,6 +107,18 @@ "arch": [ "x64" ] + }, + { + "target": "deb", + "arch": [ + "x64" + ] + }, + { + "target": "rpm", + "arch": [ + "x64" + ] } ], "category": "Development", @@ -114,5 +126,7 @@ "maintainer": "AgentSeal ", "executableName": "codeburn" } - } + }, + "homepage": "https://github.com/getagentseal/codeburn", + "author": "AgentSeal " }