All checks were successful
Build & Release / build (push) Successful in 2m27s
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
154 lines
4.4 KiB
TypeScript
154 lines
4.4 KiB
TypeScript
import { MakerAppX } from "@electron-forge/maker-appx";
|
|
import { MakerDeb } from "@electron-forge/maker-deb";
|
|
import { MakerFlatpak } from "@electron-forge/maker-flatpak";
|
|
import { MakerFlatpakOptionsConfig } from "@electron-forge/maker-flatpak/dist/Config";
|
|
import { MakerSquirrel } from "@electron-forge/maker-squirrel";
|
|
import { MakerZIP } from "@electron-forge/maker-zip";
|
|
import { FusesPlugin } from "@electron-forge/plugin-fuses";
|
|
import { VitePlugin } from "@electron-forge/plugin-vite";
|
|
import type { ForgeConfig } from "@electron-forge/shared-types";
|
|
import { FuseV1Options, FuseVersion } from "@electron/fuses";
|
|
|
|
// import { globSync } from "node:fs";
|
|
|
|
const STRINGS = {
|
|
author: "MiTHRAL",
|
|
name: "Sanctum",
|
|
execName: "sanctum",
|
|
description: "Private self-hosted chat for mithraic.space.",
|
|
};
|
|
|
|
const ASSET_DIR = "assets/desktop";
|
|
|
|
// PLATFORM env var controls which makers are active:
|
|
// unset → local dev (all makers)
|
|
// linux → CI Linux build (deb + zip)
|
|
// win32 → CI Windows build (zip only, no Wine needed)
|
|
const CI_PLATFORM = process.env.PLATFORM;
|
|
|
|
const makers: ForgeConfig["makers"] = [
|
|
new MakerZIP({}),
|
|
];
|
|
|
|
if (CI_PLATFORM === "linux") {
|
|
makers.push(
|
|
new MakerDeb({
|
|
options: {
|
|
productName: STRINGS.name,
|
|
productDescription: STRINGS.description,
|
|
categories: ["Network"],
|
|
icon: `${ASSET_DIR}/icon.png`,
|
|
},
|
|
}),
|
|
);
|
|
}
|
|
|
|
if (!CI_PLATFORM) {
|
|
// local dev: include everything
|
|
makers.push(
|
|
new MakerSquirrel({
|
|
name: STRINGS.name,
|
|
authors: STRINGS.author,
|
|
iconUrl: `https://mithraic.space/app/assets/icon-DUSNE-Pb.ico`,
|
|
setupIcon: `${ASSET_DIR}/icon.ico`,
|
|
description: STRINGS.description,
|
|
exe: `${STRINGS.execName}.exe`,
|
|
setupExe: `${STRINGS.execName}-setup.exe`,
|
|
copyright: `Copyright (C) 2025 ${STRINGS.author}`,
|
|
}),
|
|
new MakerAppX({
|
|
certPass: "",
|
|
packageExecutable: `app\\${STRINGS.execName}.exe`,
|
|
publisher: "CN=B040CC7E-0016-4AF5-957F-F8977A6CFA3B",
|
|
}),
|
|
new MakerFlatpak({
|
|
options: {
|
|
id: "cloud.mithraic.sanctum",
|
|
description: STRINGS.description,
|
|
productName: STRINGS.name,
|
|
productDescription: STRINGS.description,
|
|
runtimeVersion: "25.08",
|
|
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"],
|
|
modules: [
|
|
{
|
|
name: "zypak",
|
|
sources: [
|
|
{
|
|
type: "git",
|
|
url: "https://github.com/refi64/zypak",
|
|
tag: "v2025.09",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
finishArgs: [
|
|
"--socket=fallback-x11",
|
|
"--share=ipc",
|
|
"--device=dri",
|
|
"--socket=pulseaudio",
|
|
"--filesystem=home",
|
|
"--env=TMPDIR=/var/tmp",
|
|
"--share=network",
|
|
"--talk-name=org.freedesktop.Notifications",
|
|
"--talk-name=com.canonical.Unity",
|
|
],
|
|
files: [],
|
|
} as MakerFlatpakOptionsConfig,
|
|
}),
|
|
new MakerDeb({
|
|
options: {
|
|
productName: STRINGS.name,
|
|
productDescription: STRINGS.description,
|
|
categories: ["Network"],
|
|
icon: `${ASSET_DIR}/icon.png`,
|
|
},
|
|
}),
|
|
);
|
|
}
|
|
|
|
const config: ForgeConfig = {
|
|
packagerConfig: {
|
|
asar: true,
|
|
name: STRINGS.name,
|
|
executableName: STRINGS.execName,
|
|
icon: `${ASSET_DIR}/icon`,
|
|
},
|
|
rebuildConfig: {},
|
|
makers,
|
|
plugins: [
|
|
new VitePlugin({
|
|
build: [
|
|
{
|
|
entry: "src/main.ts",
|
|
config: "vite.main.config.ts",
|
|
target: "main",
|
|
},
|
|
{
|
|
entry: "src/preload.ts",
|
|
config: "vite.preload.config.ts",
|
|
target: "preload",
|
|
},
|
|
],
|
|
renderer: [],
|
|
}),
|
|
new FusesPlugin({
|
|
version: FuseVersion.V1,
|
|
[FuseV1Options.RunAsNode]: false,
|
|
[FuseV1Options.EnableCookieEncryption]: true,
|
|
[FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false,
|
|
[FuseV1Options.EnableNodeCliInspectArguments]: false,
|
|
[FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true,
|
|
[FuseV1Options.OnlyLoadAppFromAsar]: true,
|
|
}),
|
|
],
|
|
};
|
|
|
|
export default config;
|