Skip to content

Commit b8ce1cc

Browse files
authored
Merge pull request #286 from hkalexling/rc/0.26.0
v0.26.0
2 parents a101526 + 24c90e7 commit b8ce1cc

38 files changed

+1918
-617
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The official docker images are available on [Dockerhub](https://hub.docker.com/r
5151
### CLI
5252

5353
```
54-
Mango - Manga Server and Web Reader. Version 0.25.0
54+
Mango - Manga Server and Web Reader. Version 0.26.0
5555
5656
Usage:
5757
@@ -94,9 +94,10 @@ cache_log_enabled: true
9494
disable_login: false
9595
default_username: ""
9696
auth_proxy_header_name: ""
97+
plugin_update_interval_hours: 24
9798
```
9899
99-
- `scan_interval_minutes`, `thumbnail_generation_interval_hours` can be any non-negative integer. Setting them to `0` disables the periodic tasks
100+
- `scan_interval_minutes`, `thumbnail_generation_interval_hours`, and `plugin_update_interval_hours` can be any non-negative integer. Setting them to `0` disables the periodic tasks
100101
- `log_level` can be `debug`, `info`, `warn`, `error`, `fatal` or `off`. Setting it to `off` disables the logging
101102
- You can disable authentication by setting `disable_login` to true. Note that `default_username` must be set to an existing username for this to work.
102103
- By setting `cache_enabled` to `true`, you can enable an experimental feature where Mango caches library metadata to improve page load time. You can further fine-tune the feature with `cache_size_mbs` and `cache_log_enabled`.

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ gulp.task('minify-css', () => {
5555
gulp.task('copy-files', () => {
5656
return gulp.src([
5757
'public/*.*',
58-
'public/img/*',
58+
'public/img/**',
5959
'public/webfonts/*',
6060
'public/js/*.min.js'
6161
], {
File renamed without changes.

public/img/icons/icon_x192.png

6.84 KB
Loading

public/img/icons/icon_x512.png

21.5 KB
Loading

public/img/icons/icon_x96.png

3.11 KB
Loading

public/js/admin.js

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ const component = () => {
3131
this.scanMs = data.milliseconds;
3232
this.scanTitles = data.titles;
3333
})
34+
.catch(e => {
35+
alert('danger', `Failed to trigger a scan. Error: ${e}`);
36+
})
3437
.always(() => {
3538
this.scanning = false;
3639
});

0 commit comments

Comments
 (0)