summaryrefslogtreecommitdiff
path: root/qutebrowser/config/configdata.yml
AgeCommit message (Collapse)Author
2021-06-28Update UA completionsFlorian Bruhin
2021-06-24Add colors.prompts.selected.fgFlorian Bruhin
Closes #6559
2021-06-09Fix prefers_reduced_motion on WindowsFlorian Bruhin
See #6530
2021-06-09Add content.prefers_reduced_motionFlorian Bruhin
Closes #6530
2021-05-30Validate encoding for header settingsFlorian Bruhin
Also needed to add encoding check support to FormatString.
2021-05-18Enable URL patterns for fonts.web.*Florian Bruhin
See #3636
2021-05-18Add a new site-specific quirk for Google DocsFlorian Bruhin
See #6464, #5472, #4805, #4810 e010afd3a20a86639396a9c844abfea7b23cc67a https://bugreports.qt.io/browse/QTBUG-69652
2021-04-28Merge remote-tracking branch 'origin/pr/6416'Florian Bruhin
2021-04-28Add a site-specific quirk for DiscordFlorian Bruhin
Closes #4379
2021-04-24Improved readability of statusbar.widgets documentation.Nicholas Schwab
2021-04-22Added text: to valid values of statusbar.widgets, making theNicholas Schwab
documentation more uniform.
2021-04-13Disable replaceAll quirk by defaultFlorian Bruhin
Fixes #6208
2021-04-13Update UA completionsFlorian Bruhin
2021-04-08Updated the documentation regarding statusbar.widgets.Nicholas Schwab
2021-04-08Revert all prefix-related commits.Nicholas Schwab
This reverts commits 02a64630aa83e37e47a28a60366e1c65f0eba3ac to 4ff204aecc96d77209a18594a14da96af703c43f.
2021-04-08Add text-prefix to configdata.yml.Nicholas Schwab
2021-04-08Changed type of statusbar.widgets to PrefixOrString.Nicholas Schwab
2021-04-08Added configtype StatusbarWidget that can either be one of the valid_values ↵Nicholas Schwab
or text:*.
2021-04-08Added simple text widgets to status bar with currently hard-coded content.Nicholas Schwab
2021-04-06Improve content.cookies.accept docsFlorian Bruhin
See #6344
2021-03-27notifications: Fix lintFlorian Bruhin
2021-03-27notifications: Add show_origin settingFlorian Bruhin
2021-03-27notifications: Fix lintFlorian Bruhin
2021-03-27notifications: Update docsFlorian Bruhin
2021-03-27notifications: Fix lintFlorian Bruhin
2021-03-27notifications: Add herbe backendFlorian Bruhin
2021-03-27notifications: Add MessagesNotificationAdapterFlorian Bruhin
2021-03-27notifications: Initialize adapters lazilyFlorian Bruhin
2021-03-27notifications: Rename/consolidate settingsFlorian Bruhin
2021-03-27notifications: Drop Qt 5.13 support in libnotify presenterFlorian Bruhin
Seems to segfault when showing the second notification, despite our workarounds for Qt 5.14. Partial stacktrace: 0x00007fffeeacfdb2 in std::_Function_handler<void (std::unique_ptr<QWebEngineNotification, std::default_delete<QWebEngineNotification> >), meth_QWebEngineProfile_setNotificationPresenter::{lambda(std::unique_ptr<QWebEngineNotification, std::default_delete<QWebEngineNotification> >)#1}>::_M_invoke(std::_Any_data const&, std::unique_ptr<QWebEngineNotification, std::default_delete<QWebEngineNotification> >) () from .../site-packages/PyQt5/QtWebEngineWidgets.so 0x00007fffee89ff62 in QWebEngineProfilePrivate::showNotification(QSharedPointer<QtWebEngineCore::UserNotificationController>&) () from .../site-packages/PyQt5/Qt/lib/libQt5WebEngineWidgets.so.5 0x00007fffe6f45921 in ?? () from .../site-packages/PyQt5/Qt/lib/libQt5WebEngineCore.so.5 It's unlikely this is something we can work around, so let's just require Qt 5.14 instead.
2021-03-25notifications: Change setting and connection error handlingFlorian Bruhin
2021-03-24Merge remote-tracking branch 'origin/pr/5457' into devFlorian Bruhin
2021-03-24Change default binding for TFlorian Bruhin
See #6314 and #2907
2021-03-23Merge remote-tracking branch 'origin/pr/6233'Florian Bruhin
2021-03-23Fix site-specific-quirk check for MathML darkmodeFlorian Bruhin
2021-03-21Merge branch 'master' into feature/6218-pick-directoryAxel Dahlberg
2021-03-20Adding misc-krunker quirkLembrun
2021-03-20Fixed lintLembrun
2021-03-20Adding a setting to disable individual quirkLembrun
2021-03-20Improve bindings.key_mappings descriptionFlorian Bruhin
2021-03-19Add content.tls.certificate_errors = ask-block-thirdpartyFlorian Bruhin
Fixes #3418
2021-03-19Rename ssl_strictFlorian Bruhin
Closes #5156
2021-03-16Add input.media_keys settingFlorian Bruhin
2021-03-12Update UA completionsFlorian Bruhin
2021-03-10Make locale workaround configurableFlorian Bruhin
See #6235
2021-03-09Changes based on feedbackAxel Dahlberg
2021-03-05Handle folder selection with external commandAxel Dahlberg
2021-03-03Update docsFlorian Bruhin
2021-03-03Merge branch 'master' into feature/6109-file-picker-stdoutAxel Dahlberg
2021-02-11Fall back to "prefers-color-scheme: light" on Qt 5.15.2Florian Bruhin
Due to https://bugreports.qt.io/browse/QTBUG-89753, Qt 5.15.2 matches no-preference instead of doing auto-detection. However, no-preference was removed from the CSSWG spec: https://github.com/w3c/csswg-drafts/issues/3857#issuecomment-499523323 Thus, if we are on a buggy Qt version with no auto-detection possible, always assume "light". Quoting the spec (emphasis mine): light: Indicates that user has expressed the preference for a page that has a light theme (dark text on light background), *or has not expressed an active preference* (and thus should receive the "web default" of a light theme). Fixes #6097 See https://github.com/qutebrowser/qutebrowser/issues/6147#issuecomment-776559729