diff options
| -rw-r--r-- | CHANGES | 39 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | doc/hackernews.txt | 2 | ||||
| -rw-r--r-- | ftplugin/hackernews.py | 2 | ||||
| -rw-r--r-- | ftplugin/hackernews.vim | 2 | ||||
| -rw-r--r-- | plugin/hackernews.vim | 2 | ||||
| -rw-r--r-- | syntax/hackernews.vim | 2 | ||||
| -rw-r--r-- | tests.vader | 2 |
8 files changed, 46 insertions, 7 deletions
@@ -0,0 +1,39 @@ +Vim-HackerNews Changelog +======================== + + +Version 0.2 +----------- + +Released April 26, 2015 + +- Add Python 3 support +- Add additional motions to improve browsing of story lists, comments, articles +- Add comment thread folding +- Add ability to display specific HackerNews lists (top, ask, show, etc) +- Handle all HackerNews item types properly (poll, job, etc) +- Save cursor position when moving back/forward +- Add highlighting of OP username in comment titles +- Do not load python code until first :HackerNews command +- Timeout HTTP requests after 5 seconds instead of hanging Vim +- Improve HTTP error information +- Add units tests with Vader.vim +- Add Travis CI integration +- Lots of syntax fixes and improvements +- Dozens of other bug fixes and improvements + + +Version 0.1.1 +------------- + +Released February 7, 2015 + +- Fix "job" type items without a `domain` key in API + + +Version 0.1 +----------- + +Released February 7, 2015 + +- Initial release @@ -1,4 +1,4 @@ -vim-hackernews [](https://travis-ci.org/ryanss/vim-hackernews) +vim-hackernews [](https://github.com/ryanss/vim-hackernews/raw/master/LICENSE) [](https://github.com/ryanss/vim-hackernews/releases/tag/v0.2) [](https://travis-ci.org/ryanss/vim-hackernews) ============== Browse [Hacker News](https://news.ycombinator.com) inside Vim. diff --git a/doc/hackernews.txt b/doc/hackernews.txt index dc6ef13..baffaed 100644 --- a/doc/hackernews.txt +++ b/doc/hackernews.txt @@ -3,7 +3,7 @@ Author: ryanss <ryanssdev@icloud.com> Website: https://github.com/ryanss/vim-hackernews License: MIT (see LICENSE file) -Version: 0.1.1 +Version: 0.2 (April 26, 2015) BASIC USAGE *hackernews-usage* diff --git a/ftplugin/hackernews.py b/ftplugin/hackernews.py index 7e2057e..de085e5 100644 --- a/ftplugin/hackernews.py +++ b/ftplugin/hackernews.py @@ -7,7 +7,7 @@ # Author: ryanss <ryanssdev@icloud.com> # Website: https://github.com/ryanss/vim-hackernews # License: MIT (see LICENSE file) -# Version: 0.1.1 +# Version: 0.2 (April 26, 2015) from __future__ import print_function diff --git a/ftplugin/hackernews.vim b/ftplugin/hackernews.vim index 17c7c59..9f190b4 100644 --- a/ftplugin/hackernews.vim +++ b/ftplugin/hackernews.vim @@ -5,7 +5,7 @@ " Author: ryanss <ryanssdev@icloud.com> " Website: https://github.com/ryanss/vim-hackernews " License: MIT (see LICENSE file) -" Version: 0.1.1 +" Version: 0.2 (April 26, 2015) if has('python') diff --git a/plugin/hackernews.vim b/plugin/hackernews.vim index 1d9389a..57c5876 100644 --- a/plugin/hackernews.vim +++ b/plugin/hackernews.vim @@ -5,7 +5,7 @@ " Author: ryanss <ryanssdev@icloud.com> " Website: https://github.com/ryanss/vim-hackernews " License: MIT (see LICENSE file) -" Version: 0.1.1 +" Version: 0.2 (April 26, 2015) " Filetype plugins need to be enabled diff --git a/syntax/hackernews.vim b/syntax/hackernews.vim index 27c41ad..2560441 100644 --- a/syntax/hackernews.vim +++ b/syntax/hackernews.vim @@ -5,7 +5,7 @@ " Author: ryanss <ryanssdev@icloud.com> " Website: https://github.com/ryanss/vim-hackernews " License: MIT (see LICENSE file) -" Version: 0.1.1 +" Version: 0.2 (April 26, 2015) if exists("b:current_syntax") diff --git a/tests.vader b/tests.vader index ffb9de3..e540d6b 100644 --- a/tests.vader +++ b/tests.vader @@ -5,7 +5,7 @@ " Author: ryanss <ryanssdev@icloud.com> " Website: https://github.com/ryanss/vim-hackernews " License: MIT (see LICENSE file) -" Version: 0.1.1 +" Version: 0.2 (April 26, 2015) Execute (Test Plugin Loaded): AssertEqual 1, filereadable('doc/hackernews.txt') |
