Skip to content

Commit

Permalink
work on installers and icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilian committed Jun 23, 2018
1 parent 2ad8416 commit a9e8158
Show file tree
Hide file tree
Showing 22 changed files with 7 additions and 18,957 deletions.
2 changes: 1 addition & 1 deletion app/main.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ app.on('ready', () => {
const windowSettings = {
show: false,
title: app.getName(),
icon: path.join(__dirname, 'assets/img/icon.png'),
icon: path.join(__dirname, './assets/img/icon.png'),
x: (windowState.bounds && windowState.bounds.x) || undefined,
y: (windowState.bounds && windowState.bounds.y) || undefined,
width: (windowState.bounds && windowState.bounds.width) || 550,
Expand Down
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": "FromScratch",
"version": "1.4.0",
"description": "simple autosaving scratchpad",
"main": "main.prod.js",
"main": "./main.prod.js",
"repository": {
"type": "git",
"url": "https://github.com/kilian/fromscratch/"
Expand Down
1 change: 0 additions & 1 deletion internals/scripts/CheckBuiltsExist.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// @flow
// Check if the renderer and main bundles are built
import path from 'path';
import chalk from 'chalk';
Expand Down
1 change: 0 additions & 1 deletion internals/scripts/CheckNativeDep.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// @flow
import fs from 'fs';
import chalk from 'chalk';
import { execSync } from 'child_process';
Expand Down
1 change: 0 additions & 1 deletion internals/scripts/CheckNodeEnv.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// @flow
import chalk from 'chalk';

export default function CheckNodeEnv(expectedEnv: string) {
Expand Down
1 change: 0 additions & 1 deletion internals/scripts/ElectronRebuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// @flow
import path from 'path';
import { execSync } from 'child_process';
import fs from 'fs';
Expand Down
Loading

0 comments on commit a9e8158

Please sign in to comment.