Skip to content

Commit

Permalink
v0.1.8: universal color scheme, Python 2 compatiblity
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Mar 20, 2017
1 parent c5cea5d commit 53cbdd5
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 77 deletions.
34 changes: 5 additions & 29 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix C. Changelog
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015-2017, Chris Warrick.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2016-03-24
:Version: 0.1.7
:Date: 2017-03-20
:Version: 0.1.8

.. index:: CHANGELOG

Expand All @@ -19,33 +19,9 @@ More information can be found on GitHub in the `releases section
Version History
===============

0.1.7
* Fix mouse support (Issue #13)

0.1.6
* fix setup.py/MANIFEST.in

0.1.5
* Warn if store is empty or does not exist (Issue #5)

0.1.4
* Add j/k support for moving in the list (Issue #4)

0.1.3
* Don’t show copied passwords (Issue #3)

0.1.2
* Add mouse wheel support.

0.1.1
* Fix search form
* Fix top-level passwords appearing twice
* Fix d/s/c for directory listings
* Allow d/s/c keys in password display mode
* Copy only the first line of multiline passwords

0.1.0
Initial release.
0.1.8
* Universal color scheme (for dark and light terminals)
* Restore Python 2 compatibility

0.1.7
* Fix mouse support (Issue #13)
Expand Down
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Maintainer: Chris Warrick <aur@chriswarrick.com>
pkgname=upass
_pyname=upass
pkgver=0.1.7
pkgver=0.1.8
pkgrel=1
pkgdesc='Console UI for pass'
arch=('any')
url='https://github.com/Kwpolska/upass'
license=('BSD')
options=(!emptydirs)
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('bd99e2b8075992c72faa8e74d730faad')
md5sums=('91211cc75ae59768156ff6fe822fb578')
depends=('pass' 'python' 'python-setuptools' 'python-urwid' 'python-pyperclip')

prepare() {
Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD-git
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pkgname=upass-git
_pyname=upass
_gitname=upass
pkgver=0.1.7
pkgver=0.1.8
pkgrel=1
pkgdesc='Console UI for pass (git version)'
arch=('any')
Expand Down
19 changes: 16 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ upass. Console UI for pass.
:Info: This is the README file for upass.
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015-2017, Chris Warrick.
:Date: 2016-03-24
:Version: 0.1.7
:Date: 2017-03-20
:Version: 0.1.8

.. image:: https://chriswarrick.com/galleries/upass/directory-listing.png

Expand All @@ -21,8 +21,21 @@ There are also AUR packages available.
USAGE
-----

Run `upass` and use the friendly console interface.
Run ``upass`` and use the friendly console interface.

CONFIGURATION
-------------

upass stores its config in ``~/.config/kwpolska/upass/upass.ini`` (but it
respects ``XDG_CONFIG_HOME`` if you changed it). Available options:

* keys — keybinding configuration.
* help, display, copy, refresh, search, quit — set key bindings for commands,
space-separated (eg. ``quit=q f10`` will make ``q`` and ``f10`` keybindings
for ``quit``)
* ``uplevel_h`` — on/off, use the ``h`` key as a back button, make sure to change
your ``help`` key bindings
* ``downlevel_l`` — on/off, use the ``l`` key to open directory/password

COPYRIGHT
---------
Expand Down
19 changes: 16 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ upass. Console UI for pass.
:Info: This is the README file for upass.
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015-2017, Chris Warrick.
:Date: 2016-03-24
:Version: 0.1.7
:Date: 2017-03-20
:Version: 0.1.8

.. image:: https://chriswarrick.com/galleries/upass/directory-listing.png

Expand All @@ -21,8 +21,21 @@ There are also AUR packages available.
USAGE
-----

Run `upass` and use the friendly console interface.
Run ``upass`` and use the friendly console interface.

CONFIGURATION
-------------

upass stores its config in ``~/.config/kwpolska/upass/upass.ini`` (but it
respects ``XDG_CONFIG_HOME`` if you changed it). Available options:

* keys — keybinding configuration.
* help, display, copy, refresh, search, quit — set key bindings for commands,
space-separated (eg. ``quit=q f10`` will make ``q`` and ``f10`` keybindings
for ``quit``)
* ``uplevel_h`` — on/off, use the ``h`` key as a back button, make sure to change
your ``help`` key bindings
* ``downlevel_l`` — on/off, use the ``l`` key to open directory/password

COPYRIGHT
---------
Expand Down
34 changes: 5 additions & 29 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix C. Changelog
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015-2017, Chris Warrick.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2016-03-24
:Version: 0.1.7
:Date: 2017-03-20
:Version: 0.1.8

.. index:: CHANGELOG

Expand All @@ -19,33 +19,9 @@ More information can be found on GitHub in the `releases section
Version History
===============

0.1.7
* Fix mouse support (Issue #13)

0.1.6
* fix setup.py/MANIFEST.in

0.1.5
* Warn if store is empty or does not exist (Issue #5)

0.1.4
* Add j/k support for moving in the list (Issue #4)

0.1.3
* Don’t show copied passwords (Issue #3)

0.1.2
* Add mouse wheel support.

0.1.1
* Fix search form
* Fix top-level passwords appearing twice
* Fix d/s/c for directory listings
* Allow d/s/c keys in password display mode
* Copy only the first line of multiline passwords

0.1.0
Initial release.
0.1.8
* Universal color scheme (for dark and light terminals)
* Restore Python 2 compatibility

0.1.7
* Fix mouse support (Issue #13)
Expand Down
4 changes: 2 additions & 2 deletions docs/LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix B. License for upass
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015-2017, Chris Warrick.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2016-03-24
:Version: 0.1.7
:Date: 2017-03-20
:Version: 0.1.8

.. index:: LICENSE

Expand Down
4 changes: 2 additions & 2 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ upass. Console UI for pass.
:Info: This is the README file for upass.
:Author: Chris Warrick <chris@chriswarrick.com>
:Copyright: © 2015-2017, Chris Warrick.
:Date: 2016-03-24
:Version: 0.1.7
:Date: 2017-03-20
:Version: 0.1.8

.. image:: https://chriswarrick.com/galleries/upass/directory-listing.png

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.7'
version = '0.1.8'
# The full version, including alpha/beta/rc tags.
release = '0.1.7'
release = '0.1.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
dependencies = [l.strip() for l in fh]

setup(name='upass',
version='0.1.7',
version='0.1.8',
description='Console UI for pass.',
keywords='upass',
author='Chris Warrick',
Expand Down
4 changes: 2 additions & 2 deletions upass/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
# upass v0.1.7
# upass v0.1.8
# Console UI for pass.
# Copyright © 2015-2017, Chris Warrick.
# All rights reserved.
Expand Down Expand Up @@ -44,7 +44,7 @@
import configparser

__title__ = 'upass'
__version__ = '0.1.7'
__version__ = '0.1.8'
__author__ = 'Chris Warrick'
__license__ = '3-clause BSD'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion upass/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
# upass v0.1.7
# upass v0.1.8
# Console UI for pass.
# Copyright © 2015-2017, Chris Warrick.
# See /LICENSE for licensing information.
Expand Down

0 comments on commit 53cbdd5

Please sign in to comment.