From d61c31ac266ad290e9c467183b8232328e982f84 Mon Sep 17 00:00:00 2001 From: danbruno Date: Tue, 21 Feb 2023 08:54:48 -0500 Subject: [PATCH 1/6] Add wireless connection port --- calibre/README.md | 2 +- calibre/config.json | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/calibre/README.md b/calibre/README.md index 111c23de1..14e364d56 100644 --- a/calibre/README.md +++ b/calibre/README.md @@ -49,7 +49,7 @@ Webui can be found at . Configurations can be done through the app webUI, except for the following options. Please read the upstream container documentation for further info : https://github.com/linuxserver/docker-calibre/blob/35b5e3ae06ba95f666687150ca5fd632b8db9e87/README.md#application-setup -In particular, the webserver needs to be manually enabled from the desktop app with port 8081 to be able to access it. +In particular, the webserver and wireless connections needs to be manually enabled from the desktop app to be able to access it, with ports 8081 and 9090 respectively. ```yaml PGID: user diff --git a/calibre/config.json b/calibre/config.json index 3c982f11f..bd34a0ef5 100644 --- a/calibre/config.json +++ b/calibre/config.json @@ -66,11 +66,13 @@ "panel_icon": "mdi:book-multiple", "ports": { "8080/tcp": 8080, - "8081/tcp": 8081 + "8081/tcp": 8081, + "9090/tcp": 9090 }, "ports_description": { "8080/tcp": "Calibre desktop gui", - "8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui" + "8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui", + "9090/tcp": "Calibre wireless connection port, to be enabled within the desktop gui" }, "privileged": [ "SYS_ADMIN", @@ -89,7 +91,7 @@ "networkdisks": "str?" }, "slug": "calibre", - "url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre", + "url": "https://github.com/danbruno/hassio-addons/tree/calibre-wireless-port/calibre", "version": "v6.13.0-ls203", "video": true } From c5ab0537fb690e80f0fe13a277b7aa291bf4f80a Mon Sep 17 00:00:00 2001 From: danbruno Date: Tue, 21 Feb 2023 09:05:40 -0500 Subject: [PATCH 2/6] Update URL for testing --- repository.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository.json b/repository.json index 4a95259b1..0ed2bf641 100644 --- a/repository.json +++ b/repository.json @@ -1,5 +1,5 @@ { "name": "HA Add-ons by alexbelgium", - "url": "https://github.com/alexbelgium/hassio-addons", + "url": "https://github.com/danbruno/hassio-addons", "maintainer": "alexbelgium" } From 1cb0a11524d02e3be59e1a0869da6b4312a8d487 Mon Sep 17 00:00:00 2001 From: danbruno Date: Tue, 21 Feb 2023 20:52:45 -0500 Subject: [PATCH 3/6] Revert testing changes --- calibre/config.json | 2 +- repository.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/calibre/config.json b/calibre/config.json index bd34a0ef5..fb7247b73 100644 --- a/calibre/config.json +++ b/calibre/config.json @@ -91,7 +91,7 @@ "networkdisks": "str?" }, "slug": "calibre", - "url": "https://github.com/danbruno/hassio-addons/tree/calibre-wireless-port/calibre", + "url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre", "version": "v6.13.0-ls203", "video": true } diff --git a/repository.json b/repository.json index 0ed2bf641..4a95259b1 100644 --- a/repository.json +++ b/repository.json @@ -1,5 +1,5 @@ { "name": "HA Add-ons by alexbelgium", - "url": "https://github.com/danbruno/hassio-addons", + "url": "https://github.com/alexbelgium/hassio-addons", "maintainer": "alexbelgium" } From c148cb08c2c7bace2e7b316ebcee7d461d69a914 Mon Sep 17 00:00:00 2001 From: danbruno Date: Tue, 21 Feb 2023 20:54:13 -0500 Subject: [PATCH 4/6] Fix wording --- calibre/README.md | 2 +- calibre/config.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/calibre/README.md b/calibre/README.md index 14e364d56..e34ec9e8f 100644 --- a/calibre/README.md +++ b/calibre/README.md @@ -49,7 +49,7 @@ Webui can be found at . Configurations can be done through the app webUI, except for the following options. Please read the upstream container documentation for further info : https://github.com/linuxserver/docker-calibre/blob/35b5e3ae06ba95f666687150ca5fd632b8db9e87/README.md#application-setup -In particular, the webserver and wireless connections needs to be manually enabled from the desktop app to be able to access it, with ports 8081 and 9090 respectively. +In particular, the webserver and wireless connection needs to be manually enabled from the desktop app to be able to access it, using ports 8081 and 9090 respectively. ```yaml PGID: user diff --git a/calibre/config.json b/calibre/config.json index fb7247b73..b49d38ef3 100644 --- a/calibre/config.json +++ b/calibre/config.json @@ -72,7 +72,7 @@ "ports_description": { "8080/tcp": "Calibre desktop gui", "8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui", - "9090/tcp": "Calibre wireless connection port, to be enabled within the desktop gui" + "9090/tcp": "Calibre wireless connection, to be enabled within the desktop gui" }, "privileged": [ "SYS_ADMIN", From 6b3a58a1f3c9499dc2e235a230657cfa2a7471a1 Mon Sep 17 00:00:00 2001 From: danbruno Date: Tue, 21 Feb 2023 20:56:41 -0500 Subject: [PATCH 5/6] Update version --- calibre/CHANGELOG.md | 2 ++ calibre/config.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/calibre/CHANGELOG.md b/calibre/CHANGELOG.md index 527fcdec7..8a07fd530 100644 --- a/calibre/CHANGELOG.md +++ b/calibre/CHANGELOG.md @@ -1,3 +1,5 @@ +## v6.13.0-ls204 (21-02-2023) +- Add wireless connection port ## v6.13.0-ls203 (19-02-2023) - Update to latest version from linuxserver/docker-calibre diff --git a/calibre/config.json b/calibre/config.json index b49d38ef3..7737b596b 100644 --- a/calibre/config.json +++ b/calibre/config.json @@ -92,6 +92,6 @@ }, "slug": "calibre", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre", - "version": "v6.13.0-ls203", + "version": "v6.13.0-ls204", "video": true } From 5566fe6c5e2546ded5c176fafe55283dce32e7ba Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:12:46 +0100 Subject: [PATCH 6/6] Align version with upstream --- calibre/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calibre/config.json b/calibre/config.json index 7737b596b..56012a977 100644 --- a/calibre/config.json +++ b/calibre/config.json @@ -92,6 +92,6 @@ }, "slug": "calibre", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre", - "version": "v6.13.0-ls204", + "version": "v6.13.0-ls203-2", "video": true }