Version 3.0

This commit is contained in:
Rinaldus 2016-07-26 07:50:33 +03:00
parent 5d9fa72bd0
commit 7be56a1550
Signed by: Rinaldus
GPG Key ID: CB02A5190B0EC070
5 changed files with 15 additions and 3 deletions

View File

@ -3,9 +3,14 @@
This is Light weight mail notifier written in PyQt5. It checks your mailbox periodically and notify you if you have new mail. This is Light weight mail notifier written in PyQt5. It checks your mailbox periodically and notify you if you have new mail.
## Screenshots ## Screenshots
![MailboxEmpty](https://raw.github.com/rinaldus/mail-notify/master/screenshots/screen1.jpg) ### Version 3.0
![MailboxFull](https://raw.github.com/rinaldus/mail-notify/master/screenshots/screen2.jpg) ![MailboxEmpty](https://raw.github.com/rinaldus/mail-notifier/master/screenshots/no_unread_mails-3.0.jpg)
![Settings](https://raw.github.com/rinaldus/mail-notify/master/screenshots/screen3.jpg) ![MailboxFull](https://raw.github.com/rinaldus/mail-notifier/master/screenshots/unread_mails-3.0.jpg)
![Details](https://raw.github.com/rinaldus/mail-notifier/master/screenshots/details-3.0.jpg)
### Version 1.0
![MailboxEmpty](https://raw.github.com/rinaldus/mail-notifier/master/screenshots/screen1.jpg)
![MailboxFull](https://raw.github.com/rinaldus/mail-notifier/master/screenshots/screen2.jpg)
![Settings](https://raw.github.com/rinaldus/mail-notifier/master/screenshots/screen3.jpg)
## Install ## Install
@ -21,6 +26,12 @@ $ chmod +x mail-notifier.py
## Changelog ## Changelog
### Version 3.0 (release date: 26.07.16)
* System tray icon displays count of unread mail directly on itself
* Popup notification behaviour was changed: now popup notification appears only if the number of unread emails has
changed since last mail check
* Now you can view a short information about unread emails by click on system tray icon or choose "Details" from system tray menu
### Version 2.0 (release date: 23.03.16) ### Version 2.0 (release date: 23.03.16)
* **Important! Users of Mail Notifier 1.x have to delete old configuration file located in ~/.config/mail-notifier/settings.conf before first launch of new version** * **Important! Users of Mail Notifier 1.x have to delete old configuration file located in ~/.config/mail-notifier/settings.conf before first launch of new version**
* New "About" window * New "About" window

View File

@ -266,6 +266,7 @@ class Details(QDialog):
self.ui = Ui_Details() self.ui = Ui_Details()
self.ui.setupUi(self) self.ui.setupUi(self)
self.setWindowFlags(QtCore.Qt.Window)
self.ui.btnRefresh.clicked.connect(self.Refresh_clicked) self.ui.btnRefresh.clicked.connect(self.Refresh_clicked)
def closeEvent(self, event): def closeEvent(self, event):

BIN
screenshots/details-3.0.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB