| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-12-09 | Merge pull request #743 from christophermanning/add_contributing_guidelines | Jez Ng | |
| Add contributing guidelines | |||
| 2012-12-09 | Format and add instructions for Reporting Issues to CONTRIBUTING | Christopher Manning | |
| 2012-12-09 | Move Contributing information from README to CONTRIBUTING.md | Christopher Manning | |
| 2012-12-07 | Focus window the tab is in when selecting a specific tab | Christopher Manning | |
| 2012-12-03 | Merge pull request #740 from christophermanning/add-link-to-travis-ci-image | Phil Crosby | |
| Add link to TravisCI page to the Build Status image | |||
| 2012-12-03 | Add link to TravisCI page to the Build Status image | Christopher Manning | |
| 2012-11-22 | Merge pull request #734 from smblott-github/enter--make-enter-a-noop-in-vomnibar | Phil Crosby | |
| Make <Enter> on an empty vomnibar be a no-op | |||
| 2012-11-22 | Enter on empty vomnibar a no-op. | Stephen Blott | |
| 2012-11-14 | RegexpCache: reorganise and improve tests. | Stephen Blott | |
| 2012-11-14 | Clean up regexp unit tests. | Stephen Blott | |
| 2012-11-13 | Smartcase matching for vomnibar. | Stephen Blott | |
| Vomnibar queries are case insensitive, unless the query contains a capital letter. | |||
| 2012-11-13 | Merge pull request #720 from smblott-github/chrome-prefixes | Phil Crosby | |
| Include "chrome-extension" in chrome prefixes. | |||
| 2012-11-13 | Include "chrome-extension" in chrome prefixes. | Stephen Blott | |
| You can bookmark chrome-extension://... pages. But you can't use them: vimium sends you to the default search engine. This commit fixes the issue. | |||
| 2012-11-12 | Allow ctrl+enter to open a suggestion in a new tab | Phil Crosby | |
| It's pretty natural to hit CTRL+N and CTLR+P to select a choice, and then CTRL+enter to open it in a new tab. But previously that didn't work on mac. | |||
| 2012-11-12 | Merge pull request #715 from smblott-github/history--remove-entries | Phil Crosby | |
| Remove entries from History/Domain completers when they're removed on chrome. | |||
| 2012-11-12 | Improve unit test structure and coverage. | Stephen Blott | |
| 2012-11-11 | Changes in responce to philc's recommendations. | Stephen Blott | |
| See: https://github.com/philc/vimium/pull/715 | |||
| 2012-11-11 | More domain completer tests. | Stephen Blott | |
| 2012-11-11 | Additional unit tests for domain completer. | Stephen Blott | |
| 2012-11-11 | More simplification/refactoring. | Stephen Blott | |
| 2012-11-11 | Refactor domain maintenance code. | Stephen Blott | |
| 2012-11-11 | Remove comments regarding non-existent bug. | Stephen Blott | |
| 2012-11-11 | Extend removing entries to the domain completer. | Stephen Blott | |
| 2012-11-11 | Remove history entries. | Stephen Blott | |
| When a chrome history entry is removed, remove that entry from our history too. Same when the entire history is removed. | |||
| 2012-11-10 | Inject bookmarklets by appending them as scripts. | Jez Ng | |
| This *should* fix the permission problems that `eval` faced. Closes #575, #710. | |||
| 2012-11-10 | Merge pull request #704 from smblott-github/relevancy | Jez Ng | |
| Highlight all matches in a vomnibar suggestion, not just the first. | |||
| 2012-11-09 | Merge pull request #707 from smblott-github/small-bugs | Jez Ng | |
| Minor fixes. | |||
| 2012-11-07 | Fix incorrect/misleading comment. | Stephen Blott | |
| 2012-11-05 | Avoid empty query terms. | Stephen Blott | |
| With the previous version, a query like "hello there" yielded: [ "hello", "", "", "there" ] as the queryTerms. | |||
| 2012-11-05 | Looks like missing parentheses. | Stephen Blott | |
| This is looks wrong, and is inconsistent with the way the equivalent calculation is handled elsewhere. This commit fixes it. | |||
| 2012-11-05 | Factor pushMatchingRanges, improve comments/tests | Stephen Blott | |
| 1. Factor out `pushMatchingRanges`: This then allows us to ... 2. Add unit tests for `pushMatchingRanges` In effect, these tests verify where matches are highlighted in suggestions. 3. Added Utils.zip. This helps simplify `pushMatchingRanges` unit tests. 4. Improve comments. | |||
| 2012-11-04 | Highlight all matches, not just the first. | Stephen Blott | |
| 2012-11-04 | Generalise RegexpCache, refactor, add tests. | Stephen Blott | |
| This is a no-op, currently. It's just setting up the RegexpCache interface for subsequent development. | |||
| 2012-11-03 | Fix race condition in tabInfo deletion. | Jez Ng | |
| Also initialize tabInfo fields at once, so as to avoid unnecessary hidden class transitions. | |||
| 2012-11-03 | Skip trying to run tests if build fails. | Jez Ng | |
| 2012-11-03 | Pipe `popd` output to /dev/null. | Jez Ng | |
| 2012-11-03 | scrollStepSize migration will now be done in v1.43. | Jez Ng | |
| 2012-11-03 | Merge branch '1.42' | Jez Ng | |
| 2012-11-03 | cutting 1.421.42 | Ilya Sukhar | |
| 2012-11-03 | Handle update messages that arrive after a tab has closed. | Jez Ng | |
| Previously, we were throwing errors when trying to modify nonexistent members of `openTabs`, due to messages arriving after the onRemoved notification. We now delay garbage-collecting openTabs, and rename openTabs to tabInfoMap to reflect that the tabs are not necessarily open. | |||
| 2012-11-03 | Remove some parentheses. | Jez Ng | |
| 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 | Extend unit tests for RankingUtils. | Stephen Blott | |
| 1. Add additional tests for `RankingUtils.matches()`. 2. Add tests for `RankingUtils.wordRelevancy()`. | |||
| 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 | Make tests pass against strict comparisons. | Jez Ng | |
| 2012-11-02 | Add ability to filter tests by name. | Jez Ng | |
| 2012-11-02 | Fix pre-commit hook. | Jez Ng | |
| Previously, we were running the tests based on the working directory code (instead of using the index), and we did not check that the generated JS matched the latest Coffeescript. | |||
