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

View File

@@ -51,7 +51,7 @@ The official docker images are available on [Dockerhub](https://hub.docker.com/r
### CLI
```
Mango - Manga Server and Web Reader. Version 0.27.0
Mango - Manga Server and Web Reader. Version 0.27.1
Usage:

View File

@@ -146,17 +146,17 @@ const component = () => {
}
},
selectAll() {
$('tbody > tr').each((i, e) => {
$('tbody#selectable > tr').each((i, e) => {
$(e).addClass('ui-selected');
});
},
clearSelection() {
$('tbody > tr').each((i, e) => {
$('tbody#selectable > tr').each((i, e) => {
$(e).removeClass('ui-selected');
});
},
download() {
const selected = $('tbody > tr.ui-selected').get();
const selected = $('tbody#selectable > tr.ui-selected').get();
if (selected.length === 0) return;
UIkit.modal

View File

@@ -1,5 +1,5 @@
name: mango
version: 0.27.0
version: 0.27.1
authors:
- Alex Ling <hkalexling@gmail.com>

View File

@@ -7,7 +7,7 @@ require "option_parser"
require "clim"
require "tallboy"
MANGO_VERSION = "0.27.0"
MANGO_VERSION = "0.27.1"
# From http://www.network-science.de/ascii/
BANNER = %{