From a73d58aad5b9f06b43e42703048b9c4039a7e90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Mon, 11 Sep 2023 19:46:42 -0700 Subject: [PATCH 1/3] Status bar is unreadable when using PWA in dark mode on Firefox Android Fixes #2055 --- internal/ui/static_manifest.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/ui/static_manifest.go b/internal/ui/static_manifest.go index a3ed0f8147b..ad41be052fb 100644 --- a/internal/ui/static_manifest.go +++ b/internal/ui/static_manifest.go @@ -40,7 +40,6 @@ func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) { Icons []webManifestIcon `json:"icons"` ShareTarget webManifestShareTarget `json:"share_target"` Display string `json:"display"` - ThemeColor string `json:"theme_color"` BackgroundColor string `json:"background_color"` } @@ -60,7 +59,6 @@ func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) { Description: "Minimalist Feed Reader", Display: displayMode, StartURL: route.Path(h.router, "login"), - ThemeColor: themeColor, BackgroundColor: themeColor, Icons: []webManifestIcon{ {Source: route.Path(h.router, "appIcon", "filename", "icon-120.png"), Sizes: "120x120", Type: "image/png", Purpose: "any"}, From b454d93c254f39c53aa69d48b55a353df99226d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Fri, 15 Sep 2023 15:41:13 -0700 Subject: [PATCH 2/3] Update ChangeLog --- ChangeLog | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/ChangeLog b/ChangeLog index dfc36917bb6..58db45332c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,43 @@ +Version 2.0.48 (September 15, 2023) +----------------------------------- + +* Add generic webhook integration + * Send webhook events when new entries are detected + * Send wehbook events when saving an entry + * Sign the outgoing requests with HMAC-SHA256 +* Improve Telegram integration + * Add built-in Telegram client + * Remove dependency on `go-telegram-bot-api` library + * Add new options: + * Optional topic ID + * Disable page preview + * Disable notifications + * Add new button to go to article +* Improve Matrix integration + * Add built-in Matrix client + * Remove dependency on `gomatrix` library + * Send HTML formatted messages to Matrix +* OpenID Connect authentication improvements: + * Add OAuth2 PKCE support + * Add `profile` scope to OIDC integration to support accounts without email address + * Prevent empty username when using the OIDC integration +* Add `factor` for `entry_frequency` scheduler: + * Allow the user to increase the frequency of the `entry_frequency` + scheduler by a configurable factor in order to shorten the time between + updates. +* Fix: status bar is unreadable when using PWA in dark mode on Firefox Android +* Group form fields into fieldsets to improve page layout +* Update Russian translation +* Make sure icon URLs are always absolute +* Add Apprise service URLs per feed +* Trim `username` and `password` form fields +* Strip HTML tags from DublinCore Creator tags +* Fix scroll up behavior on Firefox Android +* Add missing `return` statement in `fetchContent` UI handler +* Add `replace_title` write rule to adjust entry titles +* Fix Pocket integration redirect URL and Google Reader API HREF +* Fix feed `hide_globally` property to use it with third-party clients. + Version 2.0.47 (August 20, 2023) -------------------------------- From 545c68a0fd132e1eb3e39bcde6ef52d441bc9405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Fri, 15 Sep 2023 15:56:30 -0700 Subject: [PATCH 3/3] Fix typo in ChangeLog --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 58db45332c9..38389c527ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,7 +34,7 @@ Version 2.0.48 (September 15, 2023) * Strip HTML tags from DublinCore Creator tags * Fix scroll up behavior on Firefox Android * Add missing `return` statement in `fetchContent` UI handler -* Add `replace_title` write rule to adjust entry titles +* Add `replace_title` rewrite rule to adjust entry titles * Fix Pocket integration redirect URL and Google Reader API HREF * Fix feed `hide_globally` property to use it with third-party clients.