Minor changes to project structure, updated changelog and contributors.

This commit is contained in:
Michael Lazar
2015-10-14 17:48:58 -07:00
committed by Michael Lazar
parent 3d106fbb20
commit b04e67379b
7 changed files with 42 additions and 20 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
.* .*
*~
*.pyc *.pyc
build build
dist dist

View File

@@ -2,6 +2,7 @@
RTV Changelog RTV Changelog
============= =============
.. _1.6: http://github.com/michael-lazar/rtv/releases/tag/v1.6
.. _1.5: http://github.com/michael-lazar/rtv/releases/tag/v1.5 .. _1.5: http://github.com/michael-lazar/rtv/releases/tag/v1.5
.. _1.4.2: http://github.com/michael-lazar/rtv/releases/tag/v1.4.2 .. _1.4.2: http://github.com/michael-lazar/rtv/releases/tag/v1.4.2
.. _1.4.1: http://github.com/michael-lazar/rtv/releases/tag/v1.4.1 .. _1.4.1: http://github.com/michael-lazar/rtv/releases/tag/v1.4.1
@@ -11,6 +12,21 @@ 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.6_ (2015-10-14)
-----------------
Features
* Switched all authentication to OAuth.
* Can now list the version with `rtv --version`.
* Added a man page.
Documentation
* Added missing docs for the `i` key.
* New documentation for OAuth.
* New FAQ section.
----------------- -----------------
1.5_ (2015-08-26) 1.5_ (2015-08-26)
----------------- -----------------

View File

@@ -5,19 +5,24 @@ RTV Contributors
Thanks to the following people for their contributions to this project. Thanks to the following people for their contributions to this project.
* `michael-lazar <http://github.com/michael-lazar>`_ * `Michael Lazar <https://github.com/michael-lazar>`_
* `Tobin Brown <http://github.com/Brobin>`_ * `Tobin Brown <https://github.com/Brobin>`_
* `Yusuke Sakamoto <http://github.com/yskmt>`_ * `Théo Piboubès <https://github.com/TheoPib>`_
* `Noah Morrison <http://github.com/noahmorrison>`_ * `Yusuke Sakamoto <https://github.com/yskmt>`_
* `Toby Hughes <http://github.com/tobywhughes>`_ * `Johnathan Jenkins <https://github.com/shaggytwodope>`_
* `Shawn Hind <http://github.com/shanhind>`_ * `obosob <https://github.com/obosob>`_
* `mekhami <http://github.com/mekhami>`_ * `mekhami <https://github.com/mekhami>`_
* `JuanPablo <http://github.com/juanpabloaj>`_ * `Noah Morrison <https://github.com/noahmorrison>`_
* `Robert Greener <http://github.com/ragreener1>`_ * `Toby Hughes <https://github.com/tobywhughes>`_
* `Hans Roman <http://github.com/snahor>`_ * `Shawn Hind <https://github.com/shanhind>`_
* `peterpans01 <http://github.com/peterpans01>`_ * `JuanPablo <https://github.com/juanpabloaj>`_
* `Ram-Z <http://github.com/Ram-Z>`_ * `Robert Greener <https://github.com/ragreener1>`_
* `Marc Abramowitz <http://github.com/msabramo>`_ * `peterpans01 <https://github.com/peterpans01>`_
* `Adam Talsma <http://github.com/a-tal>`_ * `Adam Talsma <https://github.com/a-tal>`_
* `Ram-Z <https://github.com/Ram-Z>`_
* `mralext20 <https://github.com/mralext20>`_
* `Wieland Hoffmann <http://github.com/mineo>`_ * `Wieland Hoffmann <http://github.com/mineo>`_
* `Thomas Kajder <http://github.com/tkajder>`_ * `Marc Abramowitz <http://github.com/msabramo>`_
* `Hans Roman <http://github.com/snahor>`_
* `Gustavo Zambonin <https://github.com/zambonin>`_

View File

@@ -4,4 +4,4 @@ include CONTRIBUTORS.rst
include README.rst include README.rst
include LICENSE include LICENSE
include rtv.1 include rtv.1
include templates/* include templates/index.html

2
rtv.1
View File

@@ -1,4 +1,4 @@
.TH "RTV" "1" "September 28, 2015" "Version 1.5" "Usage and Commands" .TH "RTV" "1" "October 15, 2015" "Version 1.6" "Usage and Commands"
.SH NAME .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .SH SYNOPSIS

View File

@@ -54,8 +54,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/templates/rtv.1' % ROOT) print('Reading from %s/templates/rtv.1.template' % ROOT)
with open(os.path.join(ROOT, 'templates/rtv.1')) as fp: with open(os.path.join(ROOT, 'templates/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)
@@ -64,4 +64,4 @@ def main():
fp.write(out) fp.write(out)
if __name__ == '__main__': if __name__ == '__main__':
main() main()