| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-03 | Merge pull request #640 from mgarriott/get_showadvanced_from_settings | Jez Ng | |
| The help dialog now gets showAdvancedCommands directly from settings. | |||
| 2012-09-03 | Make hints tests pass again. | Jez Ng | |
| Convert them to Coffeescript at the same time. We really need to set up some automated way of running these tests, to ensure they don't keep breaking. | |||
| 2012-09-03 | Fixes and cleanups for main.coffee. | Jez Ng | |
| 2012-09-03 | The help dialog now gets showAdvancedCommands directly from settings. | Matt Garriott | |
| 2012-09-01 | Specifically create a "newtab" page, as suggested by #630 | Phil Crosby | |
| 2012-09-01 | Add a few missed exports to main.coffee | Phil Crosby | |
| 2012-09-01 | Remove an old upgrade codepath for version 1.21. | Phil Crosby | |
| We're on 1.37 now so I think we're in the clear. | |||
| 2012-09-01 | port main.js to main.coffee. All coffeescript all the time. | Phil Crosby | |
| 2012-08-25 | The help dialog will now properly read the user's preference for showing ↵ | Matt Garriott | |
| advanced commands. | |||
| 2012-08-20 | Point options link in help dialog to new location. | Jez Ng | |
| 2012-08-19 | Merge pull request #618 from dmacdougall/browser_action_icon | Phil Crosby | |
| Re-enable browser action icon | |||
| 2012-08-19 | Tabs -> spaces. | Jez Ng | |
| 2012-08-18 | Re-enable browser action with new icons | Daniel MacDougall | |
| 2012-08-06 | vomnibar: New tabs for 'O' and 'B' | Carl Helmertz | |
| 'B' is a new command for searching for a bookmark and opens it in a new tab. 'O' now searches through history and bookmarks and opens the selected item in a new tab. Previously, it started vomnibar with the current URI selected and opened the selection in the same tab. This fixes #594. Signed-off-by: Carl Helmertz <helmertz@gmail.com> | |||
| 2012-08-04 | Re-expose defaults -- options.js needs it. | Jez Ng | |
| 2012-08-04 | Convert one-shot ports to requests. Closes #8 (!!) | Jez Ng | |
| 2012-08-04 | Convert 'getScrollPosition' from port to request. | Jez Ng | |
| 2012-08-04 | Improve encapsulation of Settings. | Jez Ng | |
| We should eventually do this for the other modules as well. | |||
| 2012-08-04 | linkHintCss should be accessed via settings. Closes #605. | Jez Ng | |
| 2012-08-04 | Miscellaneous cleanups. | Jez Ng | |
| * " -> " because my syntax highlighting gets confused * Remove inline onclick handlers as part of manifest v2 upgrade | |||
| 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-22 | Use vimium-specific class names, and use vimium reset. Now the vomnibar is ↵ | Phil Crosby | |
| more resistant to a site's css. Previously the vomnibar didn't look great on Quora because of this. | |||
| 2012-07-06 | Bookmarks mode in Vomnibar | ilya | |
| 2012-07-06 | Use more Coffeescript idioms. | Jez Ng | |
| 2012-07-04 | Use block strings for settings | Darren Jeacocke | |
| 2012-06-17 | Use the browser's built-in bind() instead of our proxy() | Phil Crosby | |
| 2012-06-12 | Upcase the vomnibar command name. | Phil Crosby | |
| We'll want to revert this later, to divorce the name of the command from the implementation. | |||
| 2012-06-12 | Uppercase linkhints. This will break a few people's bindings. | Phil Crosby | |
| We should avoid revealing our implementation in the future. | |||
| 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 | Add a few comments and eliminate an unnecessary parameter. | Phil Crosby | |
| 2012-06-10 | hide relevancy. It's a debug option. | 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-10 | Ensure matches are case insensitive, and cache regexp's so they're not ↵ | Phil Crosby | |
| created excessively. | |||
| 2012-06-10 | Only allow one query to run at a time | Phil Crosby | |
| 2012-06-10 | Update the timestamps of cached history entries when a new site is visited. | Phil Crosby | |
| This allows the vomnibar rankings to properly rank sites you've visited recently, after it populated its original cache. | |||
| 2012-06-10 | Monitor newly visited pages and update the list of domains for completions. | Phil Crosby | |
| 2012-06-04 | Don't use a closure for the onPageVisited handler. | Phil Crosby | |
| I'm worried about keeping around a reference to history forever, unnecessarily. | |||
| 2012-06-03 | Fix a highlighting bug where we overlapping query terms would corrupt the html | Phil Crosby | |
| 2012-06-03 | Add a domain completer | Phil Crosby | |
| 2012-06-03 | Make title in suggestions optional (domain suggestions may not have a title) | Phil Crosby | |
| 2012-06-03 | Make computing the recency score of an item into RankingUtils. | Phil Crosby | |
| 2012-06-03 | Rank results in the correct order. | Phil Crosby | |
| 2012-06-03 | Fix a naive term highlighting function to handle multiple words correctly. | Phil Crosby | |
| Wish this was shorter. | |||
| 2012-06-03 | Show relevancy in the ui for debugging search ranking | Phil Crosby | |
| 2012-06-03 | Implement ranking, and use recency when ranking history entries | Phil Crosby | |
| One major change between this and the previous implementation is that all scores are between [0, 1] and "1" means most relevant. | |||
| 2012-06-03 | Remove "action" from Suggestion. That level of genercism isn't needed atm. | 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-06-02 | Remove completion.js to make way for the coffeescript implementation | Phil Crosby | |
