Skip to content

Commit

Permalink
add all files
Browse files Browse the repository at this point in the history
  • Loading branch information
jplsek committed Mar 16, 2016
1 parent 57f9b64 commit 948d271
Show file tree
Hide file tree
Showing 25 changed files with 10,327 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.swp
*.swo
node_modules
public/css/overwrite.css
public/css/jquery.contextMenu.css
public/css/themes/default.css
public/css/themes/default-thin.css
downloads/*
54 changes: 54 additions & 0 deletions config.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
### To set custom config:
### Remove the "#" before a variable, for example:
### "#port = 8080" to "port = 8080"

[server]
### The web port to be used.
### Default: 8081
#port = 8080

[mpd]
### The MPD location.
### Default: "localhost"
#url = "mpdserver.lan"

### The MPD port of the url
### Default: 6600
#port = 6600

[vote]
### Enable vote skipping (set to false if you are having issues with voting)
### Default: true
#enabled = false

### Vote skipping percentage. 0.75 = 3/4 clients need to vote in order for a
### skip to be successful
### Default: 0.75
#percent = 0.50

[users]
### Show user lists to clients (shows hostnames via DNS if possible). This may
### be "removed" in the future if support for sharing playlist buffers is
### added, in which case you would disable sharing of the playlist buffers.
### Default: false
#enabled = true

[player]
### Enable the Download Player
### Default: true
#enabled = false

### Set Download Player download location
### Default: "./downloads"
#location = "~/Music"

### Set the default volume of the Download Player
### Default: 0.50
#volume = 0.90

### Set whether or not to keep the downloaded videos after conversion to mp3.
### If you are changing the "location" you may want to set this to false.
### Note that setting this to false will download videos even when there are
### duplicates.
### Default: true
#keep_videos = false
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "MPCParty",
"version": "0.1.0",
"description": "Another MPC web client meant for multi-user usage.",
"main": "server.js",
"author": "Jeremy Plsek",
"license": "LGPL-3.0",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"bootstrap": "^3.3.5",
"express": "^4.13.3",
"floatthead": "^1.2.12",
"fs": "0.0.2",
"http": "0.0.0",
"jade": "~1.11.0",
"jquery": "^2.1.4",
"jquery-contextmenu": "^2.1.0",
"komponist": "~0.1.0",
"less-middleware": "^2.0.1",
"player": "^0.6.1",
"toastr": "~2.1.2",
"toml": "^2.3.0",
"ws": "^1.0.1",
"youtube-dl": "^1.10.5"
}
}
6 changes: 6 additions & 0 deletions public/css/jquery-ui.min.css

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

Loading

0 comments on commit 948d271

Please sign in to comment.