| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-06 | Modes; Note visual mode not yet implemented. | Stephen Blott | |
| 2015-01-04 | Modes; various improvements. | Stephen Blott | |
| - Add StateMode. - PasskeysMode is a StateMode. - BadgeUpdateMode is a StateMode. - Improve badge handling. - Add push method to Mode. - Document how modes work. - Cache badge on background page to reduce the number of updates. - Remove badge restriction on document.body?.tagName.toLowerCase() == "frameset". - Add ExitOnEscape mode, use it for ConstrainedMode and FindMode. - Move PostFindMode to its own file. | |||
| 2015-01-03 | Modes; visual-mode template. | Stephen Blott | |
| Visual mode command has been create: bound to `v`, of course. The template is in mode_visual.coffee. It shouldn't really be necessary to make changes outside of there. Let me know if you have any issues. | |||
| 2015-01-02 | Modes; incorporate find mode. | Stephen Blott | |
| 2015-01-02 | Modes; simplify badge handling. | Stephen Blott | |
| 2015-01-02 | Modes; fix badges. | Stephen Blott | |
| 2015-01-02 | Modes; rework badge handling and fix passkeys mode. | Stephen Blott | |
| 2015-01-01 | Modes; incorporate three test modes. | Stephen Blott | |
| As a proof of concept, this incorporates normal mode, passkeys mode and insert mode. | |||
| 2014-12-31 | Simplify search engine logic. | Stephen Blott | |
| 2014-12-30 | Delay recognising query as search-engine query. | Stephen Blott | |
| 2014-12-30 | Merge branch 'search-engine-descriptions' of ↵ | Stephen Blott | |
| https://github.com/smblott-github/vimium into smblott-github-search-engine-descriptions | |||
| 2014-12-30 | Merge branch 'master' into post-1.46 | Stephen Blott | |
| 2014-12-30 | Merge branch 'passkeys---union-of-rules' of ↵ | Stephen Blott | |
| https://github.com/smblott-github/vimium into smblott-github-passkeys---union-of-rules | |||
| 2014-12-30 | Exclusions; use querySelector to find sub-elements. | Stephen Blott | |
| As @philc pointed out in #1366, this is less brittle. | |||
| 2014-12-30 | Add description to default search engines settings. | Stephen Blott | |
| 2014-12-30 | Minor changes to vomnibar-in-iframe. | Stephen Blott | |
| From top to bottom on the diff: - The echo handler on the background page is no longer required. - Simplify/refactor vomnibarUI message handler. - Initialise vomnibar query to "" (rather than null) and simplify. - No need to focus parent window when vomnibar closes; that's handled by the iframe framework. Also no need to blur. | |||
| 2014-12-29 | Remove UI component demo. | Stephen Blott | |
| 2014-12-29 | Merge branch 'smblott-uicomponent-iframe' into post-1.46-with-uicomponent-iframe | Stephen Blott | |
| Conflicts: content_scripts/vimium_frontend.coffee manifest.json | |||
| 2014-12-29 | Descriptions for custom search engines. | Stephen Blott | |
| 2014-12-29 | Merge pull request #1384 from ↵ | Stephen Blott | |
| smblott-github/fix-search-custom-search-engine-support Uniform treatment of search queries | |||
| 2014-12-29 | Refactor UIComponent, etc., and demo. | Stephen Blott | |
| - Simplify component API. - Iframe flashes on re-focus. - Probably some other stuff which I've forgotten. | |||
| 2014-12-29 | IFrame framework; develop demo. | Stephen Blott | |
| 2014-12-28 | Consistent treatment of search terms. | Stephen Blott | |
| 2014-12-28 | Use + as separator for search engines. | Stephen Blott | |
| 2014-12-24 | Merge remote-tracking branch 'upstream/master' into post-1.46 | Stephen Blott | |
| 2014-12-21 | fixes spelling error | Josh Kim | |
| 2014-12-21 | Exclusion; minor updates after review. | Stephen Blott | |
| 2014-12-21 | Exclusion; fix tests. | Stephen Blott | |
| 2014-12-21 | Exclusion; unique keys. | Stephen Blott | |
| 2014-12-21 | Exclusion; show state. | Stephen Blott | |
| 2014-12-21 | Exclusion; absolute exclusion rules taje priority. | Stephen Blott | |
| 2014-12-21 | Exclusion; multi-rule matching. | Stephen Blott | |
| 2014-12-21 | Exclusion; minor refactoring. | Stephen Blott | |
| 2014-12-20 | Exclusion; allow multiple matching rules. | Stephen Blott | |
| 2014-12-16 | Merge branch 'master' into post-1.46 | Stephen Blott | |
| Conflicts: background_scripts/main.coffee | |||
| 2014-12-16 | URIEncode search engine queries. | Stephen Blott | |
| 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-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 | 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 | 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-11-30 | Merge pull request #1238 from ↵ | Phil Crosby | |
| smblott-github/smooth-scrolling-requestAnimationFrame-repeat Smooth scrolling via requestAnimationFrame, with keyboard repeat | |||
| 2014-11-24 | Frames; eliminate Array::rotate (and support large counts). | Stephen Blott | |
| 2014-11-24 | Frames; eliminate Array::rotate. | Stephen Blott | |
| Array::rotate extends the array object, polluting its name space; so, instead, we just rotate the array manually. | |||
| 2014-11-23 | Frames; more cleanup and simplification. | Stephen Blott | |
| 2014-11-23 | Frames; just add new frames to the end. | Stephen Blott | |
| We don't need to worry where frames are added, nextFrame will find the right frame to start from anyway. | |||
| 2014-11-23 | Frames; always start rotation from the current frame. | Stephen Blott | |
| 2014-11-23 | Frames; remove unnecessary comments. | Stephen Blott | |
| 2014-11-23 | Frames; do not guess frame on unregisterFrame. | Stephen Blott | |
| 2014-11-23 | Frames; more tidy up; fix typo. | Stephen Blott | |
