| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-13 | Simplify settings port cleanup logic | mrmr1993 | |
| 2014-12-13 | Fix flipped viewSize properties in scroller. | Stephen Blott | |
| 2014-12-08 | Detect port disconnects (ie. extension is disabled) and disable frontend | mrmr1993 | |
| 2014-12-05 | Make the z-indices a little bit smaller | Phil Crosby | |
| 2014-12-04 | Increase the z-index of all components to close to Number.MAX_VALUE | mrmr1993 | |
| 2014-11-30 | Merge pull request #1238 from ↵ | Phil Crosby | |
| smblott-github/smooth-scrolling-requestAnimationFrame-repeat Smooth scrolling via requestAnimationFrame, with keyboard repeat | |||
| 2014-11-28 | Clear all keydown events that correspond to a keyup event | mrmr1993 | |
| 2014-11-24 | Resize HUD so the contents are fully visible | mrmr1993 | |
| 2014-11-23 | Merge branch 'contentEditable-fix' of github.com:smblott-github/vimium | Stephen Blott | |
| 2014-11-23 | Frames; more cleanup and simplification. | Stephen Blott | |
| 2014-11-23 | Don't record frameIds for frames only containing a frameset | mrmr1993 | |
| Frameset frames have no content of their own -- they only embed other pages in sub-frames. The user can't perform any actions (of ours or the browsers) with a frameset focused, so we might as well just not focus it. | |||
| 2014-11-23 | Remove redundant code, add a new listener to be more consistent | mrmr1993 | |
| 2014-11-23 | Fix frame switching after frame redirect/creation | mrmr1993 | |
| 2014-11-22 | Revert 3f3f256e1abe2a7795ba89ff6b84d4b81fb0a7e2. | Stephen Blott | |
| On reflection, 3f3f256e1abe2a7795ba89ff6b84d4b81fb0a7e2 seems like a bad idea. It's unnecessary, and risks unforeseen consequences. | |||
| 2014-11-20 | Fix isValidFirstKey for eg. function keys | mrmr1993 | |
| 2014-11-20 | Ensure we suppress events for all keys we handle | mrmr1993 | |
| 2014-11-20 | Do not handle keystrokes for contentEditable (check find mode). | Stephen Blott | |
| It is not strictly necessary to check find mode here. However, if we don't do so, then we leave a booby trap for future developers. So we do the extra check. This, hopefully, means that we don't suddenly find ourselves dropping into insert mode just because somebody reorders the code elsewhere. | |||
| 2014-11-20 | Do not handle keystrokes for contentEditable (refactor). | Stephen Blott | |
| 2014-11-18 | Do not handle keystrokes for contentEditable. | Stephen Blott | |
| 2014-11-16 | Smooth scroll; fix-ups requested by @philc. | Stephen Blott | |
| 2014-11-15 | Smooth scroll; optimization and more tidy up. | Stephen Blott | |
| 2014-11-14 | Smooth scroller; move calibration constants out of init. | Stephen Blott | |
| 2014-11-14 | Smooth scroll; better documentation for calibration. | Stephen Blott | |
| 2014-11-14 | Smooth scroll; move doScrollBy to it's own object. | Stephen Blott | |
| The main reason for doing this is so that we can add the (now) CoreScroller callbacks to the handler stack earlier, and therefore track @keyIsDown correctly at startup, while also keeping local state local. | |||
| 2014-11-14 | Smooth scroll; partial fix to race condition. | Stephen Blott | |
| 2014-11-14 | Smooth scroll; incororate feedback from @mrmr1993. | Stephen Blott | |
| 2014-11-13 | Smooth scroll; admit count prefixes. | Stephen Blott | |
| 2014-11-13 | Smooth scroll; yet more refactoring. | Stephen Blott | |
| 2014-11-13 | Smooth scroll; fix displacement and calibrate. | Stephen Blott | |
| 2014-11-13 | Smooth scrolling; note incorrect calibration; MUST BE FIXED! | Stephen Blott | |
| 2014-11-13 | Smooth scrolling; tidy up, better comments. | Stephen Blott | |
| 2014-11-12 | Favicons in the vomnibar; remove support. | Stephen Blott | |
| There are security issues with favicons as implemented previously. This commit removes favicon support entirely. | |||
| 2014-11-11 | Smooth scroll; comments and more minor tidy up. | Stephen Blott | |
| 2014-11-11 | Smooth scroll; add comment and remove unused variable. | Stephen Blott | |
| 2014-11-11 | Smooth scroll; tidy up. | Stephen Blott | |
| 2014-11-11 | Smooth scroll; eliminate race condition. | Stephen Blott | |
| 2014-11-11 | Smooth scroll; tune key-repeat code. | Stephen Blott | |
| 2014-11-11 | Smooth scroll; initial handle keyboard repeat. | Stephen Blott | |
| 2014-11-11 | Smooth scroll; revert entry logic. | Stephen Blott | |
| 2014-11-10 | Change smooth scrolling to requestAnimationFrame, tidy up scroller code | mrmr1993 | |
| 2014-11-09 | Smooth scroll; handle chrome bug and refactor. | Stephen Blott | |
| 2014-11-07 | smooth scroll; fix absolute scrolling of active element. | Stephen Blott | |
| 2014-11-07 | Smooth scrolling. | Stephen Blott | |
| 2014-11-06 | Prune unnecessary stuff in ensureScrollChange. | Stephen Blott | |
| 2014-11-05 | Disable scrolling for `overflow: hidden` elements | mrmr1993 | |
| 2014-11-02 | Don't skip installing listeners. | Stephen Blott | |
| Fix listener installation bug. To see bug, do: - open vimium options page - use 'b' to select and go to a bookmark - use <alt-LEFT_ARROW> to return to options page - vimium key bindings are now *not* installed Bug was introduced in 28e9c8374bfc7a4fd479dbb958a4a87331fb0857. | |||
| 2014-11-02 | Centralize handling of event propagation. | Stephen Blott | |
| 2014-11-02 | Force our key event handlers to have the highest possible priority | mrmr1993 | |
| * The `window` object receives key events before the `document` object, and so any event listeners on `window` get priority. This commit switches from binding `keydown`, `keypress`, `keyup` on `document` to on `window`. * We were using `event.stopPropagation()` to prevent other event listeners from firing if we had handled an event. This stopped the event from propagating to other elements/objects and triggering their event listeners, but didn't block event listeners registered on the same object as ours. Switching to `event.stopImmediatePropagation()` ensures that our event listener is the last to run for the event. Fixing these issues allows Vimium to regain control over key events in Google Groups (eg. the [vimium-dev group](https://groups.google.com/forum/vimium-dev)). | |||
| 2014-10-31 | Merge vomnibarToPage from @mrmr1993. | Stephen Blott | |
| 2014-10-31 | Add comments about moving the Vomnibar to an iframe | mrmr1993 | |
