Skip to content

Commit

Permalink
Several fixes and enhancements before release
Browse files Browse the repository at this point in the history
  • Loading branch information
junebug12851 committed Sep 9, 2018
1 parent c4e5e8f commit 8dbfe65
Show file tree
Hide file tree
Showing 63 changed files with 475 additions and 265 deletions.
23 changes: 23 additions & 0 deletions base.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
appId: "com.gmail.junehanabi.pokered-save-editor"
productName: "Pokered Save Editor"
copyright: "Copyright © 2018 June Hanabi"

directories:
buildResources: "dist"
output: "build"

files:
- "./dist/**/*"
- "./main.js"
- "!**/node_modules/@angular/**/*"
- "!**/node_modules/@angular-devkit/**/*"
- "!**/node_modules/@angular-types/**/*"
- "!**/node_modules/@fortawesome/**/*"
- "!**/node_modules/core-js/**/*"
- "!**/node_modules/hammerjs/**/*"
- "!**/node_modules/jquery/**/*"
- "!**/node_modules/ng-cli-pug-loader/**/*"
- "!**/node_modules/rxjs/**/*"
- "!**/node_modules/rxjs-compat/**/*"
- "!**/node_modules/sortablejs/**/*"
- "!**/node_modules/zone.js/**/*"
7 changes: 5 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
limitations under the License.
*/
const { app, BrowserWindow } = require('electron');
const Store = require('electron-store')
const store = new Store()

const path = require("path");

let win;
Expand All @@ -30,8 +33,8 @@ function createWindow() {
const { screen } = require('electron');

win = new BrowserWindow({
width: screen.getPrimaryDisplay().workAreaSize.width * .85,
height: screen.getPrimaryDisplay().workAreaSize.height * .85,
width: screen.getPrimaryDisplay().workAreaSize.width,
height: screen.getPrimaryDisplay().workAreaSize.height,
show: false,
simpleFullscreen: true,
webPreferences: {
Expand Down
58 changes: 39 additions & 19 deletions package-lock.json

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

Loading

0 comments on commit 8dbfe65

Please sign in to comment.