aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-12-16Increment version to v1.491.49Phil Crosby
2014-12-16Revert "Hide the smooth scroll option from the settings UI"Phil Crosby
This reverts commit 5ec7f490b5e9e68bddb415b66b6cae86841a3d52.
2014-12-16Add a little more context to a commentPhil Crosby
2014-12-16Merge pull request #1336 from smblott-github/do-not-use-math.signPhil Crosby
Do not use Math.sign().
2014-12-16Do not use Math.sign().Stephen Blott
2014-12-16Add comments to nextFrame logic.Stephen Blott
2014-12-16Merge branch 'skip-tiny-frames' of https://github.com/mrmr1993/vimium into ↵Stephen Blott
mrmr1993-skip-tiny-frames
2014-12-16Update version to 1.48Phil Crosby
2014-12-16Merge pull request #1331 from smblott-github/fix-smooth-scrolling-properlyPhil Crosby
Fix scrolling in 1.47, all cases.
2014-12-16Fix smooth scrolling, all cases.Stephen Blott
2014-12-15Update to 1.47Phil Crosby
2014-12-15Merge pull request #1324 from mrmr1993/add-tolerance-to-scroll-checkPhil Crosby
Fix smooth scrolling when zoomed.
2014-12-16Use a tolerance when checking scrolling to fix zoomed scrollsmrmr1993
2014-12-15Skip over tiny frames when calling focusThisFramemrmr1993
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-15Update version number to 1.46Phil Crosby
2014-12-15Change bugfix -> bug fixPhil Crosby
2014-12-15Changelog for 1.46Phil Crosby
2014-12-15Fix typoPhil Crosby
2014-12-15Merge pull request #1313 from ↵Stephen Blott
smblott-github/mrmr1993-stop-memory-leak-for-keydown-repeats Mrmr1993 stop memory leak for keydown repeats
2014-12-15Fix second memory leak in KeydownEvents.Stephen Blott
2014-12-15Rework KeydownEvents as an abject.Stephen Blott
2014-12-15Merge 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-14Only register events as handled oncemrmr1993
2014-12-14Hide the smooth scroll option from the settings UIPhil Crosby
See #1299 for context.
2014-12-14Allow more exclusion rules before showing a scrollbarPhil Crosby
2014-12-14Remove the custom scrollbar stylingPhil Crosby
IMO the default styling looks a lot better, at least on OSX
2014-12-14FRAMESET frames should not be registered.Stephen Blott
Somewhere along the road, this got goofed up. This reverts to the intended behaviour.
2014-12-14Merge pull request #1309 from ↵Stephen Blott
smblott-github/no-default-binding-for-download-link Remove default binding for LinkHints.activateModeToDownloadLink.
2014-12-14Remove 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-14Merge branch 'add-html5-input-types' of https://github.com/mrmr1993/vimium ↵Stephen Blott
into mrmr1993-add-html5-input-types
2014-12-14List HTML5 date types that should use simulateSelectmrmr1993
2014-12-14Update a comment about the changed nature of isSelectablemrmr1993
2014-12-14Add comment to try/catch regexp.Stephen Blott
2014-12-14Wrap RegExp for exclusions in a try catch to prevent parse error failsmrmr1993
2014-12-13Remove insert mode check for keyup handlingmrmr1993
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-13Make keyup event suppression more readablemrmr1993
2014-12-13Merge pull request #1304 from smblott-github/scrolling-fix-viewSizeStephen Blott
Fix flipped viewSize properties in scroller.
2014-12-13Fix flipped viewSize properties in scroller.Stephen Blott
2014-12-12Merge remote-tracking branch 'smblott-github/option-for-options-page'Phil Crosby
Conflicts: pages/options.html
2014-12-05Make the z-indices a little bit smallerPhil Crosby
2014-12-05Merge pull request #1162 from mrmr1993/increase-z-index-to-max-valuePhil Crosby
Increase the z-index to fix issue #1080
2014-12-04Increase the z-index of all components to close to Number.MAX_VALUEmrmr1993
2014-11-30Merge pull request #1238 from ↵Phil Crosby
smblott-github/smooth-scrolling-requestAnimationFrame-repeat Smooth scrolling via requestAnimationFrame, with keyboard repeat
2014-11-30Add Vimium design goalsPhil Crosby
2014-11-30Readme tweaksPhil Crosby
2014-11-30Move section to the maintainers guide on the wikiPhil Crosby
2014-11-29Options; Reintroduce min-height for exclusion rules.Stephen Blott
We need to keep *some* minimum height to avoid the help texts colliding.
2014-11-29Options; release focus on clicking advanced.Stephen Blott
When the show/hide advanced options link is clicked, it gains the focus, and the URL is displayed by chrome in the bottom-left corder of the window. This partially obscures the footer, so we immediately blur the link. Also, same for the "show help" link.
2014-11-29Options; restyle exclusion rules.Stephen Blott
2014-11-28Clear all keydown events that correspond to a keyup eventmrmr1993