diff --git a/.travis.yml b/.travis.yml index 1a3ffd36..5a265b8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ script: deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN - file: "pynocchio_2.4.0_amd64.deb" + file: "pynocchio_3.0.0_amd64.deb" skip_cleanup: true on: tags: true diff --git a/HISTORY.md b/HISTORY.md index bec81545..8eee0090 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,23 @@ # History +## 3.0.0 (2019-07-24) + +Thanks [Jellby](https://github.com/Jellby) for all improvements and fixies. + +* [NEW] Make qdarkgraystyle optional (I don't call it "elegant" when it doesn't follow my desktop's style). +* [NEW] Show original image size in status bar (in brackets). +* [FIX] Properly resize the image when toggling toolbar, etc. +* [NEW] Flip pages with mouse wheel. +* [NEW] Let the user choose whether next/prev page should go to next/prev file. +* [NEW] Add a "page fit" option. I would actually call this "best fit", I don't see the point in the current "best fit", that's simply an unconditional fit to 80% window width. +* [BEW] Show scrollbars if the page does not fit the window, and take them into account when resizing. +* [FIX] Esc returns from fullscreen, and window size is restored (rather than forcing it maximized). +* [FIX] Save/restore settings and window size. +* [NEW] Add context (right click) menu and enable shortcuts in fullscreen. +* [NEW] Dockable thumbnails view. +* [NEW] Restore last page (bookmarked) also when loading from command line. +* [NEW] Allow loading a directory from command line. + ## 2.3.0 (2018-05-09) * [NEW] Add es, fi-FL, fr-FR, nl-NL, pl-PL, pt-BR and tr-TR translations diff --git a/pynocchio/__version__.py b/pynocchio/__version__.py index f3f0f5f7..07930a64 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__ = '2.4.0' +__version__ = '3.0.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-2017 Michell Stuttgart' +__copyright__ = 'Copyright 2014-2019 Michell Stuttgart' __status__ = 'Production'