Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
bump to 0.1.0, and add some fixes for building releases
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Aug 10, 2016
1 parent 3704ffe commit f25576f
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "beaker-browser",
"productName": "Beaker Browser",
"description": "A highly opinionated and standards-noncompliant browser.",
"version": "0.0.1",
"version": "0.1.0",
"author": "Paul Frazee",
"copyright": "© 2016, Paul Frazee",
"main": "background-process.build.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"yargs": "^4.2.0"
},
"optionalDependencies": {
"appdmg": "^0.3.2",
"appdmg": "^0.4.5",
"rcedit": "^0.5.0"
},
"scripts": {
Expand Down
Binary file modified resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/osx/dmg-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/osx/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/osx/dmg-icon.icns
Binary file not shown.
Binary file modified resources/osx/icon.icns
Binary file not shown.
2 changes: 1 addition & 1 deletion tasks/release/linux.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var copyRuntime = function () {
var packageBuiltApp = function () {
var deferred = Q.defer();

asar.createPackageWithOptions(projectDir.path('build'), readyAppDir.path('resources/app.asar'), {
asar.createPackageWithOptions(projectDir.path('app'), readyAppDir.path('resources/app.asar'), {
dot: true
}, function () {
deferred.resolve();
Expand Down
2 changes: 1 addition & 1 deletion tasks/release/osx.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var cleanupRuntime = function () {
var packageBuiltApp = function () {
var deferred = Q.defer();

asar.createPackageWithOptions(projectDir.path('build'), finalAppDir.path('Contents/Resources/app.asar'), {
asar.createPackageWithOptions(projectDir.path('app'), finalAppDir.path('Contents/Resources/app.asar'), {
dot: true
}, function () {
deferred.resolve();
Expand Down
2 changes: 1 addition & 1 deletion tasks/release/windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var cleanupRuntime = function () {
var packageBuiltApp = function () {
var deferred = Q.defer();

asar.createPackageWithOptions(projectDir.path('build'), readyAppDir.path('resources/app.asar'), {
asar.createPackageWithOptions(projectDir.path('app'), readyAppDir.path('resources/app.asar'), {
dot: true
}, function () {
deferred.resolve();
Expand Down

0 comments on commit f25576f

Please sign in to comment.