Release v1.0.4

This commit is contained in:
Florian Bruhin 2017-11-28 10:53:01 +01:00
parent 9a8d68aa25
commit b407f4ab41
2 changed files with 4 additions and 4 deletions

View File

@ -120,8 +120,8 @@ Removed
- The `x[xtb]` default bindings got removed again as many users accidentally - The `x[xtb]` default bindings got removed again as many users accidentally
triggered them. triggered them.
v1.0.4 (unreleased) v1.0.4
------------------- ------
Fixed Fixed
~~~~~ ~~~~~
@ -131,6 +131,7 @@ Fixed
- Fixed crash when `:config-write-py` fails to write to the given path. - Fixed crash when `:config-write-py` fails to write to the given path.
- Fixed crash for some users when selecting a file with Qt 5.9.3 - Fixed crash for some users when selecting a file with Qt 5.9.3
- Improved handling for various SQL errors - Improved handling for various SQL errors
- Fix crash when setting content.cache.size to a big value (> 2 GB)
v1.0.3 v1.0.3
------ ------
@ -153,7 +154,6 @@ Fixed
window window
- Unbinding a default keybinding twice now doesn't bind it again - Unbinding a default keybinding twice now doesn't bind it again
- Completions are now sorted correctly again when filtered - Completions are now sorted correctly again when filtered
- Fix crash when setting content.cache.size to a big value (> 2 GB)
v1.0.2 v1.0.2
------ ------

View File

@ -26,7 +26,7 @@ __copyright__ = "Copyright 2014-2017 Florian Bruhin (The Compiler)"
__license__ = "GPL" __license__ = "GPL"
__maintainer__ = __author__ __maintainer__ = __author__
__email__ = "mail@qutebrowser.org" __email__ = "mail@qutebrowser.org"
__version_info__ = (1, 0, 3) __version_info__ = (1, 0, 4)
__version__ = '.'.join(str(e) for e in __version_info__) __version__ = '.'.join(str(e) for e in __version_info__)
__description__ = "A keyboard-driven, vim-like browser based on PyQt5." __description__ = "A keyboard-driven, vim-like browser based on PyQt5."