123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- const path = require('path')
- const fs = require('fs')
- module.exports = {
- packagerConfig: {
- name: 'Logseq',
- icon: './icons/logseq_big_sur.icns',
- buildVersion: "87",
- appBundleId: "com.logseq.logseq",
- protocols: [
- {
- "protocol": "logseq",
- "name": "logseq",
- "schemes": "logseq"
- }
- ],
- osxSign: {
- identity: 'Developer ID Application: Tiansheng Qin',
- 'hardened-runtime': true,
- entitlements: 'entitlements.plist',
- 'entitlements-inherit': 'entitlements.plist',
- 'signature-flags': 'library'
- },
- osxNotarize: process.env['APPLE_ID'] ? {
- tool: 'notarytool',
- appleId: process.env['APPLE_ID'],
- appleIdPassword: process.env['APPLE_ID_PASSWORD'],
- teamId: process.env['APPLE_TEAM_ID']
- } : undefined,
- },
- makers: [
- {
- 'name': '@electron-forge/maker-squirrel',
- 'config': {
- 'name': 'Logseq',
- 'setupIcon': './icons/logseq.ico',
- 'loadingGif': './icons/installing.gif',
- 'certificateFile': process.env.CODE_SIGN_CERTIFICATE_FILE,
- 'certificatePassword': process.env.CODE_SIGN_CERTIFICATE_PASSWORD,
- "rfc3161TimeStampServer": "http://timestamp.digicert.com"
- }
- },
- {
- 'name': '@electron-forge/maker-wix',
- 'config': {
- name: 'Logseq',
- icon: path.join(__dirname, './icons/logseq.ico'),
- language: 1033,
- manufacturer: 'Logseq',
- appUserModelId: 'com.logseq.logseq',
- upgradeCode: "3778eb84-a0ce-4109-9120-5d4315e0d7de",
- ui: {
- enabled: false,
- chooseDirectory: true,
- images: {
- banner: path.join(__dirname, './windows/banner.jpg'),
- background: path.join(__dirname, './windows/background.jpg')
- },
- },
- // Standard WiX template appends the unsightly "(Machine - WSI)" to the name, so use our own template
- beforeCreate: (msiCreator) => {
- return new Promise((resolve, reject) => {
- fs.readFile(path.join(__dirname,"./windows/wix.xml"), "utf8" , (err, content) => {
- if (err) {
- reject (err);
- }
- msiCreator.wixTemplate = content;
- resolve();
- });
- });
- }
- }
- },
- {
- name: '@electron-forge/maker-dmg',
- config: {
- format: 'ULFO',
- icon: './icons/logseq_big_sur.icns',
- name: 'Logseq'
- }
- },
- {
- name: '@electron-forge/maker-zip',
- platforms: ['darwin', 'linux', 'win32'],
- },
- {
- name: 'electron-forge-maker-appimage',
- platforms: ['linux'],
- config: {
- mimeType: ["x-scheme-handler/logseq"]
- }
- }
- ],
- publishers: [
- {
- name: '@electron-forge/publisher-github',
- config: {
- repository: {
- owner: 'logseq',
- name: 'logseq'
- },
- prerelease: true
- }
- }
- ]
- }
|