Skip to content

Commit 372a2d7

Browse files
committed
fixed update checker
1 parent 8a22895 commit 372a2d7

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

changelog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Copyright 2016 Juliette Monsel <j_4321@protonmail.com>
55
Changelog
66
---------
77

8+
- Version 1.1.4
9+
* Corrected bug: update checker not working due to typo in html parser
10+
811
- Version 1.1.3
912
* Improved Preferences dialog layout
1013
* Added update checker
@@ -14,7 +17,7 @@ Changelog
1417
that the installation is neater and also it can be used as a
1518
portable software (if run locally, the config files are created
1619
inside the app folder, not in the home directory)
17-
* created .deb package
20+
* Created .deb package
1821

1922
- Version 1.1.2
2023
* Corrected bug: ImportError: No module named 'tktray'

checkmailslib/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def handle_endtag(self, tag):
4444
pass
4545

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
("share/pixmaps", ["checkmails.svg"])]
1717

1818
setup(name = "checkmails",
19-
version = "1.1.3",
19+
version = "1.1.4",
2020
description = "System tray unread mail checker",
2121
author = "Juliette Monsel",
2222
author_email = "j_4321@protonmail.com",

sha512sums.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)