From c1e42c0796e92287e0e33220a1101e27b645a795 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= jaakko.keranen@iki.fi
Date: Sun, 3 Jan 2021 08:38:42 +0200
Subject: [PATCH 1/1] Updating the navbar URL when opening tabs
res/about/version.gmi | 2 ++
src/ui/documentwidget.c | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 3536a4eb..0d62c507 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -7,6 +7,8 @@
+* Fixed URL input field showing the wrong URL when opening tabs in the background.
+* Fixed trusting a renewed server certificate when multiple tabs are open.
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c
index d944a11e..5b0b3d63 100644
--- a/src/ui/documentwidget.c
+++ b/src/ui/documentwidget.c
@@ -1669,7 +1669,7 @@ static iBool handleCommand_DocumentWidget_(iDocumentWidget *d, const char *cmd)
updateVisible_DocumentWidget_(d);
updateSideIconBuf_DocumentWidget_(d);
updateOutline_DocumentWidget_(d);
postCommandf_App("document.changed url:%s", cstr_String(d->mod.url));
postCommandf_App("document.changed doc:%p url:%s", d, cstr_String(d->mod.url));
/* Check for a pending goto. */
if (!isEmpty_String(&d->pendingGotoHeading)) {
scrollToHeading_DocumentWidget_(d, cstr_String(&d->pendingGotoHeading));
@@ -3242,7 +3242,7 @@ void setUrlFromCache_DocumentWidget(iDocumentWidget *d, const iString *url, iBoo
}
}
else {
postCommandf_App("document.changed url:%s", cstr_String(d->mod.url));
postCommandf_App("document.changed doc:%p url:%s", d, cstr_String(d->mod.url));
}
}
--
2.25.1
text/plain
This content has been proxied by September (3851b).