summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-26Release v0.8.0v0.8.0Florian Bruhin
2016-07-26tests: Add v0.8.0 to old_configsFlorian Bruhin
2016-07-26Un-hide --backend argumentFlorian Bruhin
2016-07-26tab API: Rename scroll to scrollerFlorian Bruhin
The scroll attribute did overwrite QWidget.scroll which is unfortunate.
2016-07-26Use real slots for QtWebKit signalsFlorian Bruhin
Otherwise we can get this when immediately quitting: Traceback (most recent call last): File ".../qutebrowser/browser/webkit/webkittab.py", line 580, in <lambda> not self._widget.page().error_occurred)) RuntimeError: wrapped C/C++ object of type WebView has been deleted
2016-07-26Improve test_smokeFlorian Bruhin
There's currently an error on exit which doesn't get caught with --nowindow and not with ":later 500 quit". We also need to check the output as there's an additional segfault when that happens...
2016-07-26Clean up changelogFlorian Bruhin
2016-07-26Merge branch 'paretje-bash'Florian Bruhin
2016-07-26Merge branch 'bash' of https://github.com/paretje/qutebrowser into paretje-bashFlorian Bruhin
2016-07-26Add KeyConfigStub.get_reverse_bindings_forFlorian Bruhin
2016-07-26Don't pass 2 arguments to shebangKevin Velghe
On most platforms (according to shellcheck), you can't pass two arguments in a shebang. I.e. on Debian you get: /usr/bin/env: ‘bash -e’: No such file or directory
2016-07-26Remove unused importsFlorian Bruhin
2016-07-26Display key hint for :prompt-download-openFlorian Bruhin
This also splits up _display_question into one method per mode.
2016-07-26Merge branch 'Kingdread-open-download'Florian Bruhin
2016-07-26Update docsFlorian Bruhin
2016-07-26Add keyconf.get_reverse_bindings_forFlorian Bruhin
2016-07-26Merge branch 'open-download' of https://github.com/Kingdread/qutebrowser ↵Florian Bruhin
into Kingdread-open-download
2016-07-26Merge branch 'mlochbaum-mark-del-no-args'Florian Bruhin
2016-07-26Update docsFlorian Bruhin
2016-07-26Merge branch 'mark-del-no-args' of https://github.com/mlochbaum/qutebrowser ↵Florian Bruhin
into mlochbaum-mark-del-no-args
2016-07-25test requirements: Update CherryPy to 7.1.0Florian Bruhin
Implement systemd's socket activation mechanism for CherryPy servers, based on work sponsored by Endless Computers. Socket Activation allows one to setup a system so that systemd will sit on a port and start services 'on demand' (a little bit like inetd and xinetd used to do).
2016-07-25Add more number filesMarshall Lochbaum
2016-07-25Update OS X install instructionsFlorian Bruhin
Closes #1656
2016-07-25flake8 requirements: Update flake8-tuple to 0.2.12Florian Bruhin
flake8>=3.0.0 compatibility
2016-07-25flake8 requirements: Pin flake8 properlyFlorian Bruhin
2016-07-25flake8 requirements: Filter to flake8 < 3.0Florian Bruhin
2016-07-25test requirements: Update CherryPy to 7.0.0Florian Bruhin
7.0.0 ----- Removed the long-deprecated backward compatibility for legacy config keys in the engine. Use the config for the namespaced-plugins instead: - autoreload_on -> autoreload.on - autoreload_frequency -> autoreload.frequency - autoreload_match -> autoreload.match - reload_files -> autoreload.files - deadlock_poll_frequency -> timeout_monitor.frequency 6.2.1 ----- Fix KeyError in Bus.publish when signal handlers set in config.
2016-07-25Don't enable warnings if log was never initedFlorian Bruhin
Otherwise, anything importing qtutils (which uses ignore_py_warnings on module level) would enable warnings. This means pylint showed its own warnings because of qute_pylint.config.
2016-07-23Fix 'is not' string comparisonFlorian Bruhin
2016-07-23Remove useless super-callsFlorian Bruhin
2016-07-23Merge branch 'master' into mark-del-no-argsMarshall Lochbaum
2016-07-23Update numbers in urlmarks testMarshall Lochbaum
2016-07-23Use quickmark-add rather than quickmark-save in testMarshall Lochbaum
2016-07-23Use DoesNotExistError rather than CommandError in get_by_qurlMarshall Lochbaum
2016-07-23Assume _current_url is valid (remove try/except)Marshall Lochbaum
2016-07-23Use qtutils.ensure_valid instead of testing isValid in get_by_qurlMarshall Lochbaum
2016-07-23Close file stream in qute_pylint.modelineFlorian Bruhin
2016-07-23Remove quickmark_del and bookmark_del from the urlmark classes (use delete ↵Marshall Lochbaum
instead)
2016-07-23Merge branch 'winged-issue_1033_bookmark_display'Florian Bruhin
2016-07-23Update docsFlorian Bruhin
2016-07-23Merge branch 'issue_1033_bookmark_display' of ↵Florian Bruhin
https://github.com/winged/qutebrowser into winged-issue_1033_bookmark_display
2016-07-23Various fixes after code review.David Vogt
* Move documentation changes of bookmark / quickmarks to docstrings, as the asciidoc is autogenerated from those * Fix some whitespaces in the BDD test cases * Improved docstring in qute_bookmarks handler
2016-07-23Also ignore ImportWarning for pkg_resources importFlorian Bruhin
2016-07-23Merge branch 'ganwell-issue_1670_tests_fail_due_to_SSL_error'Florian Bruhin
2016-07-23Minor cleanups. Whitespace / indentation CSS.David Vogt
There were some CSS classes that were not used in the bookmarks page. Also, fixes a small indentation / code alignment issue
2016-07-23Update authorsFlorian Bruhin
2016-07-23Ignore warning when importing pkg_resourcesFlorian Bruhin
On Debian Jessie we get a PendingDeprecationWarning which we now see since the log is init'ed earlier.
2016-07-23Add log.ignore_py_warnings()Florian Bruhin
2016-07-23Merge branch 'issue_1670_tests_fail_due_to_SSL_error' of ↵Florian Bruhin
https://github.com/ganwell/qutebrowser into ganwell-issue_1670_tests_fail_due_to_SSL_error
2016-07-23Sort bookmarks / quickmarks by title or name respectively.David Vogt