From e9b4c2a66e126e169b3031046f5d0152fd1cf5b4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 10 Jun 2018 15:58:23 +0200 Subject: Release v1.3.2 --- doc/changelog.asciidoc | 15 +++++++++++++++ qutebrowser/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) 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." -- cgit v1.2.3-54-g00ecf