From 6a58c53e8050457d140f35316c035f160007173f Mon Sep 17 00:00:00 2001 From: Zalko <88582103+Zalk0@users.noreply.github.com> Date: Fri, 30 Aug 2024 17:36:00 +0200 Subject: [PATCH] fix: linux icon and category When putting Audio as the Linux category for the app, we need to add AudioVideo so that it goes in the good category in the app menu. It's best to generate the Linux icons from the macOS format as the png is bugged and doesn't generate the icon properly for the deb package. --- bin/build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/build.js b/bin/build.js index 5f01714..97cf076 100644 --- a/bin/build.js +++ b/bin/build.js @@ -23,9 +23,9 @@ const config = { icon: join(__dirname, '..', 'src', 'img', 'app.ico'), }, linux: { - category: 'Audio', + category: 'Audio;AudioVideo', target: ['snap', 'deb', 'AppImage'], - icon: join(__dirname, '..', 'src', 'img', 'app.png'), + icon: join(__dirname, '..', 'src', 'img', 'app.icns'), }, files: [ '!src/*',