diff --git a/Client/images/Icon-144.png b/Client/images/Icon-144.png new file mode 100644 index 0000000..7d62c8b Binary files /dev/null and b/Client/images/Icon-144.png differ diff --git a/Client/images/Screenshot-Main-Desktop.png b/Client/images/Screenshot-Main-Desktop.png new file mode 100644 index 0000000..19ec8e2 Binary files /dev/null and b/Client/images/Screenshot-Main-Desktop.png differ diff --git a/Client/images/Screenshot-Main-Mobile.png b/Client/images/Screenshot-Main-Mobile.png new file mode 100644 index 0000000..a877cfb Binary files /dev/null and b/Client/images/Screenshot-Main-Mobile.png differ diff --git a/Client/index.html b/Client/index.html index b56f759..6e110d9 100644 --- a/Client/index.html +++ b/Client/index.html @@ -69,7 +69,7 @@ changes visibility with JS-->

Alert Time:

How long alerts stay on screen for (seconds)

- +

Server Settings (Saved to server)

Party Mode:

@@ -81,12 +81,13 @@ changes visibility with JS-->

Volume of the music

-
+

Share the remote:

-

Hit settings icon to refresh the code

+
-

Version 1.0.0

+

Version 1.0.1

diff --git a/Client/manifest.json b/Client/manifest.json index 7ab15d3..975ff13 100644 --- a/Client/manifest.json +++ b/Client/manifest.json @@ -1,6 +1,7 @@ { "name": "Jukebox Remote", "short_name": "Jukebox Remote", + "description": "Controller for the PartyJukebox server app.", "start_url": "index.html", "display": "standalone", "background_color": "#eeeeee", @@ -10,6 +11,25 @@ { "src": "/favicon.ico", "type": "image/ico", "sizes": "100x100" + }, + { + "src":"images/Icon-144.png", + "type": "image/png", + "sizes": "144x144" + } + ], + "screenshots": [ + { + "src": "images/Screenshot-Main-Desktop.png", + "sizes" : "1919x1199", + "type": "image/png", + "form_factor": "wide" + }, + { + "src": "images/Screenshot-Main-Mobile.png", + "type": "image/png", + "sizes": "485x859", + "form_factor": "narrow" } ] } \ No newline at end of file diff --git a/Client/styles.css b/Client/styles.css index a00db3b..803c5df 100644 --- a/Client/styles.css +++ b/Client/styles.css @@ -168,6 +168,11 @@ h4 { border-bottom: 1px solid #333333; } +.settings > .item.no-line { + border-bottom: 0px none #00000000; + padding-bottom: 0px; +} + .settings > .lastSet1 { border-bottom: 0; } diff --git a/Server/databaseGenerator.py b/Server/databaseGenerator.py index d2569d9..68cdeb1 100644 --- a/Server/databaseGenerator.py +++ b/Server/databaseGenerator.py @@ -41,6 +41,8 @@ if args.mode.lower() == "update": songDatabaseList["songData"].pop(i) for i in songDatabaseList["songData"]: songFiles.remove(i) + # This prints everything in the directory, including non mp3s + # theres not agood way to fix this without looping again. print("new songs: " + ", ".join(songFiles)) elif args.mode.lower()=="new": songDatabaseList={"songDirectory":soundLocation,'songData':{}}