aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-10-08Note alphabet hints for filtered hints.Stephen Blott
2017-10-07Added UpToDate autocompletion enginePavel Yarmak
2017-10-07Merge remote-tracking branch 'origin/master'Pavel Yarmak
2017-10-07Merge branch 'ahstro/feature/upper-case-link-hints'Stephen Blott
2017-10-07Tweak #2701 (hint characters for filtered hints).Stephen Blott
Some tweaks to #2701 from @ahstro. 1. Simplify the logic for calculating `modifiers`. 2. Revert the ordering of the `event.repeat` test and `keyChar` assignment. 3. Link hint characters *only* match in upper case. 4. If there are link-hint characters (non numbers), then shifted characters are only ever hints. 5. Otherwise, revert to doing all hint text comparison in lower case.
2017-10-06Merge pull request #2699 from mc10/patch-2Stephen Blott
travis: Clean up config
2017-10-06Allow using capital letters as link hint charactersAnton Strömkvist
2017-10-06Merge pull request #2703 from mrmr1993/fix-test-typoStephen Blott
Correct a longstanding typo in DOM tests
2017-10-06Correct a longstanding typo in DOM testsmrmr1993
2017-10-04Merge pull request #2698 from mc10/patch-1Stephen Blott
README: Use the SVG Travis badge and relative links
2017-10-04travis: Clean up configKevin Ji
Use a non-ancient version of Node in sudo-less mode. Scripts do not need to be wrapped with quotes.
2017-10-04README: Use the SVG Travis badge and relative linksKevin Ji
2017-10-02Merge pull request #2691 from mrmr1993/ff-fix-xmlStephen Blott
FF: Lazy load the Vomnibar for XML documents
2017-10-02FF: Lazy load the Vomnibar for XML documentsmrmr1993
Injecting HTML into XML documents on Firefox breaks the rendering (collapsing it into plain text). By not loading it until explicitly requested, we can avoid this breakage (at least, until a user triggers some of our UI manually).
2017-10-01Merge pull request #2687 from mrmr1993/fix-popupStephen Blott
Fix the popup dialog
2017-10-01Include DOM utils in the popup dialogmrmr1993
DOM utils are required to inject user CSS.
2017-10-01Merge pull request #2685 from alphaCTzo7G/patch-2Stephen Blott
Updated "Treat find queries as regular expressions"
2017-09-30Update "Treat find queries as regular expressions"Dibyadeep Paul
Changed "Treat find queries as regular expressions" to "Treat find queries as Javascript regular expressions", to reduce confusion. There are tonnes of different types of regular expressions, so specifying what type of regular expressions is used, will reduce confusion.
2017-09-30Merge branch 'curipha-search-compl-amazon-co-jp'Stephen Blott
2017-09-30Use Japan instead of Jp.Stephen Blott
2017-09-30Merge pull request #2665 from curipha/search-compl-google-co-jpStephen Blott
Search completion; add support for Google.co.jp completion
2017-09-30Merge pull request #2683 from mrmr1993/inject-css-for-framesStephen Blott
Inject user css into all frames
2017-09-30Merge pull request #2682 from mrmr1993/ff-setOpenerStephen Blott
Use openerTabId in chrome.tabs.create when possible
2017-09-30Merge pull request #2681 from mrmr1993/ff-link-hints-new-tabsStephen Blott
FF: Simulate default click action for <a target="_blank">s
2017-09-29Add stub to fix unit testsmrmr1993
2017-09-29Manually inject custom user CSS into our own frames/pagesmrmr1993
2017-09-29Inject custom user styles into all framesmrmr1993
This fixes #2594.
2017-09-29Use openerTabId in chrome.tabs.create when possiblemrmr1993
2017-09-29Simulate default click action for <a target="_blank">smrmr1993
2017-09-28Bump to 1.60.4 (firefox only).Stephen Blott
2017-09-25Merge pull request #2602 from mrmr1993/ff-link-hints-new-tabsStephen Blott
Firefox: Simulate default action for clicking links with link hints
2017-09-23Search completion; add support for Google.co.jp completionTaichi
2017-09-23Search completion; add support for Amazon.co.jp completionTaichi
2017-09-21Move simulating click default action to DomUtils, add shift handlingmrmr1993
2017-09-21Add openUrlInNewWindow commandmrmr1993
2017-09-21Use Utils.isFirefox for link hints fixmrmr1993
2017-09-21FF: Simulate default action for clicking links with link hintsmrmr1993
2017-09-18Merge pull request #2658 from smblott-github/recognise-moz-extension-URLStephen Blott
Recognise (FF) internal URLs.
2017-09-18Recognise (FF) internal URLs.Stephen Blott
Recognise URLs like: - moz-extension://c66906b4-3785-4a60-97bc-094a6366017e/pages/options.html Fixes #2657.
2017-09-15Merge pull request #2653 from smblott-github/use-textContentStephen Blott
Use .textContent instead of .innerHTML, where appropriate.
2017-09-15Use .textContent instead of .innerHTML, where appropriate.Stephen Blott
From a FF extension reviewer (gatekeeper) on Mozilla add-ons: Comments: Thank you for your contribution. Please note the following for the next update: 1) For inserting text, textContent (or JQuery text) or createTextNode() should be used instead of innerHTML. eg: $(&quot;saveOptions&quot;).innerHTML = &quot;Save Changes&quot;; So, here, `.innerHTML` is replaced with `.textContent` for elements which only ever have text content.
2017-09-15Bump to v1.60.3.v1.60.3Stephen Blott
2017-09-15Merge pull request #2649 from mrmr1993/linkhints-scaled-display-fixStephen Blott
Always use getBoundingClientRect for getViewportTopLeft
2017-09-14FF: Tweak getViewportTopLeft to use borderTop/Left for clientTop/Leftmrmr1993
2017-09-14Always use getBoundingClientRect for getViewportTopLeftmrmr1993
2017-09-14Bump to v1.60.2.v1.60.2Stephen Blott
2017-09-14Merge pull request #2645 from smblott-github/fix-zoomStephen Blott
Revert #2636.
2017-09-14Revert #2636.Stephen Blott
Mention @mrmr1993. Mention @gdh1995. We have zoom issues resulting from: - style - zoom - --force-device-scale-factor=1.5 - HiDPI This intended to fix HiDPI, but seems to have created problems in the some of the other cases. I don't have time to figure out the problem right now, so I'm going to revert this and push it as 1.60.2. That leaves us pretty much where we were before, I think, in terms of zoom. We can come back to it later.
2017-09-14Add link to issue.Stephen Blott
2017-09-14Bump to 1.60.1 - fix #2642.v1.60.1Stephen Blott