Skip to content

Commit 918919f

Browse files
author
ryanss
committed
Release version 0.2
1 parent 628d7c2 commit 918919f

File tree

8 files changed

+46
-7
lines changed

8 files changed

+46
-7
lines changed

CHANGES

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
Vim-HackerNews Changelog
2+
========================
3+
4+
5+
Version 0.2
6+
-----------
7+
8+
Released April 26, 2015
9+
10+
- Add Python 3 support
11+
- Add additional motions to improve browsing of story lists, comments, articles
12+
- Add comment thread folding
13+
- Add ability to display specific HackerNews lists (top, ask, show, etc)
14+
- Handle all HackerNews item types properly (poll, job, etc)
15+
- Save cursor position when moving back/forward
16+
- Add highlighting of OP username in comment titles
17+
- Do not load python code until first :HackerNews command
18+
- Timeout HTTP requests after 5 seconds instead of hanging Vim
19+
- Improve HTTP error information
20+
- Add units tests with Vader.vim
21+
- Add Travis CI integration
22+
- Lots of syntax fixes and improvements
23+
- Dozens of other bug fixes and improvements
24+
25+
26+
Version 0.1.1
27+
-------------
28+
29+
Released February 7, 2015
30+
31+
- Fix "job" type items without a `domain` key in API
32+
33+
34+
Version 0.1
35+
-----------
36+
37+
Released February 7, 2015
38+
39+
- Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
vim-hackernews [![Build Status](https://travis-ci.org/ryanss/vim-hackernews.svg)](https://travis-ci.org/ryanss/vim-hackernews)
1+
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)
22
==============
33

44
Browse [Hacker News](https://news.ycombinator.com) inside Vim.

doc/hackernews.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Author: ryanss <ryanssdev@icloud.com>
44
Website: https://github.com/ryanss/vim-hackernews
55
License: MIT (see LICENSE file)
6-
Version: 0.1.1
6+
Version: 0.2 (April 26, 2015)
77

88

99
BASIC USAGE *hackernews-usage*

ftplugin/hackernews.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Author: ryanss <ryanssdev@icloud.com>
88
# Website: https://github.com/ryanss/vim-hackernews
99
# License: MIT (see LICENSE file)
10-
# Version: 0.1.1
10+
# Version: 0.2 (April 26, 2015)
1111

1212

1313
from __future__ import print_function

ftplugin/hackernews.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
" Author: ryanss <ryanssdev@icloud.com>
66
" Website: https://github.com/ryanss/vim-hackernews
77
" License: MIT (see LICENSE file)
8-
" Version: 0.1.1
8+
" Version: 0.2 (April 26, 2015)
99

1010

1111
if has('python')

plugin/hackernews.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
" Author: ryanss <ryanssdev@icloud.com>
66
" Website: https://github.com/ryanss/vim-hackernews
77
" License: MIT (see LICENSE file)
8-
" Version: 0.1.1
8+
" Version: 0.2 (April 26, 2015)
99

1010

1111
" Filetype plugins need to be enabled

syntax/hackernews.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
" Author: ryanss <ryanssdev@icloud.com>
66
" Website: https://github.com/ryanss/vim-hackernews
77
" License: MIT (see LICENSE file)
8-
" Version: 0.1.1
8+
" Version: 0.2 (April 26, 2015)
99

1010

1111
if exists("b:current_syntax")

tests.vader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
" Author: ryanss <ryanssdev@icloud.com>
66
" Website: https://github.com/ryanss/vim-hackernews
77
" License: MIT (see LICENSE file)
8-
" Version: 0.1.1
8+
" Version: 0.2 (April 26, 2015)
99

1010
Execute (Test Plugin Loaded):
1111
AssertEqual 1, filereadable('doc/hackernews.txt')

0 commit comments

Comments
 (0)