diff --git a/README.md b/README.md index 3ed50dd..a7e274c 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ $ chmod +x mail-notifier.py ``` ## Changelog +### Version 2.0-beta1 (release date: 10.02.16) +* **Important! The configuration structure was changed. 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** +* Multi account support. Now the program is able to check new mails in several mailboxes. You will get the total quantity of new mails from all mailboxes in system tray + ### Version 1.02 (release date: 26.01.16) * Rewrote periodical mail check function and fixed bug in OS X diff --git a/mail-notifier.py b/mail-notifier.py index 9b1e450..b3fc4ba 100755 --- a/mail-notifier.py +++ b/mail-notifier.py @@ -177,7 +177,7 @@ class Window(QDialog): def btnSaveAccount_clicked(self): self.SettingsSave(self.ui.comboAccounts.currentText()) - self.ui.lblTestOutput.setText("Acount saved") + self.ui.lblTestOutput.setText("Account saved") def btnRemoveAccount_clicked(self): reply = QMessageBox.warning(self, 'Warning!', "Delete this account permanently?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No) @@ -310,5 +310,3 @@ if __name__ == '__main__': mail_check() window.start() sys.exit(app.exec_()) -# TODO: -# Separate mail count for each account