| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-01-28 | Simplify hint-string generation; tweaks. | Stephen Blott | |
| 2016-01-28 | Simplify hint-string generation | Stephen Blott | |
| 2016-01-26 | Merge pull request #1941 from smblott-github/temp-01 | Stephen Blott | |
| Remove "beta" label from visual-mode commands. | |||
| 2016-01-26 | Remove "beta" label from visual-mode commands. | Stephen Blott | |
| These seem to be working fine, we can commit to them. | |||
| 2016-01-19 | Merge pull request #1934 from georgemillo/patch-1 | Stephen Blott | |
| Spelling fixes | |||
| 2016-01-18 | Spelling fixes | George Millo | |
| 2016-01-13 | Merge pull request #1932 from brianvanburken/update-browser-action-icons | Stephen Blott | |
| Update browser action icons | |||
| 2016-01-10 | Optimised icons. | Brian van Burken | |
| 2016-01-10 | Improved sharpness of browser action icons. | Brian van Burken | |
| 2016-01-10 | Note fix for #1911 in README. | Stephen Blott | |
| 2016-01-10 | Merge pull request #1930 from smblott-github/fix-endless-scrolling | Stephen Blott | |
| Ensure hint keyup handler is always removed, fix endless scrolling | |||
| 2016-01-09 | Ensure hint handler is always removed. | Stephen Blott | |
| For some (unknown) reason, we do not receive the keyup event for Shift when activating link hints. Consequently, we are not correctly removing the keyup handler. And that handler is blocking subsequent keyup events, which has the effect of endless scrolling (because the scroller relies on keyup events to stop scrolling). Here, we correcttly remove the keyup handler when link-hints mode exits. Fixes #1911. | |||
| 2016-01-02 | Merge pull request #1922 from jdpopkin/update_contributing | Stephen Blott | |
| Update dependencies in CONTRIBUTING | |||
| 2016-01-01 | Update dependencies in CONTRIBUTING | Jackson Popkin | |
| 2015-12-20 | Merge pull request #1916 from brianvanburken/modern-logo | Phil Crosby | |
| Updated logo to current chromium. | |||
| 2015-12-20 | Updated logo to current chromium. | Brian van Burken | |
| 2015-11-20 | Merge pull request #1899 from gaborluk/master | Stephen Blott | |
| Fix indentation so that `openerTabId` takes effect | |||
| 2015-11-20 | Fix indentation so that `openerTabId` takes effect | Gábor Luk | |
| 2015-10-24 | Merge pull request #1865 from mrmr1993/visual-mode-range-getBoundingClientRects | Stephen Blott | |
| Properly check whether the selection is visible in the current viewport | |||
| 2015-10-23 | Properly check whether the selection is visible in the current viewport | mrmr1993 | |
| 2015-10-10 | Merge pull request #1845 from ↵ | Stephen Blott | |
| smblott-github/better-delay-for-filtered-link-hints Block keyboard events when a filtered hint matches. | |||
| 2015-10-10 | Merge pull request #1849 from smblott-github/suppress-trailing-key-events | Stephen Blott | |
| Suppress trailing key events (after link hints). | |||
| 2015-10-04 | Make mode.exit() idempotent. | Stephen Blott | |
| We've been calling hintMode.exit() twice: once explicitly, and once as a side effect of the simulated click event. Since there are so many code paths through link hints, it seems better to simply explicitly make mode.exit() idempotent for all modes. Which is what this commit does. | |||
| 2015-10-04 | Make comment/explanation match implementation. | Stephen Blott | |
| 2015-10-04 | Suppress trailing key events (after link hints). | Stephen Blott | |
| This ensures that -- on leaving link hints mode -- we consume any trailing keyup events (and don't let the underlying page see them). Additional notes: - There are other places where we seem to be leaking keyup events. - A separate bug... It looks like we're calling `exit()` on link-hints mode twice. | |||
| 2015-10-02 | Simplify c9af886a92e4b686456b34949e907a9d79fb223e. | Stephen Blott | |
| 2015-10-02 | Block keyboard events when a filtered hint matches. | Stephen Blott | |
| Previously, we blocked keyboard events for a fixed 200ms. With this PR, we continue blocking keyboard events until 150ms after the last `keydown` or `keypress` event. So, we wait until we think the user has stopped typing. Fixes #1842. | |||
| 2015-09-25 | Increment version to 1.53 | Phil Crosby | |
| 2015-09-21 | Merge pull request #1835 from mrmr1993/add-comment-for-philc | Stephen Blott | |
| Add a comment explaining the choice of XMLHttpRequest for UIComponent | |||
| 2015-09-21 | Add a comment explaining the choice of XMLHttpRequest for UIComponent | mrmr1993 | |
| 2015-09-20 | Merge pull request #1086 from mrmr1993/countMatches | Phil Crosby | |
| Rework to make match counting code for searches more DRY and easier to read | |||
| 2015-09-19 | Note Vimium working on new-tab page. | Stephen Blott | |
| 2015-09-19 | Merge branch 'mrmr1993/xmlhttprequest-uicomponent-styles' | Stephen Blott | |
| 2015-09-19 | Tidy up #1833. | Stephen Blott | |
| 2015-09-18 | Load UIComponent stylesheet via XMLHttpRequest, use background as needed | mrmr1993 | |
| 2015-09-18 | Merge pull request #1827 from mrmr1993/fix-build-errors | Stephen Blott | |
| Use version 0.11 of node's path; new version 0.12 breaks the build | |||
| 2015-09-17 | Fix regression in #1828. | Stephen Blott | |
| In #1828, we (I) broke the fact that `gt` and `gT` should be able to wrap around at the ends (so, for example, `gt` on the right-most tab should take you to the first). | |||
| 2015-09-17 | Note Vomnibar on NTP issue/fix. | Stephen Blott | |
| 2015-09-17 | Merge pull request #1828 from smblott-github/add-count-for-g0-and-g$ | Stephen Blott | |
| Add <count> prefix for g0 and g$. | |||
| 2015-09-17 | Update README for <count>g0/g$. | Stephen Blott | |
| 2015-09-17 | Add <count> prefix for g0 and g$. | Stephen Blott | |
| `2g0` takes you to the second tab. `2g$` takes you to the second last tab. This gives us `gt`/`gT` for relative tab selection and `g0`/`g$` for absolute tab selection. `<count>` previously had no special meaning for `g0` and `g$`, and it's not clear it could have any other meaning than that implemented here. Fixes #1298 (kind of). | |||
| 2015-09-17 | Merge pull request #1821 from mrmr1993/hide-uicomponents-by-default | Stephen Blott | |
| Don't show UIComponent <iframe>s while vimium.css loads | |||
| 2015-09-16 | Use version 0.11 of node path; version 0.12 breaks the build | mrmr1993 | |
| 2015-09-13 | Only show link hints for <label>s for elements without a hint | mrmr1993 | |
| 2015-09-13 | Make <label>s clickable with LinkHints | mrmr1993 | |
| 2015-09-13 | Don't show UIComponent <iframe>s while vimium.css loads | mrmr1993 | |
| This fixes #1817, where our stylesheet isn't loaded correctly due to a Chromium issue and the Vomnibar/HUD <iframe>s are always visible on the new tab page. | |||
| 2015-09-11 | Tweak comment from #1813. | Stephen Blott | |
| 2015-09-11 | Merge pull request #1813 from mrmr1993/stop-decoding-js-uris-after-fix | Stephen Blott | |
| Don't decode javascript URIs on Chrome 46.0.2467.2 and later | |||
| 2015-09-11 | Move repeated conditional FindMode code into one place | mrmr1993 | |
| 2015-09-11 | Move escaping regex special chars to its own utility function | mrmr1993 | |
