Compare commits

...

3 Commits

Author SHA1 Message Date
Alex Ling 61dc92838a Merge pull request #294 from hkalexling/rc/0.26.2
v0.26.2
2022-04-18 18:46:11 +08:00
Alex Ling ce1dcff229 Bump version to 0.26.2 2022-04-18 09:41:36 +00:00
Alex Ling 4f599fb719 Add back accidentally deleted OPDS routes
Resolves https://github.com/hkalexling/Mango/issues/255#issuecomment-1097588181
2022-04-18 08:49:09 +00:00
4 changed files with 4 additions and 3 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.26.1 Mango - Manga Server and Web Reader. Version 0.26.2
Usage: Usage:
+1 -1
View File
@@ -1,5 +1,5 @@
name: mango name: mango
version: 0.26.1 version: 0.26.2
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.26.1" MANGO_VERSION = "0.26.2"
# From http://www.network-science.de/ascii/ # From http://www.network-science.de/ascii/
BANNER = %{ BANNER = %{
+1
View File
@@ -23,6 +23,7 @@ class Server
AdminRouter.new AdminRouter.new
ReaderRouter.new ReaderRouter.new
APIRouter.new APIRouter.new
OPDSRouter.new
{% for path in %w(/api/* /uploads/* /img/*) %} {% for path in %w(/api/* /uploads/* /img/*) %}
options {{path}} do |env| options {{path}} do |env|