Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions _scripts/ebuilder.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ export default {
}
},
linux: {
category: 'Network',
category: 'AudioVideo;Video;Player;Feed;Network',
icon: '_icons/icon.svg',
target: ['deb', 'zip', '7z', 'rpm', 'AppImage', 'pacman'],
target: ['deb', 'zip', '7z', 'rpm', 'AppImage', 'pacman'], // 'flatpak'],
},
// See the following issues for more information
// https://github.com/jordansissel/fpm/issues/1503
Expand All @@ -76,6 +76,31 @@ export default {
toolsets: {
appimage: '1.0.3'
},

// NOTE: this exists purely for local development builds, we will not provide support for flatpaks built this way!
// This is here if unofficial builds need to be made
/*
Comment on lines +80 to +82

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would also be good to mention that the args and versions listed here are just examples and that the source of truth is the flathub flatpak repo. That avoids us having to update the comment here whenever the flathub side changes.

flatpak: {
// install flatpak builder
// install electron app from flathub. Ex: flatpak install flathub org.electronjs.Electron2.BaseApp/x86_64/25.08
finishArgs: [
'--device=dri',
'--share=ipc',
'--socket=wayland',
'--socket=fallback-x11',
'--socket=pulseaudio',
'--share=network',
'--own-name=org.mpris.MediaPlayer2.chromium.*',
'--own-name=org.mpris.MediaPlayer2.freetube',
'--talk-name=org.freedesktop.PowerManagement',
'--talk-name=org.freedesktop.ScreenSaver',
'--talk-name=org.gnome.SessionManager',
'--talk-name=org.gnome.SettingsDaemon'
],
runtimeVersion: '25.08',
baseVersion: '25.08',
},
*/
mac: {
category: 'public.app-category.utilities',
icon: '_icons/iconMac.icns',
Expand Down