summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-06-10Release v1.3.2v1.3.2Florian Bruhin
2018-06-09Remove unused importFlorian Bruhin
(cherry picked from commit 7949335a2ba1efae5bf76c7db54776f3fad4815e)
2018-06-09Fix waiting for initial focus object with Qt 5.11 workaroundsFlorian Bruhin
This was broken in d32d541ac0e3c00e5c17a7a04710567c61e5aaac because now apparently PyQt knows it's a QQuickWidget. (cherry picked from commit ec88c1539099b6d4d2c67fa0896d2509b41976f8)
2018-06-08Further simplify getting focusProxy childrenFlorian Bruhin
(cherry picked from commit d32d541ac0e3c00e5c17a7a04710567c61e5aaac)
2018-06-08Improve RWHV typecheck for focusProxyFlorian Bruhin
(cherry picked from commit cc497bf2ea59e23604bad0d4d6b980feaa9126e5)
2018-06-08Exclude QMenu when trying to find the missing focusProxyFlorian Bruhin
(cherry picked from commit 9725d9ce3349a86a9272ba36011da739bd12c52f)
2018-06-08Show children in focusProxy workaroundFlorian Bruhin
(cherry picked from commit 1531961aebfb799f9c04d056de62d69cf55f2ec0)
2018-06-08Fix check for reloads on Qt < 5.11Florian Bruhin
Equivalent commit on master: 91b4106dcf4e4ba775200a4d9b2f80b8a780249f This was broken in 900efe4a3654b1f4b63ff9afffa29ab6f95bddda
2018-06-07Remove unused importFlorian Bruhin
(cherry picked from commit 4614ad5063b0dc41faac18aa6073b53730f77c7c)
2018-06-07Implement a better workaround for chrome-error:// URLsFlorian Bruhin
It looks like chrome-error://chromewebdata/ triggers another invalid scheme load which is why the endless loop happens. When we install a custom scheme handler for chrome-error:// we can at least show an error page. (cherry picked from commit b1506274c52f2ea84562407a72c3678868c180b3)
2018-06-07Go back to using an invalid scheme for invalid_link.htmlFlorian Bruhin
Otherwise, this breaks the tests on Qt 5.10 (cherry picked from commit 596041c40e2107c3993a8fab4fff3c84cd1ec179)
2018-06-07Make sure external schemes are clickable via hintsFlorian Bruhin
This issue was probably introduced in 545539f28d86c162f0e7f803480ad7fe24b6870f - with JavaScript, we can't "click" on an external link. There might be a better solution using QWebEngineSettings::setUnknownUrlSchemePolicy(QWebEngineSettings::AllowAllUnknownUrlSchemes) temporarily when using hints with PyQt 5.11. Fixes #2833 (cherry picked from commit 89f4333df15d21f223a61abbf6efa6c25e2fa899)
2018-06-07Add a workaround for chrome-error:// loops on Qt 5.11Florian Bruhin
See #3661 (cherry picked from commit 0c0d204fd41230291739e09f8e03f6781c4fa67f)
2018-06-07Skip invalid link tests on Qt 5.11Florian Bruhin
Qt 5.11 just loads about:blank and doesn't let us catch this in acceptNavigationRequest, but the same happens in Chromium as well. See #3661 (cherry picked from commit 999513d5d8cc790b7b072f5c44f06042bd3b82e7)
2018-06-07Use a valid scheme in invalid_link.htmlFlorian Bruhin
This is to avoid triggering QTBUG-63378 which fails differently with a custom scheme. See #3661 (cherry picked from commit d059197bc96f82d25c06089d177975397ce38dfd)
2018-06-07Reenable Qt 5.11 tests on TravisFlorian Bruhin
Fixes #3661 (cherry picked from commit eb6478dd3e34586a899f92a173300df8f296cf88)
2018-06-06Don't run test with failed download on Qt 5.11Florian Bruhin
Looks like we can't use an <a> tag with download-attribute to trigger a failed download in the test on Qt 5.11... See #2298, #3661 (cherry picked from commit 8cc380411976f805a65d1ba6c8b72985a585c22a)
2018-06-06Only set PseudoLayout with Qt 5.11Florian Bruhin
(cherry picked from commit 456fdc55ccff4597227de195d6e8e60ffa737a1e)
2018-06-06Fix lintFlorian Bruhin
(cherry picked from commit 7e31897dcc5b1b5e49719d2d0d1dc6908be36205)
2018-06-06Handle resizing via PseudoLayoutFlorian Bruhin
This fixes the scenario where we just get a grey view when opening a link in a tab from DuckDuckGo. (cherry picked from commit 5147fc832c7320d7f06a07b93e7cea2b2ed20491)
2018-06-06Try harder to get the RenderWidgetHostViewQtFlorian Bruhin
(cherry picked from commit ec6c5ebb699c5cf3cdc56f0f9f48c2e5af0e9a29)
2018-06-06Initial proof of concept for pseudo layoutFlorian Bruhin
Fixes #3920 - hopefully properly this time... (cherry picked from commit cee88cd7ca0a630d79beeca0ed98b9d3b4aeb59e)
2018-05-29travis: Allow Archlinux to fail for nowFlorian Bruhin
See #3661 (cherry picked from commit 6fc3546923b32490d38febe7586d4fcc57b0c317)
2018-05-29setup.py: Set long_description_content_typeFlorian Bruhin
Otherwise, Warehouse (new PyPI) refuses the upload... (cherry picked from commit 52c44d3da623573170e6f40070bef9e2f6e84427)
2018-05-29Release v1.3.1v1.3.1Florian Bruhin
2018-05-29Update changelog for v1.3.1Florian Bruhin
2018-05-28Fix lintFlorian Bruhin
(cherry picked from commit 12e0edbcd0520c530ff18e2ddf054e570c34c35a)
2018-05-28Add some more logging for #3920Florian Bruhin
(cherry picked from commit 17cfb0d39c9c726bdabb53ffa98095ac4405fbd4)
2018-05-28Use functools instead of a lambda for QTimerFlorian Bruhin
It reads nicer, and this is also speculative fix for #3896 as PyQt5 is hopefully better at disconnecting partial-objects from dead objects than it is with lambdas. (cherry picked from commit 7162f15348219d3736a8d17785d9b6e2dff49f8f)
2018-05-22Handle ² keypress correctlyFlorian Bruhin
Turns out str.isdigit() also handles ² as a digit, but int('²') causes a ValueError. Here we use `string.digits` instead, which is '0123456789'. Fixes #3743 (cherry picked from commit 29ad252278a3dab5f7d11181f93f65ef7b728d80)
2018-05-22Properly work around Qt 5.11 keyboard focus issuesFlorian Bruhin
Please let this be the last attempt... :D Fixes #3939 Supersedes #3921 Reverts ae295a7f652ed851ac8b258aa10500d72e6a52b6 See #3661 This should not regress #3872. Might affect #3834 in some way. (cherry picked from commit 71ad8bdb47a4cd6a8321eb189533741ef6f806a4)
2018-05-17Fix reload for JavaScript support on Qt 5.11Florian Bruhin
(cherry picked from commit 6ccd69dad200682f7f4ace9d093a444c14825499)
2018-05-17Add workaround for the "split page" Qt bug (QTBUG-68224)Florian Bruhin
Fixes #3920 (cherry picked from commit 44d26f77a5007177a4a7df4c811b0b2cf084dbc6)
2018-05-17Improve configuration docsFlorian Bruhin
(cherry picked from commit 20efaeff197f1cb0d8b5957e0cf61cb1759f321b)
2018-05-03Release v1.3.0v1.3.0Florian Bruhin
2018-05-03Update changelog for v1.3.0Florian Bruhin
2018-05-03Add test for #3753Florian Bruhin
2018-05-03Disable spellcheck when it's unneeded.Florian Bruhin
Fixes #3753
2018-05-03Update changelogFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3702'Florian Bruhin
2018-05-03Call setFocus() when navigatingFlorian Bruhin
See #3661: https://github.com/qutebrowser/qutebrowser/issues/3661#issuecomment-386308601 This doesn't seem to fully fix this, but at least the top four failed tests there... This should not regress #3872. Might affect #3834 in some way.
2018-05-03Revert "Always set FocusOnNavigationEnabled"Florian Bruhin
This reverts commit fa41af63b67b007a67cbac1b119729d030b9e533. See #3661 Fixes #3872
2018-05-03Call _handle_search before leaving the modeFlorian Bruhin
2018-05-03Fix lintFlorian Bruhin
2018-05-03Add a stop-gap solution for AssertionError when retrying downloadsFlorian Bruhin
See #3847
2018-05-03Handle event_target() being NoneFlorian Bruhin
As a stop-gap solution for #3888
2018-05-03Update changelogFlorian Bruhin
2018-05-03Refactor handling search in command.pyFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3796'Florian Bruhin
2018-05-03Refactor matching of Greasemonkey scriptsFlorian Bruhin