| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-07-26 | Upgrade to manifest version 2. | Jez Ng | |
| I use the beta channel by default, and it no longer allows me to run development builds with the old manifest version. | |||
| 2012-07-06 | Bookmarks mode in Vomnibar | ilya | |
| 2012-07-01 | Disable the Vimium browser action until we can polish it some more and get a ↵ | Phil Crosby | |
| new icon. Sorry dmac! Next release. | |||
| 2012-06-12 | Uppercase utils -> Utils | Phil Crosby | |
| 2012-06-12 | Port settings.js to coffeescript | Phil Crosby | |
| 2012-06-12 | Port commands.js to coffeescript | Phil Crosby | |
| 2012-06-10 | Perform a google search if they hit enter with no selection. | Phil Crosby | |
| 2012-06-10 | Complete tabs in the omnibar. | Phil Crosby | |
| Right now this is triggered on Shift+T. Firefox also does tab matching in their omnibar. I'm not sure if collapsing the two searches into one UI is a good idea. | |||
| 2012-06-03 | Add a domain completer | Phil Crosby | |
| 2012-06-03 | A WIP rewrite of completion in the vomnibar. | Phil Crosby | |
| The purpose of this refactor is to simplify the contract so it's easier to modify, and to make some substantial usability improvements. One of the key differences is that matching is no longer fuzzy. If you want to search more than one term, separate them by spaces. This matches the behavior in Firefox. While fuzzy matching is a nice experience for a limited set of known items (like files in the current project), it doesn't work well for a huge messy collection, like URLs in your history. The query "hello" will match random stuff from your google search results for instance, and it's hard to prune that noise using ranking intelligence. | |||
| 2012-05-29 | Use a less wasteful escapeHtml function | Phil Crosby | |
| 2012-05-05 | rename help dialog | Phil Crosby | |
| 2012-05-05 | Put content scripts and background scripts in separate directories, so the ↵ | Phil Crosby | |
| purpose and execution mode are more clear. Sorry if you had patches in your local copies and this breaks them -- these renames were a long time coming, and now is better than later. | |||
| 2012-05-05 | Name everything "completor". There's very little different between ↵ | Phil Crosby | |
| completors and completorSources. | |||
| 2012-05-05 | Shorten the declaration of async completer. | Phil Crosby | |
| 2012-04-29 | Rename reverseAction and alternative to simply "open in new tab". | Phil Crosby | |
| The genericism is not helping. | |||
| 2012-04-29 | Remove the venerable bookmarks implementation which is now superceded by the ↵ | Phil Crosby | |
| vomnibar. | |||
| 2012-04-26 | Allow a leading '0' to be used as a mapping. | Jez Ng | |
| Closes #520. | |||
| 2012-04-10 | don't complete tabs in omni mode | Niklas Baumstark | |
| 2012-04-10 | add domain completion a la Chrome omnibox | Niklas Baumstark | |
| 2012-04-10 | move completion logic to background page | Niklas Baumstark | |
| This has the following advantages: * searching is done in the background, UI responsiveness is improved * caches are no longer duplicated. This saves RAM and improves performance | |||
| 2012-04-10 | fix bug when history maxResults is too high | Niklas Baumstark | |
| 2012-04-10 | sort history by last visit time and raise number of history items to be searched | Niklas Baumstark | |
| 2012-04-10 | prevent duplicate history items | Niklas Baumstark | |
| 2012-04-10 | improve comments and fix some naming style inconsistencies | Niklas Baumstark | |
| 2012-04-10 | improve perfmance by caching history results in the background page. | Niklas Baumstark | |
| Also decrease the number of included results slightly. | |||
| 2012-04-10 | remove debug statement | Niklas Baumstark | |
| 2012-04-10 | really get more history items | Niklas Baumstark | |
| 2012-04-10 | add tab completion support | Niklas Baumstark | |
| 2012-04-10 | move some logic from background to content page | Niklas Baumstark | |
| 2012-04-10 | add fuzzy mode | Niklas Baumstark | |
| 2012-04-04 | Strip whitespace when excluding urls | Daniel MacDougall | |
| 2012-04-01 | Fix buggy icon update states | Daniel MacDougall | |
| This requires not depending on the openTabs array, since the onUpdated event is not always fired when a new page is loaded (from a new tab, for example). | |||
| 2012-03-31 | Correctly synchronize icon and active state | Daniel MacDougall | |
| Three situations are considered: 1. Active tab is disabled -> disable icon 2. Active tab is enabled and should be enabled -> enable icon 3. Active tab is enabled but should be disabled -> disable icon and disable vimium | |||
| 2012-03-31 | Immediately disable Vimium if current page is excluded via the popup | Daniel MacDougall | |
| 2012-03-28 | Add ability to exclude URLs from browser button | Daniel MacDougall | |
| 2012-03-28 | Add browser icon that displays enabled/disabled state | Daniel MacDougall | |
| 2012-03-06 | Clean up link copying code. | Jez Ng | |
| 2012-02-26 | Revert "Exit implicit insert mode only upon tab switch." | Jez Ng | |
| This reverts commit 469acff29be41e60eb8e1c24f007d435711d2b50. Conflicts: vimiumFrontend.js | |||
| 2012-02-26 | Revert "Make <ESC> do defocusing." | Jez Ng | |
| This reverts commit b8789c56b0ee96ee1eca75291028017c4f9d89cc. See discussion at #426. Conflicts: vimiumFrontend.js | |||
| 2012-02-15 | Style | Phil Crosby | |
| 2012-02-15 | Fix the hudEnabled logic to work with the new settings framework. | Phil Crosby | |
| 2012-02-15 | Merge pull request #466 from fernandezpablo85/master | Phil Crosby | |
| Allow users to hide HUD | |||
| 2012-02-14 | some changes in boolean checks | Pablo Fernandez | |
| 2012-01-26 | Make <ESC> do defocusing. | Jez Ng | |
| Vimium will try to blur the active element first. If there is no element to be blurred, we select the topmost frame instead. Thus the user is able to use <ESC> to return Vimium fully to its 'default' state. Closes #426. | |||
| 2012-01-26 | Add migration code for old localStorage values. | Jez Ng | |
| Finish up the wrapping of localStorage. All background code should now modify localStorage via settings.js rather than doing it directly. | |||
| 2012-01-26 | Refactor settings storage and make it support empty strings. | Jez Ng | |
| It appears that localStorage keys with the empty string as their value will have their values changed to undefined after a browser restart. The DOM Inspector shows that the keys are still present, but '{{key}} in localStorage' returns false. Convert all localStorage values to JSON as a workaround. This allows us to store null, numerical etc values seamlessly. Closes #434. Disable Vimium in the options page, due to a name collision. | |||
| 2012-01-25 | Allow content scripts to both read and write settings. | Jez Ng | |
| 2012-01-24 | hide HUD option | Pablo Fernandez | |
| 2012-01-19 | Fix formatting of userDefinedLinkHintCss default value. | Peter Parks | |
