Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Merge with develop
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Apr 26, 2017
2 parents c304d0d + 7f8e78d commit 59df333
Show file tree
Hide file tree
Showing 3 changed files with 861 additions and 793 deletions.
11 changes: 9 additions & 2 deletions gulpTasks/building.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ gulp.task('clean-dist', (cb) => {

gulp.task('copy-app-source-files', () => {
return gulp.src([
'node_modules/**',
'./main.js',
'./clientBinaries.json',
'./modules/**',
Expand Down Expand Up @@ -107,13 +108,13 @@ gulp.task('build-dist', (cb) => {
homepage: 'https://github.com/ethereum/mist',
build: {
appId: `com.ethereum.${type}`,
category: 'public.app-category.productivity',
asar: true,
directories: {
buildResources: '../build',
output: '../dist'
},
linux: {
category: 'WebBrowser',
target: [
'zip',
'deb'
Expand All @@ -124,6 +125,9 @@ gulp.task('build-dist', (cb) => {
'zip'
]
},
mac: {
category: 'public.app-category.productivity',
},
dmg: {
background: '../build/dmg-background.jpg',
iconSize: 128,
Expand Down Expand Up @@ -171,6 +175,9 @@ gulp.task('build-dist', (cb) => {
}
}
})
.catch((err) => {
throw new Error(err);
})
.finally(() => {
cb();
});
Expand Down Expand Up @@ -202,7 +209,7 @@ gulp.task('release-dist', (done) => {
break;
case 'mac':
cp(
path.join('mac', `${applicationName}-${version}.dmg`), `${appNameHypen}-macosx-${versionDashed}.dmg`);
`${applicationName}-${version}.dmg`, `${appNameHypen}-macosx-${versionDashed}.dmg`);
break;
case 'linux':
cp(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"del": "^2.2.2",
"ecstatic": "^2.1.0",
"electron": "1.3.13",
"electron-builder": "^12.2.2",
"electron-builder": "^17.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
Expand Down
Loading

0 comments on commit 59df333

Please sign in to comment.