summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-17Release v1.0.2v1.0.2Florian Bruhin
2017-10-17Bump up yaml timeout a bitFlorian Bruhin
(cherry picked from commit 1a7612e559560e8b1a1fb95ebaf9151a3643e9c4)
2017-10-17Show better error message when trying to toggle with :setFlorian Bruhin
(cherry picked from commit d8384ced0a958e9841dfbb7f7b0d75f1f8c92f19)
2017-10-16Fix HTML escaping in completionFlorian Bruhin
(cherry picked from commit e766fe14fcde6769f50e02f822b0d788266acc3f)
2017-10-16Fix setting monospace fonts with None valuesFlorian Bruhin
Fixes #3130 (cherry picked from commit 2a65cadb67ec8ec1792e5e6f90b770ae82e6b221)
2017-10-15Add SQLITE_READONLY to environmental errorsFlorian Bruhin
(cherry picked from commit fa4a66f7b38ed038e11f74011c796e2577b3f005)
2017-10-14Improve history formatting in crashdialogFlorian Bruhin
2017-10-14Fix getting history in crash dialogFlorian Bruhin
2017-10-14eslint: Disable multiline-comment-styleFlorian Bruhin
2017-10-14Make sure the config default values are mutableFlorian Bruhin
While the old values meant the same thing, they weren't mutable, so the config couldn't modify them with a simple .append(). Fixes #3104
2017-10-14Update changelogFlorian Bruhin
[ci skip]
2017-10-14Move QOpenGL imports to the topFlorian Bruhin
We don't support Qt < 5.4 anymore anyways.
2017-10-14Run Nvidia shader workaround earlierFlorian Bruhin
We need to do it before utils.opengl_vendor(), and it fits better there anyway. This was a regression in v1.0. See #2554, #3106
2017-10-13Mark content.notifications as QtWebKit-onlyFlorian Bruhin
2017-10-13Skip "History with invalid URL" test on WindowsFlorian Bruhin
For some reason, this hangs a lot on AppVeyor
2017-10-13Release v1.0.1v1.0.1Florian Bruhin
2017-10-13Ignore inotify_add_watch Qt warningFlorian Bruhin
This happens on Travis from time to time.
2017-10-13Update Firefox extension list in READMEFlorian Bruhin
[ci skip]
2017-10-13Prevent empty segfault reportsFlorian Bruhin
2017-10-12Add missing testFlorian Bruhin
2017-10-12Properly fix up version checks...Florian Bruhin
2017-10-12Update changelogFlorian Bruhin
[ci skip]
2017-10-12Fix version checking in earlyinitFlorian Bruhin
With the previous commit, we also checked that PyQt was >= 5.7.1, but we want to support PyQt 5.7.0. Instead, we now check the individual components by hand. Also, the previous check accidentally allowed PyQt >= 5.2.0 instead of 5.7.0.
2017-10-12Also check PyQt version for qtutils.version_check()Florian Bruhin
With an older PyQt built against a newer Qt, we still don't have its features available. This also drops support for exact=True with compiled=True as the semantics for that are unclear, and it's not used.
2017-10-12Fix loading of monospace fonts in configtypes.QtFontFlorian Bruhin
See #3096
2017-10-12Release v1.0.0v1.0.0Florian Bruhin
2017-10-12Remove QtWebKit reference from manpageFlorian Bruhin
2017-10-12Update changelog and install docs for v1.0.0Florian Bruhin
2017-10-12Fix nested lists in changelogFlorian Bruhin
[ci skip]
2017-10-11Update changelog for v1.0.0Florian Bruhin
See #3090 [ci skip]
2017-10-11Prepare release checklist for v1.0.0Florian Bruhin
[ci skip]
2017-10-11Improve fonts.monospace testsFlorian Bruhin
2017-10-11Fix quote handling for fonts.monospace familyFlorian Bruhin
2017-10-11Fix updating fonts when fonts.monospace is changedFlorian Bruhin
Fixes #2973
2017-10-11Fix reading of fonts.monospace on initFlorian Bruhin
See #2973
2017-10-11Fix copy-paste error in colors.messages.warning.border descriptionFlorian Bruhin
2017-10-11Merge pull request #3073 from qutebrowser/sql-errorsFlorian Bruhin
Handle some sqlite errors gracefully
2017-10-11Fix docstringsFlorian Bruhin
2017-10-11Merge remote-tracking branch 'origin/pr/3055'Florian Bruhin
2017-10-11Pass HOME to PyInstaller environmentFlorian Bruhin
This prevents some weird Homebrew errors.
2017-10-11Improve YAML deadline warningFlorian Bruhin
See #2777
2017-10-11Fix lintFlorian Bruhin
2017-10-11Install LibYAML on macOS on TravisFlorian Bruhin
See #2777
2017-10-11Break long lines in travis_run.shFlorian Bruhin
2017-10-11Check for YAML C extensions on TravisFlorian Bruhin
See #2777
2017-10-11Show error when YAML load took too longFlorian Bruhin
See #2777
2017-10-11Add a setting to force the platform and improve Wayland handlingFlorian Bruhin
Closes #3078 See #2932
2017-10-11Another attempt at stabilizing qutescheme.featureFlorian Bruhin
2017-10-11Fix lintFlorian Bruhin
See https://github.com/PyCQA/pylint/issues/1698
2017-10-11Handle RuntimeError in AbstractTab __repr__Florian Bruhin
Apparently it can happen that we try to get a repr of an already destroyed tab. In that case, we display <RuntimeError> as the URL now.