mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
c5283ab14a
* Upgrade Electron to 8, bump Node version, fix font-manager * Specify nodeIntegration as true * Get <webview> working again * Get <webview> working again * Electron 9.0 * Escape parens in plugin install exec path (newer Electron added them) * Bump versions for first alpha * Electron 9.1 * Convert all Electron APIs that switched from callback to Promise * Fix send-and-download feature * Remove user-agent override hack for OAuth 2 login window * Bump alpha version * Fix issue regarding chokidar * Add package-lock.json * Upgrade chokidar because @babel/cli uses an older incompatible version of fsevents * Fix source maps * Read .nvmrc in GitHub actions * Address remaining PR feedback * Use Designer release env for Core * Bump version * Add signing requirements for new cert (attempt #1) * Fix config * Fix release script * Fix whitelist cert * Try updating cert checksum again * Remove darkModeSupport option * Revert version bump
84 lines
1.6 KiB
JSON
84 lines
1.6 KiB
JSON
{
|
|
"appId": "__APP_ID__",
|
|
"publish": null,
|
|
"afterSign": "./scripts/afterSignHook.js",
|
|
"extraResources": [
|
|
{
|
|
"from": "./bin",
|
|
"to": "./bin",
|
|
"filter": "yarn-standalone.js"
|
|
},
|
|
{
|
|
"from": "./build",
|
|
"to": ".",
|
|
"filter": "opensource-licenses.txt"
|
|
}
|
|
],
|
|
"protocols": [
|
|
{
|
|
"name": "Insomnia",
|
|
"role": "Viewer",
|
|
"schemes": [
|
|
"insomnia"
|
|
]
|
|
}
|
|
],
|
|
"fileAssociations": [],
|
|
"directories": {
|
|
"app": "build",
|
|
"output": "dist"
|
|
},
|
|
"mac": {
|
|
"hardenedRuntime": true,
|
|
"category": "public.app-category.developer-tools",
|
|
"entitlements": "./build/static/entitlements.mac.inherit.plist",
|
|
"requirements": "./build/static/signing-requirements.txt",
|
|
"artifactName": "__BINARY_PREFIX__-${version}.${ext}",
|
|
"target": [
|
|
"dmg",
|
|
"zip"
|
|
],
|
|
"extendInfo": {
|
|
"NSRequiresAquaSystemAppearance": false
|
|
}
|
|
},
|
|
"dmg": {
|
|
"window": {
|
|
"width": 540,
|
|
"height": 380
|
|
},
|
|
"contents": [
|
|
{
|
|
"x": 130,
|
|
"y": 186
|
|
},
|
|
{
|
|
"x": 409,
|
|
"y": 186,
|
|
"type": "link",
|
|
"path": "/Applications"
|
|
}
|
|
]
|
|
},
|
|
"win": {
|
|
"icon": "./build/icon.ico",
|
|
"target": [
|
|
"squirrel",
|
|
"zip"
|
|
]
|
|
},
|
|
"squirrelWindows": {
|
|
"artifactName": "__BINARY_PREFIX__-${version}.${ext}",
|
|
"iconUrl": "__ICON_URL__"
|
|
},
|
|
"linux": {
|
|
"artifactName": "__BINARY_PREFIX__-${version}.${ext}",
|
|
"executableName": "__EXECUTABLE_NAME__",
|
|
"synopsis": "__SYNOPSIS__",
|
|
"category": "Development",
|
|
"target": [
|
|
"AppImage"
|
|
]
|
|
}
|
|
}
|