<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vimium, branch 1.55</title>
<subtitle>The hacker's browser.</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/'/>
<entry>
<title>Note visitPreviousTab command in README.md.</title>
<updated>2016-05-27T04:58:33+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-27T04:58:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=9d1c398c2777e271b9d38d0fd27323adabb2ff37'/>
<id>9d1c398c2777e271b9d38d0fd27323adabb2ff37</id>
<content type='text'>
Now that 1.55 has been released, we should note this new command in the
README.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that 1.55 has been released, we should note this new command in the
README.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version to 1.55</title>
<updated>2016-05-26T18:05:28+00:00</updated>
<author>
<name>Phil Crosby</name>
</author>
<published>2016-05-26T18:05:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=42545d66ca8ec854e05cee4a37cd634afc140f18'/>
<id>42545d66ca8ec854e05cee4a37cd634afc140f18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Tweak changelog</title>
<updated>2016-05-26T18:05:19+00:00</updated>
<author>
<name>Phil Crosby</name>
</author>
<published>2016-05-26T18:05:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=3243a69ce62ce53ea86c43a745aece3d371269d8'/>
<id>3243a69ce62ce53ea86c43a745aece3d371269d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2133 from smblott-github/use-event.key</title>
<updated>2016-05-17T06:03:55+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-17T06:03:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=539cc1969f173171a21bc659f700a317d6f8dc4d'/>
<id>539cc1969f173171a21bc659f700a317d6f8dc4d</id>
<content type='text'>
Use event.key (not event.keyIdentifier).</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use event.key (not event.keyIdentifier).</pre>
</div>
</content>
</entry>
<entry>
<title>Handle &lt;space&gt; in the same way as other special keys.</title>
<updated>2016-05-15T08:05:21+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-15T08:05:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=eced401764bb679af6f34559861c2b1bc39c2752'/>
<id>eced401764bb679af6f34559861c2b1bc39c2752</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Also remove event.keyIdentifier in getKeyCharString().</title>
<updated>2016-05-15T06:58:35+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-15T06:58:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=6f08521e946b39ca9254bbc94455641f90f33215'/>
<id>6f08521e946b39ca9254bbc94455641f90f33215</id>
<content type='text'>
This was an oversight from a5262f4e68f62a922c9c05d871c4a874f6737a7b.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was an oversight from a5262f4e68f62a922c9c05d871c4a874f6737a7b.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use event.key (not event.keyIdentifier).</title>
<updated>2016-05-15T06:10:26+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-14T06:35:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=a5262f4e68f62a922c9c05d871c4a874f6737a7b'/>
<id>a5262f4e68f62a922c9c05d871c4a874f6737a7b</id>
<content type='text'>
event.keyIdentifier is depricated and will be removed soon.  It is being
replaced by event.key.  Unfortunatelty, event.key is not yet available
in the stable Chrome version.

Here, we use whichever API is available.  In due course, we can remove
the event.keyIdentifier implementation (and a considerable amount of
machinery surrounding it).

For the time being, if both APIs are available, then we verify one
against the other and show a warning message of they do not match.  This
should help us track down any issues which arise.

Using event.key has the additional benefit of correctly detecting
shifted characters on the numbers row on keydown, which has been a
problem for some users.

Fixes #2128.

Note:  We have a problem with the tests.  phantomjs does not currently
support event.key, and possibly never will.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
event.keyIdentifier is depricated and will be removed soon.  It is being
replaced by event.key.  Unfortunatelty, event.key is not yet available
in the stable Chrome version.

Here, we use whichever API is available.  In due course, we can remove
the event.keyIdentifier implementation (and a considerable amount of
machinery surrounding it).

For the time being, if both APIs are available, then we verify one
against the other and show a warning message of they do not match.  This
should help us track down any issues which arise.

Using event.key has the additional benefit of correctly detecting
shifted characters on the numbers row on keydown, which has been a
problem for some users.

Fixes #2128.

Note:  We have a problem with the tests.  phantomjs does not currently
support event.key, and possibly never will.
</pre>
</div>
</content>
</entry>
<entry>
<title>Guard against non-string values.</title>
<updated>2016-05-12T06:49:43+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-12T06:49:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=a1c00c38abee530f84572c36c7422e4ee793316b'/>
<id>a1c00c38abee530f84572c36c7422e4ee793316b</id>
<content type='text'>
If the link's value is not a string, then the previous version of this
fails.  The new test will be false for such links.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the link's value is not a string, then the previous version of this
fails.  The new test will be false for such links.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Improves next/previous links by targetting button elements and adding single left/right angle quotation marks"</title>
<updated>2016-05-12T06:21:07+00:00</updated>
<author>
<name>Stephen Blott</name>
</author>
<published>2016-05-12T06:21:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=22f0ed9c3c63ecbc4fc2413dc5235a9489d9cf25'/>
<id>22f0ed9c3c63ecbc4fc2413dc5235a9489d9cf25</id>
<content type='text'>
This reverts commit ee8c235aeaf52d2bc867a00c37731690e337c7ff.
This reverts #2117.

This breaks next/prev on Reddit (it chooses a different link).

Reddit is an important site, so we should unwind this for now.

Mention @sco-tt.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit ee8c235aeaf52d2bc867a00c37731690e337c7ff.
This reverts #2117.

This breaks next/prev on Reddit (it chooses a different link).

Reddit is an important site, so we should unwind this for now.

Mention @sco-tt.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a comment</title>
<updated>2016-05-09T07:24:34+00:00</updated>
<author>
<name>Phil Crosby</name>
</author>
<published>2016-05-09T07:24:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/vimium/commit/?id=25587a5ae039dc8a1f57a441195b0b93dc8a3475'/>
<id>25587a5ae039dc8a1f57a441195b0b93dc8a3475</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
