Skip to content

Commit

Permalink
Merge pull request #2827 from LiskHQ/notarizing
Browse files Browse the repository at this point in the history
Add notarization - Closes #2828
  • Loading branch information
reyraa authored Mar 24, 2020
2 parents 4e8edab + a079b89 commit ed8d2e9
Show file tree
Hide file tree
Showing 9 changed files with 753 additions and 203 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ test/cypress/screenshots/
test/cypress/videos/
.history
storybook-static
.env

## Commercial fonts
src/assets/fonts/basier-circle/*
Expand Down
1 change: 0 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ pipeline {
fi
npm run --silent build
npm run --silent build:testnet
npm run --silent bundlesize
npm run install-electron-dependencies
USE_SYSTEM_XORRISO=true npm run dist:linux
Expand Down
3 changes: 2 additions & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "lisk-desktop",
"version": "1.25.0",
"productName": "Lisk",
"description": "Lisk",
"main": "./build/main.js",
"author": {
Expand All @@ -10,7 +11,7 @@
"dependencies": {
"get-port": "^4.1.0",
"node-abi": "^2.7.1",
"node-hid": "0.7.9",
"node-hid": "^1.2.0",
"usb": "^1.6.2"
}
}
2 changes: 1 addition & 1 deletion app/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ app.on('ready', () => {
appIsReady = true;
createWindow();
if (process.platform === 'win32') {
app.setAppUserModelId('io.lisk.desktop');
app.setAppUserModelId('io.lisk.hub');
}
});

Expand Down
1 change: 1 addition & 0 deletions app/src/modules/win.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const win = {
backgroundThrottling: false,
// Specifies a script that will be loaded before other scripts run in the page.
preload: path.resolve(__dirname, '../src/ipc.js'),
nodeIntegration: true,
},
});

Expand Down
Binary file added build/background@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions build/entitlements.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?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-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.files.user-selected.read-only</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
</dict>
</plist>
Loading

0 comments on commit ed8d2e9

Please sign in to comment.