Skip to content

Commit

Permalink
Merge pull request #1380 from 4ian/feature/notarization-macos
Browse files Browse the repository at this point in the history
Enable notarization on macos
  • Loading branch information
4ian authored Jan 16, 2020
2 parents dc97600 + adbcef8 commit b65aed4
Show file tree
Hide file tree
Showing 10 changed files with 1,115 additions and 719 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# Build GDevelop IDE
- run:
name: Build GDevelop IDE
command: cd newIDE/electron-app && npm run build -- --mac --win --linux tar.gz --publish=never
command: cd newIDE/electron-app && npm run build -- --mac zip --win --linux tar.gz --publish=never

- run:
name: Clean dist folder to keep only installers/binaries.
Expand Down
11 changes: 11 additions & 0 deletions newIDE/electron-app/.env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copy this file and rename it to ".env" and complete it.

# Fill the following variables for macOS notarization.
#
# Generate your "app-specific password" on appleid.apple.com
#
# See https://medium.com/@TwitterArchiveEraser/notarize-electron-apps-7a5f988406db
# and https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/
# for more information about notarization.
APPLEID=
APPLEIDPASS=
168 changes: 78 additions & 90 deletions newIDE/electron-app/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions newIDE/electron-app/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gdevelop",
"productName": "GDevelop 5",
"description": "GDevelop 5 IDE running on the Electron runtime",
"version": "5.0.0-beta87",
"version": "5.0.0-beta88",
"author": "Florian Rival",
"license": "MIT",
"homepage": "http://gdevelop-app.com",
Expand All @@ -15,7 +15,7 @@
"electron-editor-context-menu": "^1.1.1",
"electron-is": "^2.4.0",
"electron-log": "^2.2.14",
"electron-updater": "^2.18.2",
"electron-updater": "4.2.0",
"fs-extra": "^3.0.1",
"jimp": "^0.2.28",
"live-server": "^1.2.0",
Expand Down
12 changes: 12 additions & 0 deletions newIDE/electron-app/build/entitlements.mac.inherit.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?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/>
</dict>
</plist>
Loading

0 comments on commit b65aed4

Please sign in to comment.