update electron to v43

This commit is contained in:
olcxja 2026-07-09 22:38:33 +02:00
commit fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions

View file

@ -0,0 +1,22 @@
import { Arch } from "builder-util";
import { Target } from "../core";
import { LinuxPackager } from "../linuxPackager";
import { LinuxTargetSpecificOptions } from "../options/linuxOptions";
import { LinuxTargetHelper } from "./LinuxTargetHelper";
export default class FpmTarget extends Target {
private readonly packager;
private readonly helper;
readonly outDir: string;
readonly options: LinuxTargetSpecificOptions;
private readonly scriptFiles;
constructor(name: string, packager: LinuxPackager, helper: LinuxTargetHelper, outDir: string);
private createScripts;
checkOptions(): Promise<any>;
private computeFpmMetaInfoOptions;
build(appOutDir: string, arch: Arch): Promise<any>;
private executeFpm;
private supportsAutoUpdate;
private getDefaultDepends;
private getDefaultRecommends;
private configureTargetSpecificOptions;
}