From a716f0804fd10a37ccc7d87c58ffebeb4f261d10 Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Thu, 18 Jun 2020 20:26:11 +0200 Subject: Rescopes version 0.3, adds roadmap plans for 0.4. --- src/about/updates.gemini | 8 +++++--- src/browsertab.cpp | 2 -- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/about/updates.gemini b/src/about/updates.gemini index f2ac095..6b4ef87 100644 --- a/src/about/updates.gemini +++ b/src/about/updates.gemini @@ -1,6 +1,6 @@ # Kristall Changelog -## 0.3 +## 0.3 - TLS and security * Adds support for transient client certificates * Adds support for permanent client certificates * Added this changelog to the software itself @@ -11,8 +11,10 @@ * Pressing escape now resets search bar to current location * Client certificates are disabled when doing a host switch * Redirection handling is now configurable and contains some warning messages for potentially malicious redirects. +gr -## 0.2 + +## 0.2 - The protocol update * Implement Ctrl+D/*Add to favourites* menu item * Implement Ctrl+S/*Save as...* menu item * Add display for "non-recognized files" @@ -41,5 +43,5 @@ * Added option to use your default OS protocol handler instead of displaying an error message. * Improved image pan and zooming. Explore those graphics! -## 0.1 +## 0.1 - The start * Initial release diff --git a/src/browsertab.cpp b/src/browsertab.cpp index a69c33c..0733f53 100644 --- a/src/browsertab.cpp +++ b/src/browsertab.cpp @@ -399,7 +399,6 @@ void BrowserTab::on_redirected(const QUrl &uri, bool is_permanent) { Q_UNUSED(is_permanent); - // TODO: Make this a setting if (redirection_count >= global_options.max_redirections) { setErrorMessage(QString("Too many consecutive redirections. The last redirection would have redirected you to:\r\n%1").arg(uri.toString(QUrl::FullyEncoded))); @@ -410,7 +409,6 @@ void BrowserTab::on_redirected(const QUrl &uri, bool is_permanent) bool is_cross_protocol = (this->current_location.scheme() != uri.scheme()); bool is_cross_host = (this->current_location.host() != uri.host()); - QString question; if(global_options.redirection_policy == GenericSettings::WarnAlways) { -- cgit v1.2.3