Compare commits

..

2 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
4 changed files with 6 additions and 6 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:
+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
@@ -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 = %{