summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorryanss2015-04-26 08:31:24 -0400
committerryanss2015-04-26 08:31:24 -0400
commit918919ff8b08f4e32942c451aa83c9c71bedfff9 (patch)
tree5b59193d166e67b7220a20d73b4109507e91af20
parent628d7c2e498043954a08849fafb1d34b7e215aab (diff)
downloadvim-hn-918919ff8b08f4e32942c451aa83c9c71bedfff9.tar.gz
Release version 0.2
-rw-r--r--CHANGES39
-rw-r--r--README.md2
-rw-r--r--doc/hackernews.txt2
-rw-r--r--ftplugin/hackernews.py2
-rw-r--r--ftplugin/hackernews.vim2
-rw-r--r--plugin/hackernews.vim2
-rw-r--r--syntax/hackernews.vim2
-rw-r--r--tests.vader2
8 files changed, 46 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
new file mode 100644
index 0000000..9449e32
--- /dev/null
+++ b/CHANGES
@@ -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
diff --git a/README.md b/README.md
index 001b85f..8023b68 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-vim-hackernews [![Build Status](https://travis-ci.org/ryanss/vim-hackernews.svg)](https://travis-ci.org/ryanss/vim-hackernews)
+vim-hackernews [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ryanss/vim-hackernews/raw/master/LICENSE) [![Version](https://img.shields.io/badge/version-0.2-orange.svg)](https://github.com/ryanss/vim-hackernews/releases/tag/v0.2) [![Build Status](https://img.shields.io/travis/ryanss/vim-hackernews.svg)](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')