From d77f913aa0d3413c150797820160944b869976dc Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Tue, 21 May 2024 23:47:35 +0200 Subject: [PATCH 1/2] RSS - Only insert feed header if app_rss_token is set (should be only shown in index/overview page) (#2381) --- changedetectionio/templates/base.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changedetectionio/templates/base.html b/changedetectionio/templates/base.html index bbfe8634..87018a7d 100644 --- a/changedetectionio/templates/base.html +++ b/changedetectionio/templates/base.html @@ -6,7 +6,9 @@ Change Detection{{extra_title}} - + {% if app_rss_token %} + + {% endif %} {% if extra_stylesheets %} From 7e8aa7e3ff1e0b8623c69a38475519b8142b84d7 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 22 May 2024 00:01:50 +0200 Subject: [PATCH 2/2] 0.45.23 --- changedetectionio/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/__init__.py b/changedetectionio/__init__.py index 07492851..6fb76ce4 100644 --- a/changedetectionio/__init__.py +++ b/changedetectionio/__init__.py @@ -2,7 +2,7 @@ # Read more https://github.com/dgtlmoon/changedetection.io/wiki -__version__ = '0.45.22' +__version__ = '0.45.23' from changedetectionio.strtobool import strtobool from json.decoder import JSONDecodeError