summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-06-10 15:58:23 +0200
committerFlorian Bruhin <git@the-compiler.org>2018-06-10 15:58:54 +0200
commite9b4c2a66e126e169b3031046f5d0152fd1cf5b4 (patch)
tree24b0599006c6effeb02f09e1ec5a67dafccb2052
parent6a7ab7edb3dbb8226c5953bf78796b9d7ad050a3 (diff)
downloadqutebrowser-1.3.2.tar.gz
qutebrowser-1.3.2.zip
Release v1.3.2v1.3.2
-rw-r--r--doc/changelog.asciidoc15
-rw-r--r--qutebrowser/__init__.py2
2 files changed, 16 insertions, 1 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index 383a5655f..fe331fbf4 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -15,6 +15,21 @@ breaking changes (such as renamed commands) can happen in minor releases.
// `Fixed` for any bug fixes.
// `Security` to invite users to upgrade in case of vulnerabilities.
+v1.3.2
+------
+
+Fixed
+~~~~~
+
+- QtWebEngine: Improved workaround for a bug in Qt 5.11 where only the
+ top/bottom half of the window is used.
+- QtWebEngine: Work around a bug in Qt 5.11 where an endless loading-loop is
+ triggered when clicking a link with an unknown scheme.
+- QtWebEngine: When switching between pages with changed settings, less
+ unnecessary reloads are done now.
+- QtWebEngine: It's now possible to open external links such as `magnet://` or
+ `mailto:` via hints.
+
v1.3.1
------
diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py
index cc755f7b0..770f014ea 100644
--- a/qutebrowser/__init__.py
+++ b/qutebrowser/__init__.py
@@ -26,7 +26,7 @@ __copyright__ = "Copyright 2014-2018 Florian Bruhin (The Compiler)"
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"
-__version_info__ = (1, 3, 1)
+__version_info__ = (1, 3, 2)
__version__ = '.'.join(str(e) for e in __version_info__)
__description__ = "A keyboard-driven, vim-like browser based on PyQt5."