Skip to content

Commit a613ca0

Browse files
authored
Merge pull request #99 from mstuttgart/fix-issues
Fix issues and version on abount page
2 parents 1f33d4d + 4f02a9e commit a613ca0

File tree

8 files changed

+4292
-4300
lines changed

8 files changed

+4292
-4300
lines changed

.travis.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,3 @@ install:
3131

3232
script:
3333
- tox -e ${TOX_ENV}
34-
35-
deploy:
36-
provider: releases
37-
api_key: $GITHUB_OAUTH_TOKEN
38-
file: "pynocchio_3.2.0_amd64.deb"
39-
skip_cleanup: true
40-
on:
41-
tags: true
42-
repo: mstuttgart/pynocchio
43-
branch: master
44-
45-
after_success:
46-
- sudo dpkg -i pynocchio*.deb

HISTORY.md

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

3+
## 3.2.1 (2021-10-10)
4+
5+
* [FIX] Version number in about page
6+
* [FIX] Limit size of page title
7+
38
## 3.2.0 (2020-08-31)
49

510
* [NEW] Add Up/Down, PgUp/PgDown, Home/End shortcuts. Thanks [Jellby](https://github.com/Jellby)

data/others/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<center>
2828
<p><img src=":/others/pynocchio.png"/></p>
2929

30-
<h1>Pynocchio 3.1.1</h1>
30+
<h1>Pynocchio 3.2.1</h1>
3131

3232
<p>Pynocchio is an image viewer specialized in comic book reading.
3333
</p>

data/others/about_es.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<center>
2828
<p><img src=":/others/pynocchio.png"/></p>
2929

30-
<h1>Pynocchio 3.1.1</h1>
30+
<h1>Pynocchio 3.2.1</h1>
3131

3232
<p>Pynocchio es un visor de imágenes especializado en la lectura de cómics.
3333
</p>

linux/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: pynocchio
2-
Version: 3.2.0
2+
Version: 3.2.1
33
Architecture: amd64
44
Section: graphics
55
Priority: extra

pynocchio/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = 'pynocchio'
22
__description__ = 'Pynocchio is a image viewer specialized in comic reading'
3-
__version__ = '3.2.0'
3+
__version__ = '3.2.1'
44
__url__ = 'https://github.com/pynocchio/pynocchio'
55
__download_url__ = 'https://github.com/pynocchio/pynocchio/releases'
66
__author__ = 'Michell Stuttgart'

pynocchio/uic_files/custom_widgets/status_bar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def set_comic_path(self, path):
108108
if not self.comic_path:
109109
self.add_comic_path_label()
110110

111-
self.comic_path.setText(self.tr('Title: ') + path)
111+
self.comic_path.setText(self.tr('Title: ') + path[:50])
112112

113113
@QtCore.pyqtSlot(int)
114114
def set_progressbar_value(self, n):

pynocchio/uic_files/main_window_view_rc.py

Lines changed: 4282 additions & 4282 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)