diff options
author | Allan Wang <me@allanwang.ca> | 2019-09-22 14:42:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-22 14:42:23 -0700 |
commit | 8c9d1df82f31b7eca5fd383bf51c8634fa0696ee (patch) | |
tree | 08cbb88d343552c3eb9d52b1bf2fd5a2ec6e3617 /app/src/main | |
parent | 96908453abbd7e40e13af4359d1bce4524b979a6 (diff) | |
parent | 8d355d472f579d10707c8a0b65fb424eb283265d (diff) | |
download | frost-8c9d1df82f31b7eca5fd383bf51c8634fa0696ee.tar.gz frost-8c9d1df82f31b7eca5fd383bf51c8634fa0696ee.tar.bz2 frost-8c9d1df82f31b7eca5fd383bf51c8634fa0696ee.zip |
Merge pull request #1552 from AllanWang/notifications-page
Disable click launches from notification page
Diffstat (limited to 'app/src/main')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt | 5 | ||||
-rw-r--r-- | app/src/main/res/xml/frost_changelog.xml | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt index 9e45d4fe..721b2c2d 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt @@ -68,6 +68,11 @@ open class FrostWebViewClient(val web: FrostWebView) : BaseWebViewClient() { private val refresh: SendChannel<Boolean> = web.parent.refreshChannel private val isMain = web.parent.baseEnum != null + override fun doUpdateVisitedHistory(view: WebView, url: String?, isReload: Boolean) { + v { "History $url" } + super.doUpdateVisitedHistory(view, url, isReload) + } + protected inline fun v(crossinline message: () -> Any?) = L.v { "web client: ${message()}" } override fun onPageStarted(view: WebView, url: String?, favicon: Bitmap?) { diff --git a/app/src/main/res/xml/frost_changelog.xml b/app/src/main/res/xml/frost_changelog.xml index 3e267f69..f2f8539d 100644 --- a/app/src/main/res/xml/frost_changelog.xml +++ b/app/src/main/res/xml/frost_changelog.xml @@ -6,10 +6,15 @@ <item text="" /> --> + <version title="v2.4.1" /> + <item text="Notification tab will keep first page in the same window; fixes marking notifications as read" /> + <item text="" /> + <item text="" /> + <item text="" /> + <version title="v2.4.0" /> <item text="Removed request services, which potentially caused phishing warnings." /> <item text="Save images with the correct extensions." /> - <item text="" /> <version title="v2.3.2" /> <item text="Disable auto feed refresh by default and add setting to re-enable it" /> |