diff --git a/.github/ISSUE_TEMPLATE/problem-report.md b/.github/ISSUE_TEMPLATE/problem-report.md new file mode 100644 index 000000000..7c185de98 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/problem-report.md @@ -0,0 +1,18 @@ +--- +name: Problem report +about: Use this to report issues you have when running LRR. + +--- + +**LRR Version and OS** +Please tell which version you're running, as well as your OS and installation method. (Vagrant, Docker, Native) + +**Bug Details** +Please detail the bug here. + +**Matching Logs** +Post any logs you have encountered when reproducing the bug. +If possible, switch the app to Debug Mode in order to have more logs. + +**Screenshots** +If applicable, add screenshots to help explain your problem. diff --git a/lib/Shinobu.pm b/lib/Shinobu.pm index d98ad4c40..413d3b2ac 100644 --- a/lib/Shinobu.pm +++ b/lib/Shinobu.pm @@ -34,6 +34,7 @@ use LANraragi::Utils::Archive; use LANraragi::Utils::Database; use LANraragi::Model::Config; +use LANraragi::Model::Plugins; sub initialize_from_new_process { diff --git a/lrr.conf b/lrr.conf index 6ebc28397..877db7a62 100755 --- a/lrr.conf +++ b/lrr.conf @@ -4,5 +4,5 @@ redis_database => "0", default_theme => "modern.css", shinobu_interval => "5", - version => "0.5.4" + version => "0.5.4-EX" } diff --git a/public/js/index_datatables.js b/public/js/index_datatables.js index 4c9fc17fa..f1e73b7ed 100644 --- a/public/js/index_datatables.js +++ b/public/js/index_datatables.js @@ -127,12 +127,12 @@ function seriesColumnDisplay(data, type, full, meta) { if (data === "") return ""; - regex = /.*parody:\s?([^,]*),*.*/gi + regex = /.*(parody|series):\s?([^,]*),*.*/gi match = regex.exec(data); if (match != null) { return '' + - match[1].replace(/\b./g, function (m) { return m.toUpperCase(); }) + + match[2].replace(/\b./g, function (m) { return m.toUpperCase(); }) + ''; } else return ""; diff --git a/tools/DockerSetup/supervisord.conf b/tools/DockerSetup/supervisord.conf index ec7232ad7..d7431390b 100755 --- a/tools/DockerSetup/supervisord.conf +++ b/tools/DockerSetup/supervisord.conf @@ -1,5 +1,6 @@ [supervisord] nodaemon=true +loglevel=debug [program:redis] command=/usr/bin/redis-server /home/koyomi/redis.conf