Compare commits

...

4 Commits

Author SHA1 Message Date
Alex Ling 098d597fad Bump version to 0.27.1 2022-09-09 13:56:15 +00:00
Alex Ling 6f39c2a74c Restrict table selection to id seletable
fixes #335
2022-09-09 13:47:30 +00:00
Alex Ling 61d6c2e1d9 Fix incorrect default DB path 2022-09-05 03:18:44 +00:00
Alex Ling ce559984e6 Fix uikit version to ~3.14.0 (fixes #334) 2022-09-05 03:17:36 +00:00
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ The official docker images are available on [Dockerhub](https://hub.docker.com/r
### CLI ### CLI
``` ```
Mango - Manga Server and Web Reader. Version 0.27.0 Mango - Manga Server and Web Reader. Version 0.27.1
Usage: Usage:
+1 -1
View File
@@ -25,6 +25,6 @@
}, },
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0", "@fortawesome/fontawesome-free": "^5.14.0",
"uikit": "^3.5.4" "uikit": "~3.14.0"
} }
} }
+3 -3
View File
@@ -146,17 +146,17 @@ const component = () => {
} }
}, },
selectAll() { selectAll() {
$('tbody > tr').each((i, e) => { $('tbody#selectable > tr').each((i, e) => {
$(e).addClass('ui-selected'); $(e).addClass('ui-selected');
}); });
}, },
clearSelection() { clearSelection() {
$('tbody > tr').each((i, e) => { $('tbody#selectable > tr').each((i, e) => {
$(e).removeClass('ui-selected'); $(e).removeClass('ui-selected');
}); });
}, },
download() { download() {
const selected = $('tbody > tr.ui-selected').get(); const selected = $('tbody#selectable > tr.ui-selected').get();
if (selected.length === 0) return; if (selected.length === 0) return;
UIkit.modal UIkit.modal
+1 -1
View File
@@ -1,5 +1,5 @@
name: mango name: mango
version: 0.27.0 version: 0.27.1
authors: authors:
- Alex Ling <hkalexling@gmail.com> - Alex Ling <hkalexling@gmail.com>
+1 -1
View File
@@ -8,7 +8,7 @@ class Config
"session_secret" => "mango-session-secret", "session_secret" => "mango-session-secret",
"library_path" => "~/mango/library", "library_path" => "~/mango/library",
"library_cache_path" => "~/mango/library.yml.gz", "library_cache_path" => "~/mango/library.yml.gz",
"db_path" => "~/mango.db", "db_path" => "~/mango/mango.db",
"queue_db_path" => "~/mango/queue.db", "queue_db_path" => "~/mango/queue.db",
"scan_interval_minutes" => 5, "scan_interval_minutes" => 5,
"thumbnail_generation_interval_hours" => 24, "thumbnail_generation_interval_hours" => 24,
+1 -1
View File
@@ -7,7 +7,7 @@ require "option_parser"
require "clim" require "clim"
require "tallboy" require "tallboy"
MANGO_VERSION = "0.27.0" MANGO_VERSION = "0.27.1"
# From http://www.network-science.de/ascii/ # From http://www.network-science.de/ascii/
BANNER = %{ BANNER = %{