-
Notifications
You must be signed in to change notification settings - Fork 14
/
electron-builder.yml
51 lines (46 loc) · 1.17 KB
/
electron-builder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
productName: "Eve Reader"
appId: "github.com/xianmin/EveReader"
artifactName: ${name}-${version}-${os}-${arch}.${ext}
icon: "./public/icon.png"
fileAssociations:
- ext: "epub"
name: "Epub"
description: "Epub Ebook"
role: "Viewer"
asar: true
mac:
icon: "./public/icon.png"
category: public.app-category.productivity
darkModeSupport: true
target:
- { target: dmg }
dmg:
icon: "./public/icon.png"
iconSize: 128
contents:
- { x: 380, y: 240, type: link, path: /Applications }
- { x: 122, y: 240, type: file }
linux:
icon: "./public/icon.png"
executableName: "eve-reader"
description: "An elegant open-source Epub Reader, focused on annotation."
maintainer: "Chen Xianmin"
category: "Viewer;Office;Utility"
executableArgs:
- "%f"
mimeTypes:
- "application/epub+zip"
target:
- target: "AppImage"
- target: "deb"
win:
icon: "./public/icon.png"
requestedExecutionLevel: "asInvoker"
target:
- { target: nsis }
nsis:
artifactName: ${name}-${version}-windows-${arch}-nsis-installer.${ext}
oneClick: false
perMachine: false
allowToChangeInstallationDirectory: true
include: "./scripts/electron-builder/installer.nsh"