feat: add desktop repo (#1071)
14
packages/desktop/build/entitlements.mac.inherit.plist
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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.cs.allow-jit</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.disable-library-validation</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
packages/desktop/build/icon.icns
Executable file
BIN
packages/desktop/build/icon.ico
Executable file
|
After Width: | Height: | Size: 361 KiB |
BIN
packages/desktop/build/icon.iconset/icon_128x128.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
packages/desktop/build/icon.iconset/icon_128x128@2x.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
packages/desktop/build/icon.iconset/icon_16x16.png
Normal file
|
After Width: | Height: | Size: 503 B |
BIN
packages/desktop/build/icon.iconset/icon_16x16@2x.png
Normal file
|
After Width: | Height: | Size: 853 B |
BIN
packages/desktop/build/icon.iconset/icon_256x256.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
packages/desktop/build/icon.iconset/icon_256x256@2x.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
packages/desktop/build/icon.iconset/icon_32x32.png
Normal file
|
After Width: | Height: | Size: 853 B |
BIN
packages/desktop/build/icon.iconset/icon_32x32@2x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
packages/desktop/build/icon.iconset/icon_512x512.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
packages/desktop/build/icon.iconset/icon_512x512@2x.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
packages/desktop/build/icon/Icon-512x512.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
7
packages/desktop/build/installer.nsh
Normal file
@@ -0,0 +1,7 @@
|
||||
!macro customInit
|
||||
; Delete any previous uninstall registry key to ensure the installer doesn't hang at 30%
|
||||
; https://github.com/electron-userland/electron-builder/issues/4057#issuecomment-557570476
|
||||
; https://github.com/electron-userland/electron-builder/issues/4092
|
||||
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{${UNINSTALL_APP_KEY}}"
|
||||
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${UNINSTALL_APP_KEY}"
|
||||
!macroend
|
||||