From eca47e3d3216ac1f3c863d39d4386469c93ae960 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Fri, 11 Feb 2022 14:28:05 +0000 Subject: [PATCH 1/3] Update README config example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 53cea05..e89a9a7 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ upload_path: ~/mango/uploads plugin_path: ~/mango/plugins download_timeout_seconds: 30 library_cache_path: ~/mango/library.yml.gz -cache_enabled: false +cache_enabled: true cache_size_mbs: 50 cache_log_enabled: true disable_login: false From 9ffc34e8e64f02e361c8cfe4bbb4d8b49e1a9092 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Mon, 28 Mar 2022 14:14:17 +0000 Subject: [PATCH 2/3] Bump version to 0.26.0 --- README.md | 2 +- shard.yml | 2 +- src/mango.cr | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 53cea05..88db3f4 100644 --- a/README.md +++ b/README.md @@ -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.25.0 + Mango - Manga Server and Web Reader. Version 0.26.0 Usage: diff --git a/shard.yml b/shard.yml index 44a0924..14a49aa 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: mango -version: 0.25.0 +version: 0.26.0 authors: - Alex Ling diff --git a/src/mango.cr b/src/mango.cr index 14603b9..e57750d 100644 --- a/src/mango.cr +++ b/src/mango.cr @@ -7,7 +7,7 @@ require "option_parser" require "clim" require "tallboy" -MANGO_VERSION = "0.25.0" +MANGO_VERSION = "0.26.0" # From http://www.network-science.de/ascii/ BANNER = %{ From 24c90e72837359865beae40653fee4ef04c2a713 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Mon, 28 Mar 2022 14:17:54 +0000 Subject: [PATCH 3/3] Update README config example --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 88db3f4..6c34c3a 100644 --- a/README.md +++ b/README.md @@ -94,9 +94,10 @@ cache_log_enabled: true disable_login: false default_username: "" auth_proxy_header_name: "" +plugin_update_interval_hours: 24 ``` -- `scan_interval_minutes`, `thumbnail_generation_interval_hours` can be any non-negative integer. Setting them to `0` disables the periodic tasks +- `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 - `log_level` can be `debug`, `info`, `warn`, `error`, `fatal` or `off`. Setting it to `off` disables the logging - 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. - 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`.