Skip to content

Commit

Permalink
fix: linux icon and category
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Zalk0 authored Aug 30, 2024
1 parent 73f8acb commit 6a58c53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/*',
Expand Down

0 comments on commit 6a58c53

Please sign in to comment.