aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-09-12Add Utils.isFirefoxmrmr1993
This also stops the content scripts from being injected into each frame on reload (in Firefox only). They do not successfully connect to the background page, and it causes considerable lag, so we lose nothing by doing this.
2017-09-12Note bug fix.Stephen Blott
2017-09-12Merge pull request #2636 from mrmr1993/linkhints-scaled-display-fixStephen Blott
Consider devicePixelRatio when calculating viewport
2017-09-12Consider devicePixelRatio when calculating viewportmrmr1993
This should fix #2635, fix #2633 and fix #2620.
2017-09-07Merge pull request #2626 from smblott-github/ignore-keyboard-layoutStephen Blott
Ignore keyboard layout
2017-09-07Note ignoreKeyboardLayout in README.Stephen Blott
2017-09-07Merge pull request #2631 from mrmr1993/fix-travisStephen Blott
Fix tests: Explicitly select a PhantomJS version for Travis
2017-09-07Fix tests: Explicitly select a PhantomJS version for Travismrmr1993
2017-09-07Use stubs from window.top for tests.Stephen Blott
(Similar to idea suggested by @mrmr1993.) This way: - we do not have to replicate the stub code, and - we have minimal impact on the live implementation.
2017-09-06Merge pull request #2605 from mrmr1993/isTrusted-eventsStephen Blott
Check whether events are trusted before executing listeners
2017-09-04Fix tests for #2626.Stephen Blott
This fixes the tests for #2626. Note: This may not be th best approach. The problem is that, for the first time, we're using `Settings` (and hence `chrome.storage`) within the Vomnibar and HUD iframes, and our `chrome` stubs are not injected into those frames. Mention @mrmr1993. Matt: Do you know of a better approach? Can we inject the stubs programmatically in the tests? An alternative approach would be appreciated.
2017-09-02Fix special keys (e.g. <Shift-Left>).Stephen Blott
2017-09-01Use event.key for numpad.Stephen Blott
See this comment: https://github.com/philc/vimium/pull/2626#issuecomment-326553282.
2017-09-01Handle shifted numeric keys.Stephen Blott
2017-09-01Load settings.js in the HUD.Stephen Blott
2017-09-01Translate event.code key representations to the corresponding event.key format.Stephen Blott
2017-09-01Better explanation of ignoreKeyboardLayout.Stephen Blott
2017-09-01Include Settings in Vomnibar page.Stephen Blott
2017-09-01Implement ignoreKeyboardLayout option in getKeyChar.Stephen Blott
Fixes #2618.
2017-08-31Add ignoreKeyboardLayout option (under advanced).Stephen Blott
2017-08-31Merge pull request #2623 from davidjb/masterStephen Blott
Update URLs to use HTTPS
2017-08-31Update URLs to HTTPS in code, pages and docsDavid Beitey
Updating URLs to use HTTPS provides greater privacy and reduces the potential of having content modified whilst in transit (as it happening more and more by ISPs, networks, state actors etc). These URLs themselves have been tested and confirmed to work over HTTPS.
2017-08-31Use HTTPS for shoulda.js submodule URLDavid Beitey
2017-08-25Merge pull request #2614 from mrmr1993/ff-optionsStephen Blott
Firefox: Use options_ui to declare the options page
2017-08-25FF: Use options_ui to declare the options pagemrmr1993
Firefox doesn't recognise the "options_page" manifest key, and so isn't showing a preferences button for Vimium-ff. By moving to "options_ui", we enable it, and still get the same functionality in Chrome.
2017-08-18Check whether events are trusted before executing listenersmrmr1993
2017-08-17For Firefox, prune more files and bump subversion number to 1.59.2.Stephen Blott
2017-08-17Exclude Coffeescript files for Firefox build.Stephen Blott
2017-08-15Bump version to 1.59.1.Stephen Blott
This is a bug-fix release affecting Firefox only. Accordingly, the Firefox Add-On has been updated, but the Chrome store version will not be updated.
2017-08-15Note search completion fix (Firefox only).Stephen Blott
2017-08-15Fix search completion (Firefox).Stephen Blott
The problem is that Firefox balks at function properties within the response sent via `postMessage` (whereas Chrome does not). A concise and safe way to sanitize the response is to convert it to JSON and back. Fixes #2576.
2017-08-08Merge pull request #2573 from alphaCTzo7G/patch-1Stephen Blott
Update README.md
2017-07-20Update README.mdalphaCTzo7G
2017-05-23Rename to vimium-ff.Stephen Blott
2017-05-20Note Firefox port.Stephen Blott
2017-05-17Consume keyboard events for marks.Stephen Blott
We were leaking both the `keypress` and the `keyup` events when marks are created and used.
2017-05-08Merge pull request #2507 from bingocaller/update-css-gradientStephen Blott
Update linear gradient syntax to avoid deprecation
2017-05-08Update linear gradient syntax to avoid deprecationJesper Nellemann Jakobsen
This updated syntax avoids the following deprecation warning in Chrome Canary v60.0.3090.0: ```[Deprecation] -webkit-gradient is deprecated. Please use linear-gradient or radial-gradient instead.``` This syntax is also supported in Firefox (and [all other modern browsers](https://caniuse.com/#feat=css-gradients)), which could help transitioning the Firefox version, which is in the works.
2017-05-01Merge pull request #2500 from mrmr1993/ff-fix-exclusionsStephen Blott
FF - Fix "Save Changes" from the exclusions popup
2017-05-01FF - Fix updates from the exclusions popupmrmr1993
This stops |Exclusions| from holding a reference to the |value| parameter passed to |Settings.set|. In Firefox, this object is garbage collected when the owning context (the exclusions popup) is closed. The fix for all such cases in the future is to switch to using |Settings.get|, which implicitly does |JSON.parse JSON.stringify value| and thus returns an object in the same context as |Settings|. We could fix this generally by doing this for the |Settings.performPostUpdateHook| call in |Settings.set| instead. However, I'm not convinced that it warrants the overhead of a |JSON.parse| for every |Settings.set| call.
2017-04-25Merge pull request #2496 from mrmr1993/modes-exitStephen Blott
Make Mode::exit idempotent
2017-04-24Make Mode::exit idempotentmrmr1993
2017-04-22Firefox: Add build target to Cakefile.Stephen Blott
2017-04-22Fix global marks.Stephen Blott
This is a follow up to the move to using keydown for all events, and fixes a bug I introduced. Specifically, we were reacting to the first keydown event, which could be just the `Shift` key.
2017-04-22Firefox: Polyfill for selection.type for visual mode.Stephen Blott
@mrmr1993... This puts the logic of how we choose the selection type in one place; so, if you have a better idea of how to determine the selection type, then we just change it here. Once.
2017-04-22Refactor getSelectionType() to DOM utils.Stephen Blott
This is a no-op. It is preparatory to implementing a suitable polyfill for `selection.type` for Firefox.
2017-04-22Revert "Firefox: Fix visual mode."Stephen Blott
This reverts commit 50b117733c4f0ecf9fd507c28d2f2967b5b1404b. Reverting this. In response to comments from @mrmr1993, this is not the best way of achieving what's required.
2017-04-21Firefox: Fix waitForEnterForFilteredHints.Stephen Blott
This is the filtered-hints feature whereby links aren't activiated until the user hits `Enter`. There was a race condition caused by forcing this setting to true for new users *before* the correct storage area was determined in `Settings.init()`. Mention @mrmr1993.
2017-04-21Firefox: Fix visual mode.Stephen Blott
The problem with visual mode is that `@selection.type` isn't implemented in Firefox/Gecko. Here, we simulate the same effect with `anchorNode` and the length of the selection. Mention @mrmr1993.
2017-04-21Firefox: Fix createTab.Stephen Blott
Firefox baulks at "about:newtab" in createTab (but seems happy with no URL specified). Chrome is also happy with no URL specified. (Does this mean that we don't need "about:newtab" ANYWHERE in the code base? Could Settings.defaults.newTabUrl just be ""?) Mention @mrmr1993.