Skip to content

Commit f76723f

Browse files
committed
Update version to 3.0.0
1 parent f6fab9b commit f76723f

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ script:
3737
deploy:
3838
provider: releases
3939
api_key: $GITHUB_OAUTH_TOKEN
40-
file: "pynocchio_2.4.0_amd64.deb"
40+
file: "pynocchio_3.0.0_amd64.deb"
4141
skip_cleanup: true
4242
on:
4343
tags: true

HISTORY.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# History
22

3+
## 3.0.0 (2019-07-24)
4+
5+
Thanks [Jellby](https://github.com/Jellby) for all improvements and fixies.
6+
7+
* [NEW] Make qdarkgraystyle optional (I don't call it "elegant" when it doesn't follow my desktop's style).
8+
* [NEW] Show original image size in status bar (in brackets).
9+
* [FIX] Properly resize the image when toggling toolbar, etc.
10+
* [NEW] Flip pages with mouse wheel.
11+
* [NEW] Let the user choose whether next/prev page should go to next/prev file.
12+
* [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.
13+
* [BEW] Show scrollbars if the page does not fit the window, and take them into account when resizing.
14+
* [FIX] Esc returns from fullscreen, and window size is restored (rather than forcing it maximized).
15+
* [FIX] Save/restore settings and window size.
16+
* [NEW] Add context (right click) menu and enable shortcuts in fullscreen.
17+
* [NEW] Dockable thumbnails view.
18+
* [NEW] Restore last page (bookmarked) also when loading from command line.
19+
* [NEW] Allow loading a directory from command line.
20+
321
## 2.3.0 (2018-05-09)
422

523
* [NEW] Add es, fi-FL, fr-FR, nl-NL, pl-PL, pt-BR and tr-TR translations

pynocchio/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
__title__ = 'pynocchio'
22
__description__ = 'Pynocchio is a image viewer specialized in comic reading'
3-
__version__ = '2.4.0'
3+
__version__ = '3.0.0'
44
__url__ = 'https://github.com/pynocchio/pynocchio'
55
__download_url__ = 'https://github.com/pynocchio/pynocchio/releases'
66
__author__ = 'Michell Stuttgart'
77
__author_email__ = '[email protected]'
88
__maintainer__ = 'Michell Stuttgart'
99
__maintainer_email__ = '[email protected]'
1010
__license__ = 'GPL-v3 License'
11-
__copyright__ = 'Copyright 2014-2017 Michell Stuttgart'
11+
__copyright__ = 'Copyright 2014-2019 Michell Stuttgart'
1212
__status__ = 'Production'

0 commit comments

Comments
 (0)