mirror of
https://github.com/aunefyren/wrapperr
synced 2025-03-04 22:47:15 +00:00
Changed category-titles and fixed typo in readme
The titles needed a proper context to make sense. If other categories were disabled they made little sense.
This commit is contained in:
parent
8b33d9d098
commit
2942cd15a7
3 changed files with 13 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
# Plex Wrapped
|
||||
## Introduction
|
||||
|
||||
A website-based platform and API for collecting Plex user stats within a set timeframe using [Tautulli](https://github.com/Tautulli/Tautulli). The data is displayed a stat-summary, sort of like Spotify Wrapped. Yes, you need Tautulli to have been running beforehand and currently for this to work.
|
||||
A website-based platform and API for collecting Plex user stats within a set timeframe using [Tautulli](https://github.com/Tautulli/Tautulli). The data is displayed as a stat-summary, sort of like Spotify Wrapped. Yes, you need Tautulli to have been running beforehand and currently for this to work.
|
||||
|
||||

|
||||
|
||||
|
@ -11,13 +11,14 @@ A website-based platform and API for collecting Plex user stats within a set tim
|
|||
- Friendly, dynamic display for statistics with nice illustrations
|
||||
- Email and username search
|
||||
- Admin page with authentication for settings
|
||||
- Pre-caching of results
|
||||
- Pre-caching of user-sets
|
||||
|
||||

|
||||
|
||||
### Credit
|
||||
- Beautiful illustrations downloaded from https://freewebillustrations.com/
|
||||
- Amazing statistics gathered using [Tautulli](https://github.com/Tautulli/Tautulli)
|
||||
- Wonderful loading icon from [icons8](https://icons8.com/preloaders/en/miscellaneous/hourglass/)
|
||||
|
||||

|
||||
|
||||
|
@ -36,6 +37,8 @@ You need to give PHP permission to edit files in the directory called <b>config<
|
|||
|
||||
The cache is stored at config/cache.json, but can be cleared using the admin menu.
|
||||
|
||||
Your password is stored hashed in the config.json.
|
||||
|
||||
If you visit <b>you-domain-or-ip/caching.html</b> you can do a pre-caching of a set of users. This is very useful if you want to prepare for a lot of traffic.
|
||||
|
||||
## Need help?
|
||||
|
|
|
@ -46,7 +46,7 @@ function cache() {
|
|||
<form id='stats_form' class='form' onsubmit='return false' action="" method="post">
|
||||
|
||||
<div class='form-group'>
|
||||
<img id="loading_icon" src="assets/loading.gif" style="padding: 1em;width: 2em; height: 2em; display:inline-block;">
|
||||
<img id="loading_icon" src="assets/loading.gif" style="padding: 1em;width: 4em; height: 4em; display:inline-block;">
|
||||
</div>
|
||||
|
||||
<h3>Caching results</h3>
|
||||
|
|
14
get_stats.js
14
get_stats.js
|
@ -100,7 +100,7 @@ function load_movies() {
|
|||
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#B9A3D2;'>";
|
||||
|
||||
text += "<div class='boks3'>";
|
||||
text += "<h1>Let's look at some movies.</h1>";
|
||||
text += "<h1>Movies!</h1>";
|
||||
text += "<br><br><br>";
|
||||
text += "<h2>You watched " + results.user.user_movies.data.movies.length + " movies. That's a lot of movies!</h2><p>(or not, I am pre-programmed to say that)</p>"
|
||||
|
||||
|
@ -146,7 +146,7 @@ function load_movies() {
|
|||
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#B9A3D2;'>";
|
||||
|
||||
text += "<div class='boks3'>";
|
||||
text += "<h1>Let's look at some movies.</h1>";
|
||||
text += "<h1>Movies!</h1>";
|
||||
text += "<br><br><br>";
|
||||
text += "<h2>You watched " + results.user.user_movies.data.movies.length + " movie. You know what you like!</h2><p>(at least you tried it out)</p>";
|
||||
text += "<br><br>";
|
||||
|
@ -179,7 +179,7 @@ function load_movies() {
|
|||
|
||||
text += "<div class='boks3'>";
|
||||
text += "<div class='status'>";
|
||||
text += "<h1>Let's look at some movies.</h1>";
|
||||
text += "<h1>Movies!</h1>";
|
||||
text += "<br><br><br>";
|
||||
text += "<h2>You watched " + results.user.user_movies.data.movies.length + " movies. That's impressive in itself!</h2><p>(might wanna try it out)</p>"
|
||||
text += '<img src="assets/img/bored.svg" style="margin: auto; display: block; width: 15em;">';
|
||||
|
@ -199,7 +199,7 @@ function load_shows() {
|
|||
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#BBD2A3;'>";
|
||||
|
||||
text += "<div class='boks3'>";
|
||||
text += "<h1>Now, let's have a look at some shows!</h1>";
|
||||
text += "<h1>Shows!</h1>";
|
||||
text += "<br><br><br><h2>You watched " + results.user.user_shows.data.shows.length + " different shows.</h2><p>(No, watching The Office twice in a year doesn't count as two shows)</p>"
|
||||
text += "</div>";
|
||||
|
||||
|
@ -236,7 +236,7 @@ function load_shows() {
|
|||
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color:#BBD2A3;'>";
|
||||
|
||||
text += "<div class='boks3'>";
|
||||
text += "<h1>Now, let's have a look at some shows!</h1>";
|
||||
text += "<h1>Shows!</h1>";
|
||||
text += "<br><br><br><h2>You watched " + results.user.user_shows.data.shows.length + " show.</h2><p>(Better not be that same one again...)</p>"
|
||||
text += "</div>";
|
||||
|
||||
|
@ -261,7 +261,7 @@ function load_shows() {
|
|||
|
||||
text += "<div class='boks3'>";
|
||||
text += "<div class='status'>";
|
||||
text += "<h1>Now, let's have a look at some shows!</h1>";
|
||||
text += "<h1>Shows!</h1>";
|
||||
text += "<br><br><br>";
|
||||
text += "<h2>You watched " + results.user.user_shows.data.shows.length + " shows. I get it, it's not for everyone!</h2><p>(might wanna try it out)</p>"
|
||||
text += '<img src="assets/img/bored.svg" style="margin: auto; display: block; width: 15em;">';
|
||||
|
@ -465,7 +465,7 @@ function load_users() {
|
|||
var text = "";
|
||||
|
||||
text += "<div class='boks' style='height: auto !important; width: 100%; padding-bottom: 25em; padding-top: 25em; height:10em; background-color: #a2d1d0;'>";
|
||||
text += "<h1>Finally, let's look at the top users, movies and shows!</h1>";
|
||||
text += "<h1>Server-wide statistics!</h1>";
|
||||
text += "<br><br><br><br><h2>It's okay to feel shame if you are on the list.</h2><p>(or missing from it...)</p>"
|
||||
text += "<br><br>";
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue