Skip to content

Commit

Permalink
Merge pull request #99 from mstuttgart/fix-issues
Browse files Browse the repository at this point in the history
Fix issues and version on abount page
  • Loading branch information
mstuttgart authored Oct 12, 2021
2 parents 1f33d4d + 4f02a9e commit a613ca0
Show file tree
Hide file tree
Showing 8 changed files with 4,292 additions and 4,300 deletions.
13 changes: 0 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,3 @@ install:

script:
- tox -e ${TOX_ENV}

deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: "pynocchio_3.2.0_amd64.deb"
skip_cleanup: true
on:
tags: true
repo: mstuttgart/pynocchio
branch: master

after_success:
- sudo dpkg -i pynocchio*.deb
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## 3.2.1 (2021-10-10)

* [FIX] Version number in about page
* [FIX] Limit size of page title

## 3.2.0 (2020-08-31)

* [NEW] Add Up/Down, PgUp/PgDown, Home/End shortcuts. Thanks [Jellby](https://github.com/Jellby)
Expand Down
2 changes: 1 addition & 1 deletion data/others/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<center>
<p><img src=":/others/pynocchio.png"/></p>

<h1>Pynocchio 3.1.1</h1>
<h1>Pynocchio 3.2.1</h1>

<p>Pynocchio is an image viewer specialized in comic book reading.
</p>
Expand Down
2 changes: 1 addition & 1 deletion data/others/about_es.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<center>
<p><img src=":/others/pynocchio.png"/></p>

<h1>Pynocchio 3.1.1</h1>
<h1>Pynocchio 3.2.1</h1>

<p>Pynocchio es un visor de imágenes especializado en la lectura de cómics.
</p>
Expand Down
2 changes: 1 addition & 1 deletion linux/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: pynocchio
Version: 3.2.0
Version: 3.2.1
Architecture: amd64
Section: graphics
Priority: extra
Expand Down
2 changes: 1 addition & 1 deletion pynocchio/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'pynocchio'
__description__ = 'Pynocchio is a image viewer specialized in comic reading'
__version__ = '3.2.0'
__version__ = '3.2.1'
__url__ = 'https://github.com/pynocchio/pynocchio'
__download_url__ = 'https://github.com/pynocchio/pynocchio/releases'
__author__ = 'Michell Stuttgart'
Expand Down
2 changes: 1 addition & 1 deletion pynocchio/uic_files/custom_widgets/status_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def set_comic_path(self, path):
if not self.comic_path:
self.add_comic_path_label()

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

@QtCore.pyqtSlot(int)
def set_progressbar_value(self, n):
Expand Down
8,564 changes: 4,282 additions & 4,282 deletions pynocchio/uic_files/main_window_view_rc.py

Large diffs are not rendered by default.

0 comments on commit a613ca0

Please sign in to comment.