Upping version.

This commit is contained in:
Michael Lazar
2015-12-20 01:04:16 -08:00
parent 97337cda7b
commit 9d02a7df08
4 changed files with 45 additions and 14 deletions

View File

@@ -2,6 +2,7 @@
RTV Changelog RTV Changelog
============= =============
.. _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
.. _1.6: http://github.com/michael-lazar/rtv/releases/tag/v1.6 .. _1.6: http://github.com/michael-lazar/rtv/releases/tag/v1.6
@@ -15,6 +16,22 @@ RTV Changelog
.. _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.0_ (2015-12-20
------------------
Features
* A banner on the top of the page now displays the selected page sort order.
* Hidden scores now show up as "- pts".
* Oauth settings are now accesible through the config file.
* New argument `--config` specifies the config file to use.
* New argument `--copy-config` generates a default config file.
Documentation
* Added a keyboard reference from keyboardlayouteditor.com
* Added a link to an asciinema demo video
------------------- -------------------
1.7.0_ (2015-12-08) 1.7.0_ (2015-12-08)
------------------- -------------------

24
rtv.1
View File

@@ -1,8 +1,8 @@
.TH "RTV" "1" "December 07, 2015" "Version 1.7" "Usage and Commands" .TH "RTV" "1" "December 20, 2015" "Version 1.8.0" "Usage and Commands"
.SH NAME .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .SH SYNOPSIS
rtv [\-h] [\-V] [\-s SUBREDDIT] [\-l LINK] [\-\-ascii] [\-\-log FILE] [\-\-non\-persistent] [\-\-clear\-auth] rtv [\-h] [\-V] [\-s SUBREDDIT] [\-l LINK] [\-\-log FILE] [\-\-config FILE] [\-\-ascii] [\-\-non\-persistent] [\-\-clear\-auth] [\-\-copy\-config]
.SH DESCRIPTION .SH DESCRIPTION
Reddit Terminal Viewer is a lightweight browser for www.reddit.com built into a Reddit Terminal Viewer is a lightweight browser for www.reddit.com built into a
terminal window. terminal window.
@@ -23,21 +23,29 @@ name of the subreddit that will be opened on start
\fB\-l LINK\fR \fB\-l LINK\fR
full URL of a submission that will be opened on start full URL of a submission that will be opened on start
.TP
\fB\-\-log FILE\fR
log HTTP requests to the given file
.TP
\fB\-\-config FILE\fR
Load configuration settings from the given file
.TP .TP
\fB\-\-ascii\fR \fB\-\-ascii\fR
enable ascii\-only mode enable ascii\-only mode
.TP
\fB\-\-log FILE\fR
log HTTP requests to a file
.TP .TP
\fB\-\-non\-persistent\fR \fB\-\-non\-persistent\fR
Forget all authenticated users when the program exits Forget the authenticated user when the program exits
.TP .TP
\fB\-\-clear\-auth\fR \fB\-\-clear\-auth\fR
Remove any saved OAuth tokens before starting Remove any saved user data before launching
.TP
\fB\-\-copy\-config\fR
Copy the default configuration to {HOME}/.config/rtv/rtv.cfg
.SH CONTROLS .SH CONTROLS

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '1.7.0' __version__ = '1.8.0'

View File

@@ -43,9 +43,15 @@ def main():
# \fB-h\fR, \fB--help\fR # \fB-h\fR, \fB--help\fR
# show this help message and exit # show this help message and exit
options = '' options = ''
arguments = help_sections[2].split('\n') lines = help_sections[2].split('\n')[1:]
for argument in arguments[1:]: lines = [line.strip() for line in lines]
argument = argument.strip() arguments = []
for line in lines:
if line.startswith('-'):
arguments.append(line)
else:
arguments[-1] = arguments[-1] + ' ' + line
for argument in arguments:
flag, description = (col.strip() for col in argument.split(' ', 1)) flag, description = (col.strip() for col in argument.split(' ', 1))
flag = ', '.join(r'\fB'+f+r'\fR' for f in flag.split(', ')) flag = ', '.join(r'\fB'+f+r'\fR' for f in flag.split(', '))
options += '\n'.join(('.TP', flag, description, '\n')) options += '\n'.join(('.TP', flag, description, '\n'))
@@ -56,8 +62,8 @@ def main():
data['copyright'] = rtv.__copyright__ data['copyright'] = rtv.__copyright__
# Escape dashes is all of the sections # Escape dashes is all of the sections
data = {k: v.replace('-', r'\-') for k, v in data.items()} data = {k: v.replace('-', r'\-') for k, v in data.items()}
print('Reading from %s/rtv/scripts/rtv.1.template' % ROOT) print('Reading from %s/scripts/rtv.1.template' % ROOT)
with open(os.path.join(ROOT, 'rtv/scripts/rtv.1.template')) as fp: with open(os.path.join(ROOT, 'scripts/rtv.1.template')) as fp:
template = fp.read() template = fp.read()
print('Populating template') print('Populating template')
out = template.format(**data) out = template.format(**data)