aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-18 20:26:11 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-18 20:26:11 +0200
commita716f0804fd10a37ccc7d87c58ffebeb4f261d10 (patch)
tree970542ca70d352aa4857a70356c388fd7a8b32b6 /src
parent75bbab5fcc0260ac765b216b8b3d989f88dac159 (diff)
downloadkristall-a716f0804fd10a37ccc7d87c58ffebeb4f261d10.tar.gz
Rescopes version 0.3, adds roadmap plans for 0.4.
Diffstat (limited to 'src')
-rw-r--r--src/about/updates.gemini8
-rw-r--r--src/browsertab.cpp2
2 files changed, 5 insertions, 5 deletions
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)
{