-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.yml
48 lines (48 loc) · 998 Bytes
/
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
appId: com.yourcompany.streamsage
productName: StreamSage
directories:
output: dist
buildResources: build
files:
- "**/*"
- "!**/*.{o,hprof,orig,pyc,pyo,rbc}"
extraResources:
- from: StreamSage
to: StreamSage
filter:
- "**/*"
- from: ${env.PYTHON_PATH}
to: python
mac:
category: public.app-category.productivity
target:
- dmg
- zip
extraFiles:
- from: ${env.PYTHON_PATH}
to: Resources/python
extendInfo:
NSAppTransportSecurity:
NSAllowsArbitraryLoads: true
NSMicrophoneUsageDescription: StreamSage requires microphone access for audio recording.
NSAppleEventsUsageDescription: StreamSage requires Apple Events permissions for text-to-speech functionality.
linux:
target:
- AppImage
- deb
- rpm
win:
target:
- nsis
- portable
config:
devTools: false
electronDownload:
arch: arm64
extraMetadata:
main: src/main.js
nsis:
oneClick: true
perMachine: false
afterPack: "./after-pack.js"
asar: true