Skip to content

Commit 2a7cd39

Browse files
committed
Fixed packaing issue & Added Electron-dl
1 parent 87953d1 commit 2a7cd39

File tree

2 files changed

+30
-22
lines changed

2 files changed

+30
-22
lines changed

Diff for: app/main.js

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ const app_is_dev = require('electron-is-dev');
1717
const path = require('path');
1818
const fs = require('fs');
1919

20+
//Electron DL
21+
require('electron-dl')();
22+
2023
// Main Application Window
2124
let mainWindow
2225

Diff for: app/package.json

+27-22
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
{
2-
"name": "Ionic-Creator",
3-
"productName": "Ionic Creator",
4-
"version": "1.0.2",
5-
"description": "Electron web app for the Ionic creator.",
6-
"private": true,
7-
"main": "main.js",
8-
"author": "[MEADOW_DEV] <[email protected]> (http://twitter.com/Meadowcottage13)",
9-
"license": "GNU General Public License",
10-
"homepage": "https://github.com/meadowcottage/Ionic-Creator/",
11-
"keywords": [
12-
"Electron",
13-
"Ionic-Creator",
14-
"Prototyping",
15-
"Creator"
16-
],
17-
"bugs": {
18-
"url": "https://github.com/meadowcottage/Ionic-Creator/issues/"
19-
},
20-
"repository": {
21-
"type": "git",
22-
"url": "git+https://github.com/meadowcottage/Ionic-Creator.git"
23-
}
2+
"name": "Ionic-Creator",
3+
"productName": "Ionic Creator",
4+
"version": "1.0.2",
5+
"description": "Electron web app for the Ionic creator.",
6+
"private": true,
7+
"main": "main.js",
8+
"author": "[MEADOW_DEV] <[email protected]> (http://twitter.com/Meadowcottage13)",
9+
"license": "GNU General Public License",
10+
"homepage": "https://github.com/meadowcottage/Ionic-Creator/",
11+
"keywords": [
12+
"Electron",
13+
"Ionic-Creator",
14+
"Prototyping",
15+
"Creator"
16+
],
17+
"bugs": {
18+
"url": "https://github.com/meadowcottage/Ionic-Creator/issues/"
19+
},
20+
"repository": {
21+
"type": "git",
22+
"url": "git+https://github.com/meadowcottage/Ionic-Creator.git"
23+
},
24+
"dependencies": {
25+
"electron-config": "^0.2.1",
26+
"electron-dl": "^1.3.0",
27+
"electron-is-dev": "^0.1.2"
28+
}
2429
}

0 commit comments

Comments
 (0)