-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
10,327 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.