From 24ade5bf2189b7fad7f2a053ed9527a6f752995e Mon Sep 17 00:00:00 2001 From: Tim Sinaeve Date: Fri, 17 Oct 2025 16:52:52 +0200 Subject: [PATCH] Add ARM Linux targets for Raspberry Pi support --- package.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 200d37a..ca9cc90 100644 --- a/package.json +++ b/package.json @@ -77,7 +77,20 @@ "icon": "assets/icon.icns" }, "linux": { - "target": "AppImage", + "target": [ + { + "target": "AppImage", + "arch": ["x64", "arm64", "armv7l"] + }, + { + "target": "deb", + "arch": ["x64", "arm64", "armv7l"] + }, + { + "target": "tar.gz", + "arch": ["x64", "arm64", "armv7l"] + } + ], "icon": "assets/icon.png" } }