Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit 653751b

Browse files
committed
Merge branch 'dev'
2 parents 0fb1e15 + a02bf4a commit 653751b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The official docker images are available on [Dockerhub](https://hub.docker.com/r
5252
### CLI
5353

5454
```
55-
Mango - Manga Server and Web Reader. Version 0.18.1
55+
Mango - Manga Server and Web Reader. Version 0.18.2
5656
5757
Usage:
5858

public/js/download-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const component = () => {
66
toggling: false,
77

88
init() {
9-
const ws = new WebSocket(`ws://${location.host}/api/admin/mangadex/queue`);
9+
const ws = new WebSocket(`ws://${location.host}${base_url}api/admin/mangadex/queue`);
1010
ws.onmessage = event => {
1111
const data = JSON.parse(event.data);
1212
this.jobs = data.jobs;

shard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: mango
2-
version: 0.18.1
2+
version: 0.18.2
33

44
authors:
55
- Alex Ling <hkalexling@gmail.com>

src/mango.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require "option_parser"
88
require "clim"
99
require "tallboy"
1010

11-
MANGO_VERSION = "0.18.1"
11+
MANGO_VERSION = "0.18.2"
1212

1313
# From http://www.network-science.de/ascii/
1414
BANNER = %{

0 commit comments

Comments
 (0)