Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-29 | Ensure all tests have known starting states | Travis Ens | |
2020-12-24 | Added test to get complete branch coverage | Travis Ens | |
2020-12-24 | Fixed yamllint whitespace issues. | Travis Ens | |
2020-12-24 | Fixed comparison with None, properly unset environment variables by deleting | Travis Ens | |
them, updated the test to check this behaviour, refactored test code by removing redundant variables and improving readability. | |||
2020-12-21 | Add qt.environ setting in config | Travis Ens | |
Any environment variables can be set using the qt.environ setting in the config. | |||
2020-12-19 | Adjust check_coverage.py whitelist | Florian Bruhin | |
2020-12-19 | Simplify redirection exception hierarchy | Florian Bruhin | |
2020-12-19 | doc: Use Python 3.9 simplified usage formatting | Florian Bruhin | |
2020-12-19 | tox: Use Python 3.8 for pylint | Florian Bruhin | |
See https://github.com/PyCQA/pylint/issues/3760 | |||
2020-12-19 | Clarify QUTE_COMMANDLINE_TEXT in userscript docs | Florian Bruhin | |
2020-12-19 | Add mkvenv.py --update | Florian Bruhin | |
2020-12-14 | Merge pull request #5960 from qutebrowser/update-dependencies | Florian Bruhin | |
Update dependencies | |||
2020-12-14 | Update dependencies | qutebrowser bot | |
2020-12-08 | Update docs | Florian Bruhin | |
2020-12-08 | Fix pylint/coverage | Florian Bruhin | |
2020-12-08 | Update requirements.txt | Florian Bruhin | |
2020-12-08 | Merge remote-tracking branch 'origin/pr/5946' into dev | Florian Bruhin | |
2020-12-08 | Update docs | Florian Bruhin | |
2020-12-08 | Merge remote-tracking branch 'origin/pr/5947' | Florian Bruhin | |
2020-12-08 | Added tests and modifed regex to full match | Marco Zatta | |
2020-12-08 | Parse_duration with one regex only | Marco Zatta | |
2020-12-07 | Update CI deps and assorted CI stuff. | Eli Schwartz | |
2020-12-07 | Migrate read_file from pkg_resources to importlib.resources | Eli Schwartz | |
In python 3.9, we can get any resource from a package subdirectory using files(), but on older versions of python, even where importlib.resources exists, we need the backport. | |||
2020-12-07 | requirements: Remove now unneeded cheroot version bound | Florian Bruhin | |
2020-12-07 | Merge remote-tracking branch 'origin/pr/5944' | Florian Bruhin | |
2020-12-07 | Time units added to :later command | Marco Zatta | |
The :later command is modified to accept either an integer or time duration with properly formatted units. The expected format is XhYmZs, where X, Y and Z are integers corresponding to hours, minutes or seconds respectively. The user needs to specify at least one of the units for the command to work. In case of integer input, unit is assumed to be seconds. | |||
2020-12-07 | ci: Simplify CodeQL workflow | Florian Bruhin | |
2020-12-07 | Merge remote-tracking branch 'origin/pr/5936' | Florian Bruhin | |
2020-12-07 | reduce use of pkg_resources by not extracting a file to find its filename | Eli Schwartz | |
Further progress on #4467 | |||
2020-12-07 | Update dependencies | qutebrowser bot | |
2020-12-04 | scripts: Ignore DXVAVDA errors for smoke test | Florian Bruhin | |
When trying to release in my Windows VM, I get: [1568:5924:1204/204551.986:ERROR:dxva_video_decode_accelerator_win.cc(1399)] DXVAVDA fatal error: could not LoadLibrary: mf.dll: The specified module could not be found. (0x7E) [1568:5924:1204/204551.986:ERROR:dxva_video_decode_accelerator_win.cc(1399)] DXVAVDA fatal error: could not LoadLibrary: mfplat.dll: The specified module could not be found. (0x7E) [1568:5924:1204/204551.986:ERROR:dxva_video_decode_accelerator_win.cc(1399)] DXVAVDA fatal error: could not LoadLibrary: msmpeg2vdec.dll: The specified module could not be found. (0x7E) [1568:5924:1204/204551.986:ERROR:dxva_video_decode_accelerator_win.cc(1407)] DXVAVDA fatal error: could not LoadLibrary: msvproc.dll: The specified module could not be found. (0x7E) This seems to happen on Windows 10 N only, where the Windows Media features (and thus probably DLLs) are missing. See https://github.com/microsoft/playwright/issues/2901 | |||
2020-12-04 | scripts: Update asciidoc version | Florian Bruhin | |
2020-12-04 | Release v1.14.1 | Florian Bruhin | |
2020-12-04 | Update changelog | Florian Bruhin | |
2020-12-04 | Add workaround for pkg_resources warning | Florian Bruhin | |
See https://github.com/pypa/setuptools/issues/2466 | |||
2020-12-04 | Remove unused import | Florian Bruhin | |
2020-12-04 | scripts: Make recompile_requirements less verbose | Florian Bruhin | |
2020-12-04 | Use existing ON_CI constants | Florian Bruhin | |
2020-12-04 | scripts: Skip unnecessary testing in recompile_requirements | Florian Bruhin | |
2020-12-04 | webenginesettings: Move _init_settings()profile-cleanup-1 | Florian Bruhin | |
2020-12-04 | Move webenginesettings._update_settings into ProfileSetter | Florian Bruhin | |
2020-12-04 | webenginesettings: Don't special-case set_dictionary_language | Florian Bruhin | |
2020-12-04 | webenginesettings: Don't special-case cookie policy | Florian Bruhin | |
2020-12-04 | webenginesettings: Deduplicate profile init code | Florian Bruhin | |
2020-12-04 | Skip cookie filtering test with Qt 5.15.0 | Florian Bruhin | |
2020-12-04 | tests: Use cookies page to check for cookies | Florian Bruhin | |
Looks like :jseval is somehow special on QtWebKit... | |||
2020-12-04 | Fix lint | Florian Bruhin | |
2020-12-04 | Use correct profile in init_private_profile() | Florian Bruhin | |
Follow-up to #5813 | |||
2020-12-04 | tests: Avoid calling webenginesettings.init() | Florian Bruhin | |
Since #5813, we now do more work there - and there already is quite a bit of odd patching, so this isn't really the right way forward. For now, replicate the initialization steps we *actually* need inside the tests. I'm not entirely happy with this solution, but it's likely we can revisit this to find something nicer when refactoring profile initialization in general, see #5935. This unfortunately also means there's no good way we can do what `test_default_user_agent_saved` did, so I ended up removing it. | |||
2020-12-04 | Add tests for reiniting private mode | Florian Bruhin | |
See #5810 and #5813 |