diff --git a/.travis.yml b/.travis.yml index c880d552..dc15dd6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ script: deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN - file: "pynocchio_3.1.1_amd64.deb" + file: "pynocchio_3.2.0_amd64.deb" skip_cleanup: true on: tags: true diff --git a/HISTORY.md b/HISTORY.md index 39c8a392..88e1f167 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ # History +## 3.2.0 (2020-08-31) + +* [NEW] Add Up/Down, PgUp/PgDown, Home/End shortcuts. Thanks [Jellby](https://github.com/Jellby) +* [FIX] Dependencies and autodeploy + ## 3.1.1 (2019-09-03) * [FIX] Translations erros diff --git a/linux/control b/linux/control index 9599056c..7888c40e 100644 --- a/linux/control +++ b/linux/control @@ -1,5 +1,5 @@ Package: pynocchio -Version: 3.1.1 +Version: 3.2.0 Architecture: amd64 Section: graphics Priority: extra diff --git a/pynocchio/__version__.py b/pynocchio/__version__.py index 585461fc..3a36e968 100644 --- a/pynocchio/__version__.py +++ b/pynocchio/__version__.py @@ -1,6 +1,6 @@ __title__ = 'pynocchio' __description__ = 'Pynocchio is a image viewer specialized in comic reading' -__version__ = '3.1.1' +__version__ = '3.2.0' __url__ = 'https://github.com/pynocchio/pynocchio' __download_url__ = 'https://github.com/pynocchio/pynocchio/releases' __author__ = 'Michell Stuttgart' @@ -8,5 +8,5 @@ __maintainer__ = 'Michell Stuttgart' __maintainer_email__ = 'michellstut@gmail.com' __license__ = 'GPL-v3 License' -__copyright__ = 'Copyright 2014-2019 Michell Stuttgart' +__copyright__ = 'Copyright 2014-2020 Michell Stuttgart' __status__ = 'Production'