This commit is contained in:
crusader 2018-10-03 01:03:36 +09:00
parent 989236fe1a
commit 69454d0047
12 changed files with 19 additions and 36 deletions

Binary file not shown.

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -13,12 +13,7 @@
}, },
"files": [ "files": [
{ {
"filter": [ "filter": ["**/*", "!*.ts", "!*.scss", "!yarn.lock"],
"**/*",
"!*.ts",
"!*.scss",
"!yarn.lock"
],
"from": "./build/dist/", "from": "./build/dist/",
"to": "." "to": "."
}, },
@ -30,9 +25,7 @@
"to": "./bin/database.sqlite" "to": "./bin/database.sqlite"
}, },
{ {
"filter": [ "filter": ["**/*"],
"**/*"
],
"from": "config/build/${os}/icon/", "from": "config/build/${os}/icon/",
"to": "./icon/" "to": "./icon/"
} }
@ -41,10 +34,7 @@
"target": [ "target": [
{ {
"target": "deb", "target": "deb",
"arch": [ "arch": ["ia32", "x64"]
"ia32",
"x64"
]
} }
], ],
"executableName": "overFlow-NetworkScanner", "executableName": "overFlow-NetworkScanner",
@ -59,53 +49,46 @@
] ]
}, },
"deb": { "deb": {
"depends": [ "depends": ["libpcap0.8"],
"libpcap0.8"
],
"afterInstall": "config/build/linux/after-install.tpl" "afterInstall": "config/build/linux/after-install.tpl"
}, },
"mac": { "mac": {
"category": "public.app-category.utilities", "category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-${arch}.${ext}", "artifactName": "${productName}-${version}-${arch}.${ext}",
"minimumSystemVersion": "10.12.0", "minimumSystemVersion": "10.12.0",
"extendInfo": "config/build/darwin/Info.plist", "extendInfo": "config/build/mac/Info.plist",
"icon": "config/build/darwin/icon/icon.icns", "icon": "config/build/mac/icon/overflow_1024.icns",
"target": [ "target": ["dmg"],
"dmg"
],
"extraFiles": [ "extraFiles": [
{ {
"from": "build/nrfjprog/unpacked/nrfjprog", "from": "config/build/mac/bin/probe-${os}-${arch}",
"to": "Frameworks", "to": "./bin/probe"
"filter": "*.dylib"
} }
] ]
}, },
"dmg": { "dmg": {
"icon": null, "icon": null,
"iconSize": 160, "iconSize": 150,
"contents": [ "contents": [
{
"x": 180,
"y": 170
},
{ {
"x": 480, "x": 480,
"y": 170, "y": 240,
"type": "link", "type": "link",
"path": "/Applications" "path": "/Applications"
},
{
"x": 130,
"y": 240,
"type": "file"
} }
], ],
"background": "config/build/darwin/icon/macos-installer-bg.tiff" "background": "config/build/mac/icon/background/background.png"
}, },
"win": { "win": {
"target": [ "target": [
{ {
"target": "nsis", "target": "nsis",
"arch": [ "arch": ["x64", "ia32"]
"x64",
"ia32"
]
} }
], ],
"legalTrademarks": "overFlow", "legalTrademarks": "overFlow",
@ -122,4 +105,4 @@
"artifactName": "${productName} Setup ${version}.${ext}", "artifactName": "${productName} Setup ${version}.${ext}",
"menuCategory": "overFlow" "menuCategory": "overFlow"
} }
} }