| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-16 | Fix smooth scrolling, all cases. | Stephen Blott | |
| 2014-12-15 | Update to 1.47 | Phil Crosby | |
| 2014-12-15 | Merge pull request #1324 from mrmr1993/add-tolerance-to-scroll-check | Phil Crosby | |
| Fix smooth scrolling when zoomed. | |||
| 2014-12-16 | Use a tolerance when checking scrolling to fix zoomed scrolls | mrmr1993 | |
| 2014-12-15 | Skip over tiny frames when calling focusThisFrame | mrmr1993 | |
| GMail and Google Inbox both use a large number of small (typically 0x0 or 1x1 frames) which we have to pass over with nextFrame to get to the frames we want. We avoid this issue by ignoring all frames with height or width < 3, since these will be essentially invisible to the user anyway. | |||
| 2014-12-15 | Update version number to 1.46 | Phil Crosby | |
| 2014-12-15 | Change bugfix -> bug fix | Phil Crosby | |
| 2014-12-15 | Changelog for 1.46 | Phil Crosby | |
| 2014-12-15 | Fix typo | Phil Crosby | |
| 2014-12-15 | Fix z-index to be consistent with vimium.css. | Stephen Blott | |
| The z-indexes in vimium.css were recently changed. Those changes didn't get pushed through into vomnibar.css when moving the vomnibar to an iframe. Fixed here. | |||
| 2014-12-15 | Merge branch 'master' into post-1.46 | Stephen Blott | |
| 2014-12-15 | Merge pull request #1313 from ↵ | Stephen Blott | |
| smblott-github/mrmr1993-stop-memory-leak-for-keydown-repeats Mrmr1993 stop memory leak for keydown repeats | |||
| 2014-12-15 | Fix second memory leak in KeydownEvents. | Stephen Blott | |
| 2014-12-15 | Minor cleanup in evaluateXPath. | Stephen Blott | |
| 2014-12-15 | Merge branch 'fullscreen-children-linkhints' of ↵ | Stephen Blott | |
| https://github.com/mrmr1993/vimium into mrmr1993-fullscreen-children-linkhints | |||
| 2014-12-15 | Rework KeydownEvents as an abject. | Stephen Blott | |
| 2014-12-15 | Merge branch 'stop-memory-leak-for-keydown-repeats' of ↵ | Stephen Blott | |
| https://github.com/mrmr1993/vimium into mrmr1993-stop-memory-leak-for-keydown-repeats | |||
| 2014-12-15 | Merge remote-tracking branch 'upstream/master' into post-1.46 | Stephen Blott | |
| 2014-12-15 | Restrict evaluateXPath to the fullscreen element when fullscreen | mrmr1993 | |
| 2014-12-14 | Only register events as handled once | mrmr1993 | |
| 2014-12-14 | Hide the smooth scroll option from the settings UI | Phil Crosby | |
| See #1299 for context. | |||
| 2014-12-14 | Allow more exclusion rules before showing a scrollbar | Phil Crosby | |
| 2014-12-14 | Remove the custom scrollbar styling | Phil Crosby | |
| IMO the default styling looks a lot better, at least on OSX | |||
| 2014-12-14 | FRAMESET frames should not be registered. | Stephen Blott | |
| Somewhere along the road, this got goofed up. This reverts to the intended behaviour. | |||
| 2014-12-14 | FRAMESET frames should not be registered. | Stephen Blott | |
| Somewhere along the road, this got goofed up. This reverts to the intended behaviour. | |||
| 2014-12-14 | Minor refactoring of CursorHider. | Stephen Blott | |
| 2014-12-14 | Merge branch 'hideMouseOnLinux' of https://github.com/mrmr1993/vimium into ↵ | Stephen Blott | |
| mrmr1993-hideMouseOnLinux | |||
| 2014-12-14 | Merge branch 'disable-on-disable' of https://github.com/mrmr1993/vimium into ↵ | Stephen Blott | |
| mrmr1993-disable-on-disable | |||
| 2014-12-14 | Merge branch 'vomnibarToPage' of https://github.com/smblott-github/vimium ↵ | Stephen Blott | |
| into smblott-github-vomnibarToPage Conflicts: background_scripts/main.coffee content_scripts/vimium.css content_scripts/vomnibar.coffee lib/utils.coffee | |||
| 2014-12-14 | Check if cursorHideStyle is in the document before remove()-ing it | mrmr1993 | |
| 2014-12-14 | Use a boolean to track whether we are scrolling in CursorHider | mrmr1993 | |
| 2014-12-14 | Remove unused code in CursorHider | mrmr1993 | |
| 2014-12-14 | Use cursor: none and pointer-events: none to hide the cursor on scroll | mrmr1993 | |
| 2014-12-14 | Implement cursor hiding on scroll | mrmr1993 | |
| This begins to address #662, by hiding the cursor when the page is scrolled to prevent a distracting cursor and accidentally triggering hover effects. | |||
| 2014-12-14 | Merge pull request #1309 from ↵ | Stephen Blott | |
| smblott-github/no-default-binding-for-download-link Remove default binding for LinkHints.activateModeToDownloadLink. | |||
| 2014-12-14 | Remove default binding for LinkHints.activateModeToDownloadLink. | Stephen Blott | |
| LinkHints.activateModeToDownloadLink is newly-added, and hasn't been in a release before. It's an advanced command, and it's not clear it warrants a default binding. | |||
| 2014-12-14 | Merge branch 'add-html5-input-types' of https://github.com/mrmr1993/vimium ↵ | Stephen Blott | |
| into mrmr1993-add-html5-input-types | |||
| 2014-12-14 | List HTML5 date types that should use simulateSelect | mrmr1993 | |
| 2014-12-14 | Update a comment about the changed nature of isSelectable | mrmr1993 | |
| 2014-12-14 | Add comment to try/catch regexp. | Stephen Blott | |
| 2014-12-14 | Wrap RegExp for exclusions in a try catch to prevent parse error fails | mrmr1993 | |
| 2014-12-13 | Remove insert mode check for keyup handling | mrmr1993 | |
| If we have handled a keydown then we should always handle its corresponding keyup, regardless of what mode we're in. This prevents us from passing the keyup event for `i` to the page when we enter insert mode. | |||
| 2014-12-13 | Make keyup event suppression more readable | mrmr1993 | |
| 2014-12-13 | Simplify settings port cleanup logic | mrmr1993 | |
| 2014-12-13 | Merge pull request #1304 from smblott-github/scrolling-fix-viewSize | Stephen Blott | |
| Fix flipped viewSize properties in scroller. | |||
| 2014-12-13 | Fix flipped viewSize properties in scroller. | Stephen Blott | |
| 2014-12-12 | Merge remote-tracking branch 'smblott-github/option-for-options-page' | Phil Crosby | |
| Conflicts: pages/options.html | |||
| 2014-12-08 | Detect port disconnects (ie. extension is disabled) and disable frontend | mrmr1993 | |
| 2014-12-06 | Only consider fullscreen elements' children for link hints | mrmr1993 | |
| 2014-12-05 | Make the z-indices a little bit smaller | Phil Crosby | |
