diff --git a/README.asciidoc b/README.asciidoc index de273e117..4a06335d5 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -172,11 +172,11 @@ Contributors, sorted by the number of commits in descending order: * jnphilipp * Tobias Patzl * Peter Michely +* Larry Hynes * Johannes Altmanninger * Samir Benmendil * Regina Hug * Mathias Fussenegger -* Larry Hynes * Fritz V155 Reichwald * Franz Fellner * zwarag diff --git a/qutebrowser/browser/webview.py b/qutebrowser/browser/webview.py index 54620a0fd..c06325ce4 100644 --- a/qutebrowser/browser/webview.py +++ b/qutebrowser/browser/webview.py @@ -530,8 +530,8 @@ class WebView(QWebView): "match for: {}".format(text), immediately=True) else: - message.error(self.win_id, "Text '{}' not found on " - "page!".format(text), immediately=True) + message.warning(self.win_id, "Text '{}' not found on " + "page!".format(text), immediately=True) else: def check_scroll_pos(): """Check if the scroll position got smaller and show info.""" diff --git a/scripts/dev/src2asciidoc.py b/scripts/dev/src2asciidoc.py index 54ae4e0cf..af0c76730 100755 --- a/scripts/dev/src2asciidoc.py +++ b/scripts/dev/src2asciidoc.py @@ -391,6 +391,7 @@ def _get_authors(): 'Alexey Nabrodov': 'Alexey "Averrin" Nabrodov', 'Michael': 'Halfwit', 'Error 800': 'error800', + 'larryhynes': 'Larry Hynes', } commits = subprocess.check_output(['git', 'log', '--format=%aN']) authors = [corrections.get(author, author)