Skip to content

Commit

Permalink
fixed update checker
Browse files Browse the repository at this point in the history
  • Loading branch information
j4321 committed Apr 8, 2017
1 parent 8a22895 commit 372a2d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Copyright 2016 Juliette Monsel <[email protected]>
Changelog
---------

- Version 1.1.4
* Corrected bug: update checker not working due to typo in html parser

- Version 1.1.3
* Improved Preferences dialog layout
* Added update checker
Expand All @@ -14,7 +17,7 @@ Changelog
that the installation is neater and also it can be used as a
portable software (if run locally, the config files are created
inside the app folder, not in the home directory)
* created .deb package
* Created .deb package

- Version 1.1.2
* Corrected bug: ImportError: No module named 'tktray'
Expand Down
2 changes: 1 addition & 1 deletion checkmailslib/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def handle_endtag(self, tag):
pass

def handle_data(self, data):
res = re.match(r"^mynotes-[0-9]+\.[0-9]+\.[0-9]+", data)
res = re.match(r"^checkmails-[0-9]+\.[0-9]+\.[0-9]+", data)
if res:
self.version = res.group().split("-")[-1]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
("share/pixmaps", ["checkmails.svg"])]

setup(name = "checkmails",
version = "1.1.3",
version = "1.1.4",
description = "System tray unread mail checker",
author = "Juliette Monsel",
author_email = "[email protected]",
Expand Down
1 change: 0 additions & 1 deletion sha512sums.txt

This file was deleted.

0 comments on commit 372a2d7

Please sign in to comment.