Upping version.
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
RTV Changelog
|
RTV Changelog
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
.. _1.8.1: http://github.com/michael-lazar/rtv/releases/tag/v1.8.1
|
||||||
.. _1.8.0: http://github.com/michael-lazar/rtv/releases/tag/v1.8.0
|
.. _1.8.0: http://github.com/michael-lazar/rtv/releases/tag/v1.8.0
|
||||||
.. _1.7.0: http://github.com/michael-lazar/rtv/releases/tag/v1.7.0
|
.. _1.7.0: http://github.com/michael-lazar/rtv/releases/tag/v1.7.0
|
||||||
.. _1.6.1: http://github.com/michael-lazar/rtv/releases/tag/v1.6.1
|
.. _1.6.1: http://github.com/michael-lazar/rtv/releases/tag/v1.6.1
|
||||||
@@ -15,10 +16,27 @@ RTV Changelog
|
|||||||
.. _1.2.1: http://github.com/michael-lazar/rtv/releases/tag/v1.2.1
|
.. _1.2.1: http://github.com/michael-lazar/rtv/releases/tag/v1.2.1
|
||||||
.. _1.2: http://github.com/michael-lazar/rtv/releases/tag/v1.2
|
.. _1.2: http://github.com/michael-lazar/rtv/releases/tag/v1.2
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
1.8.1_ (2016-03-01)
|
||||||
|
-------------------
|
||||||
|
Features
|
||||||
|
|
||||||
------------------
|
* All keys are now rebindable through the config.
|
||||||
1.8.0_ (2015-12-20
|
* New bindings - ctrl-d and ctrl-u for page up / page down.
|
||||||
------------------
|
* Added tag for stickied posts and comments.
|
||||||
|
* Added bullet between timestamp and comment count.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
|
||||||
|
* Links starting with np.reddit.com no longer return `Forbidden`.
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
|
||||||
|
* Updated README.
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
1.8.0_ (2015-12-20)
|
||||||
|
-------------------
|
||||||
Features
|
Features
|
||||||
|
|
||||||
* A banner on the top of the page now displays the selected page sort order.
|
* A banner on the top of the page now displays the selected page sort order.
|
||||||
|
|||||||
12
rtv.1
12
rtv.1
@@ -1,4 +1,4 @@
|
|||||||
.TH "RTV" "1" "December 20, 2015" "Version 1.8.0" "Usage and Commands"
|
.TH "RTV" "1" "March 02, 2016" "Version 1.8.1" "Usage and Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
RTV - Reddit Terminal Viewer
|
RTV - Reddit Terminal Viewer
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@@ -49,8 +49,10 @@ Copy the default configuration to {HOME}/.config/rtv/rtv.cfg
|
|||||||
|
|
||||||
|
|
||||||
.SH CONTROLS
|
.SH CONTROLS
|
||||||
Navigate between posts by using the arrow keys or vim-style `hjkl` movement.
|
Move the cursor using either the arrow keys or Vim-style movement.
|
||||||
You can view the full list of commands by pressing the \fB?\fR key inside of the program.
|
- Press \fBup\fR and \fBdown\fR to scroll through submissions.
|
||||||
|
- Press \fBright\fR to view the selected submission and \fBleft\fR to return.
|
||||||
|
- Press \fB?\fR to open the help screen.
|
||||||
.SH FILES
|
.SH FILES
|
||||||
.TP
|
.TP
|
||||||
.BR $XDG_CONFIG_HOME/rtv/rtv.cfg
|
.BR $XDG_CONFIG_HOME/rtv/rtv.cfg
|
||||||
@@ -72,10 +74,8 @@ Specifies which webbrowser RTV will attempt to use when opening links.
|
|||||||
This can be set to a terminal browser (w3m, lynx, elinks, etc.) for a true
|
This can be set to a terminal browser (w3m, lynx, elinks, etc.) for a true
|
||||||
terminal experience. RTV will fallback to the system's default browser.
|
terminal experience. RTV will fallback to the system's default browser.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Man page written by Johnathan "ShaggyTwoDope" Jenkins <twodopeshaggy@gmail.com> (2015).
|
Michael Lazar <lazar.michael22@gmail.com> (2016).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Report bugs to \fIhttps://github.com/michael-lazar/rtv/issues\fR
|
Report bugs to \fIhttps://github.com/michael-lazar/rtv/issues\fR
|
||||||
.SH LICENSE
|
.SH LICENSE
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
.PP
|
|
||||||
(c) 2015 Michael Lazar
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
__version__ = '1.8.0'
|
__version__ = '1.8.1'
|
||||||
|
|||||||
@@ -8,8 +8,10 @@ RTV - Reddit Terminal Viewer
|
|||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
{options}
|
{options}
|
||||||
.SH CONTROLS
|
.SH CONTROLS
|
||||||
Navigate between posts by using the arrow keys or vim-style `hjkl` movement.
|
Move the cursor using either the arrow keys or Vim-style movement.
|
||||||
You can view the full list of commands by pressing the \fB?\fR key inside of the program.
|
- Press \fBup\fR and \fBdown\fR to scroll through submissions.
|
||||||
|
- Press \fBright\fR to view the selected submission and \fBleft\fR to return.
|
||||||
|
- Press \fB?\fR to open the help screen.
|
||||||
.SH FILES
|
.SH FILES
|
||||||
.TP
|
.TP
|
||||||
.BR $XDG_CONFIG_HOME/rtv/rtv.cfg
|
.BR $XDG_CONFIG_HOME/rtv/rtv.cfg
|
||||||
@@ -31,10 +33,8 @@ Specifies which webbrowser RTV will attempt to use when opening links.
|
|||||||
This can be set to a terminal browser (w3m, lynx, elinks, etc.) for a true
|
This can be set to a terminal browser (w3m, lynx, elinks, etc.) for a true
|
||||||
terminal experience. RTV will fallback to the system's default browser.
|
terminal experience. RTV will fallback to the system's default browser.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Man page written by Johnathan "ShaggyTwoDope" Jenkins <twodopeshaggy@gmail.com> (2015).
|
Michael Lazar <lazar.michael22@gmail.com> (2016).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Report bugs to \fIhttps://github.com/michael-lazar/rtv/issues\fR
|
Report bugs to \fIhttps://github.com/michael-lazar/rtv/issues\fR
|
||||||
.SH LICENSE
|
.SH LICENSE
|
||||||
{license}
|
{license}
|
||||||
.PP
|
|
||||||
{copyright}
|
|
||||||
Reference in New Issue
Block a user