Skip to content

Commit

Permalink
LANraragi Release 0.5.4-EX
Browse files Browse the repository at this point in the history
Merge pull request #61 from Difegue/dev
  • Loading branch information
Difegue authored Oct 14, 2018
2 parents 4f01ef3 + 82a27ad commit cc66569
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/problem-report.md
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions lib/Shinobu.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
2 changes: 1 addition & 1 deletion lrr.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
redis_database => "0",
default_theme => "modern.css",
shinobu_interval => "5",
version => "0.5.4"
version => "0.5.4-EX"
}
4 changes: 2 additions & 2 deletions public/js/index_datatables.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 '<a style="cursor:pointer" onclick="$(\'#srch\').val($(this).html()); arcTable.search($(this).html()).draw();">' +
match[1].replace(/\b./g, function (m) { return m.toUpperCase(); }) +
match[2].replace(/\b./g, function (m) { return m.toUpperCase(); }) +
'</a>';
} else return "";

Expand Down
1 change: 1 addition & 0 deletions tools/DockerSetup/supervisord.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[supervisord]
nodaemon=true
loglevel=debug

[program:redis]
command=/usr/bin/redis-server /home/koyomi/redis.conf
Expand Down

0 comments on commit cc66569

Please sign in to comment.