Merge 17c83ece15 into f79b113da1
This commit is contained in:
commit
e2ba5240f2
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.security.device.audio-input</key>
|
||||
<true/>
|
||||
<key>com.apple.security.device.camera</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
@ -125,6 +125,15 @@ const config: ForgeConfig = {
|
|||
name: STRINGS.name,
|
||||
executableName: STRINGS.execName,
|
||||
icon: `${ASSET_DIR}/icon`,
|
||||
osxSign: {
|
||||
|
||||
optionsForFile: (filePath) => {
|
||||
return {
|
||||
entitlements: './entitlements.plist'
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// extraResource: [
|
||||
// // include all the asset files
|
||||
// ...globSync(ASSET_DIR + "/**/*"),
|
||||
|
|
|
|||
Loading…
Reference in New Issue