-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
155 lines (136 loc) · 3.59 KB
/
electron-builder.yml
File metadata and controls
155 lines (136 loc) · 3.59 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# Electron Builder Configuration
# See: https://www.electron.build/configuration/configuration
appId: com.numisync.wizard
productName: NumiSync Wizard
executableName: NumiSyncWizard
copyright: Copyright 2026 Shane Burkhardt
# Directories
directories:
output: dist
buildResources: build
# Files to include in the app
files:
- src/**/*
- package.json
- node_modules/**/*
- "!node_modules/*/{CHANGELOG.md,README.md,readme.md,test,__tests__,tests,*.md}"
- "!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}"
- "!**/._*"
- "!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}"
# Extra resources (accessible via process.resourcesPath)
extraResources:
- from: EULA.txt
to: EULA.txt
# Windows-specific configuration
win:
target:
- target: nsis
arch:
- x64
icon: build/icon.ico
artifactName: NumiSync-Wizard-Setup.${ext}
# NSIS installer configuration
nsis:
oneClick: false
perMachine: false
allowToChangeInstallationDirectory: true
createDesktopShortcut: true
createStartMenuShortcut: true
shortcutName: NumiSync Wizard
uninstallDisplayName: NumiSync Wizard
license: build/eula/eula-windows.rtf
include: build/installer.nsh
installerIcon: build/icon.ico
uninstallerIcon: build/icon.ico
installerHeaderIcon: build/icon.ico
deleteAppDataOnUninstall: false
# ============================================
# MICROSOFT STORE CONFIGURATION (MSIX)
# ============================================
appx:
# Identity - must be unique in Microsoft Store
identityName: ShaneBurkhardt.NumiSyncWizard
publisher: CN=63DF2FB3-6EDC-4553-939D-B99BBA2EDAE8 # From Microsoft Partner Center
publisherDisplayName: Shane Burkhardt
displayName: NumiSync Wizard
# Application settings
applicationId: NumiSyncWizard
backgroundColor: transparent
showNameOnTiles: true
# Target Windows 10 version 1809 or later (required by Microsoft Store)
minVersion: "10.0.17763.0"
maxVersionTested: "10.0.22621.0"
# Languages
languages:
- en-US
# Force .msix extension (required for Microsoft Store code signing)
artifactName: NumiSync-Wizard.msix
# ============================================
# LINUX CONFIGURATION
# ============================================
linux:
target:
- target: AppImage
arch: [x64]
- target: deb
arch: [x64]
- target: rpm
arch: [x64]
artifactName: numisync-wizard-${arch}.${ext}
icon: build/icons
category: Utility
synopsis: Enrich your OpenNumismat collection with Numista data
description: >
NumiSync Wizard helps coin collectors enrich their OpenNumismat
database with pricing and catalog information from Numista.
deb:
depends:
- libgtk-3-0
- libnotify4
- libnss3
- libxss1
- libxtst6
- xdg-utils
- libatspi2.0-0
- libuuid1
- libsecret-1-0
rpm:
depends:
- gtk3
- libnotify
- nss
- libXScrnSaver
- libXtst
- xdg-utils
- at-spi2-core
- libuuid
appImage:
license: EULA.txt
# ============================================
# MACOS CONFIGURATION (Unsigned)
# ============================================
mac:
target:
- target: dmg
arch: [x64, arm64]
icon: build/icon.icns
category: public.app-category.utilities
dmg:
artifactName: NumiSync-Wizard-${arch}.dmg
contents:
- x: 130
y: 220
- x: 410
y: 220
type: link
path: /Applications
# Publish configuration for auto-updates (GitHub releases)
publish:
- provider: github
owner: inguy24
repo: Numisync-Wizard
releaseType: release
# asar packaging for better performance
asar: true
asarUnpack:
- "**/*.node"