| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-11-03 | Minor touchups. | Jez Ng | |
| 2012-11-03 | Merge pull request #702 from smblott-github/relevancy-fix | Jez Ng | |
| Improve consistency and fix bug in relevancy calculation. | |||
| 2012-11-03 | Bug fix. Not all query terms matched. | Stephen Blott | |
| Additionally, add relevant test cases. | |||
| 2012-11-03 | Refactor RankingUtils.matches() to use splat. | Stephen Blott | |
| 2012-11-03 | Improve consistency and fix relevancy calculation. | Stephen Blott | |
| Problem: - The word relevancy calculation is case sensitive, all other matching is case insensitive. Improve consistency: - Highlighting of elements in the vomnibox is case insensitive; this does not match the case sensitive relevancy calculation. Fix: - Bookmark titles, in particular, tend to contain capital letters. Unless the query term also contains the relevant capital letters, then the term was scored at zero, pushing what seem to be good matches to the bottom of the list. In fact, they were only included in the list at all because they happen to pass the `RankingUtils.matches()` test. | |||
| 2012-11-02 | Bookmark traversal fixes. | Stephen Blott | |
| Changes: - use natural order for bookmark traversal - eliminate use of O(N^2) `shift` | |||
| 2012-10-29 | Move a bunch of stuff under pages/ for tidiness. | Jez Ng | |
| Also correct a bug with the show / hide advanced commands button. | |||
| 2012-10-29 | Implement marks. | Jez Ng | |
| 2012-10-29 | Convert strings to numbers when saving options page. | Jez Ng | |
| This avoids the need to continually re-parse the strings each time we load the option value. | |||
| 2012-10-29 | Split out compareVersions into the Utils file. | Jez Ng | |
| 2012-10-29 | Make the numbers used in the filtered link hints configurable. | Jez Ng | |
| Closes #380. | |||
| 2012-10-29 | Don't restore view-source: tabs. | Jez Ng | |
| 2012-10-29 | List all tabs in Vomnibar even before user starts typing. | Jez Ng | |
| Closes #671. | |||
| 2012-10-28 | Make the default value for scrollStepSize a string. | Stephen Blott | |
| This interacts with these lines from settings.coffee: don't store the value if it is equal to the default, so we can change the defaults in the future if (value == @defaults[key]) @clear(key) If the default value is numeric, then this test NEVER succeeds (because "==" is compiled to "===", and the types don't match). So, scrollStepSize is stored in localStorage even if it has its default value. Which obviates the intention of the line quoted above. | |||
| 2012-10-24 | Use insertCSS() API instead of manually created style element. | Jez Ng | |
| For some reason addCssToPage seemed to break on Chrome 24. Closes #676. | |||
| 2012-10-23 | Code cleanup, as requested by in3/Jez Ng here: | Stephen Blott | |
| - https://github.com/philc/vimium/pull/682. | |||
| 2012-10-21 | Missed off one key line in previous commit. | Stephen Blott | |
| 2012-09-12 | Use block strings | Darren Jeacocke | |
| 2012-09-09 | More lint fixes. | Jez Ng | |
| 2012-09-09 | Add more tests, and remove old settings code. | Jez Ng | |
| 2012-09-09 | Merge branch '1.39' | Jez Ng | |
| 2012-09-09 | Fix default hint styling. | Jez Ng | |
| 2012-09-08 | Merge branch 'next-release' | Jez Ng | |
| 2012-09-08 | Change the default CSS template. | Jez Ng | |
| 'background-color' is no longer sufficient to override our default styling. Refs #626. | |||
| 2012-09-08 | Set up PhantomJS testing. | Jez Ng | |
| 2012-09-08 | Fix completion key generation. | Jez Ng | |
| 2012-09-04 | Style fixes. | Jez Ng | |
| Errors were detected using coffeelint. | |||
| 2012-09-04 | More misc cleanups. | Jez Ng | |
| 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. | |||
