Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
.dist
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,19 @@ A stylish new Controller app for the Logitech Media Server.
![home](http://i.imgur.com/jK9F1Fq.png)
![settings](http://i.imgur.com/KPeGhrP.png)
![filter](http://i.imgur.com/NPCEaWw.png)

### Build

Fetch all dependencies with

```bash
$ npm install
```

and build packages with

```
$ npm run dist
```

You can find the packages in the `dist/` directory afterwards.
43 changes: 38 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,43 @@
"version": "0.1.0-alpha.13",
"main": "main.js",
"license": "MIT",
"author": "Michael Lehenauer <lehenauer.m@gmail.com>",
"email": "lehenauer.m@gmail.com",
"repository": "michiil/squeeze-controller",
"description": "Webapp for controlling the Logitech Media Server",
"scripts": {
"start": "electron .",
"test": "standard"
"postinstall": "install-app-deps",
"start": "npm install && electron .",
"test": "standard",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "squeeze-controller",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"standard": {
"globals": [
Expand All @@ -24,10 +56,11 @@
"angular-ui-bootstrap": "^2.0.1",
"angular-utf8-base64": "0.0.5",
"bootstrap": "^3.3.7",
"electron-debug": "^1.0.1",
"electron-prebuilt": "^1.3.2"
"electron-debug": "^1.0.1"
},
"devDependencies": {
"standard": "^7.1.2"
"electron-builder": "^20.28.4",
"standard": "^7.1.2",
"electron-prebuilt": "^1.3.2"
}
}