fix: flatpak icons not building correctly and wayland support (#132)
This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us>
This commit is contained in:
+9
-2
@@ -59,7 +59,14 @@ if (!process.env.PLATFORM) {
|
|||||||
productName: STRINGS.name,
|
productName: STRINGS.name,
|
||||||
productDescription: STRINGS.description,
|
productDescription: STRINGS.description,
|
||||||
runtimeVersion: "25.08",
|
runtimeVersion: "25.08",
|
||||||
icon: `${ASSET_DIR}/icon.png`,
|
icon: {
|
||||||
|
"16x16": `${ASSET_DIR}/hicolor/16x16.png`,
|
||||||
|
"32x32": `${ASSET_DIR}/hicolor/32x32.png`,
|
||||||
|
"64x64": `${ASSET_DIR}/hicolor/64x64.png`,
|
||||||
|
"128x128": `${ASSET_DIR}/hicolor/128x128.png`,
|
||||||
|
"256x256": `${ASSET_DIR}/hicolor/256x256.png`,
|
||||||
|
"512x512": `${ASSET_DIR}/hicolor/512x512.png`,
|
||||||
|
} as unknown,
|
||||||
categories: ["Network"],
|
categories: ["Network"],
|
||||||
modules: [
|
modules: [
|
||||||
// use the latest zypak -- Electron sandboxing for Flatpak
|
// use the latest zypak -- Electron sandboxing for Flatpak
|
||||||
@@ -77,7 +84,7 @@ if (!process.env.PLATFORM) {
|
|||||||
finishArgs: [
|
finishArgs: [
|
||||||
// default arguments found by running
|
// default arguments found by running
|
||||||
// DEBUG=electron-installer-flatpak* pnpm make
|
// DEBUG=electron-installer-flatpak* pnpm make
|
||||||
"--socket=x11",
|
"--socket=fallback-x11",
|
||||||
"--share=ipc",
|
"--share=ipc",
|
||||||
"--device=dri",
|
"--device=dri",
|
||||||
"--socket=pulseaudio",
|
"--socket=pulseaudio",
|
||||||
|
|||||||
Reference in New Issue
Block a user