Skip to content

Commit

Permalink
Fixed Linux builder
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercordero committed Sep 27, 2016
1 parent 5ccfcb3 commit 46f21e8
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .directory
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[Dolphin]
Timestamp=2016,9,27,1,22,0
Version=3

[Settings]
HiddenFilesShown=true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist/**
**/.directory
Binary file modified build/icon.icns
Binary file not shown.
Binary file modified build/icon.ico
100755 → 100644
Binary file not shown.
Binary file modified build/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@
"postinstall": "install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start",
"dist": "npm run dist:osx && npm run dist:linux && npm run dist:win32 && npm run dist:win64",
"dist:osx": "build --platform darwin",
"dist": "npm run dist:win && npm run dist:linux && npm run dist:osx",
"dist:winux": "npm run dist:win && npm run dist:linux",
"dist:linux": "build --platform linux",
"dist:osx": "build --platform darwin",
"dist:win": "npm run dist:win64 && npm run dist:win32",
"dist:win32": "build --platform win32 --arch ia32",
"dist:win64": "build --platform win32 --arch x64",
Expand All @@ -54,8 +55,12 @@
"icon": "build/icon.icns"
},
"linux": {
"target": [ "AppImage", "deb", "rpm", "apk", "tar.gz" ],
"depends": ["libappindicator1", "libnotify-bin"]
"target": [ "AppImage", "deb", "rpm", "pacman", "freebsd" ],
"depends": ["libappindicator1", "libnotify-bin"],
"synopsis": "The most complete and professional free software teleprompter app on the web.",
"description": "Professional grade teleprompter software. Built with web technologies so anyone can customize it. Features include: mirroring, dual-screen support, rich text editing, image support, custom styles, tablet mode, webcam mode, auto-save and accelerated graphics.",
"category": "Video",
"packageCategory": "Video"
},
"compression": "maximum"
}
Expand Down

0 comments on commit 46f21e8

Please sign in to comment.