diff --git a/README.md b/README.md index 71adc83..f852159 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,11 @@ $ chmod +x mail-notifier.py ## Changelog +### Version 3.01 (release date: 10.10.17) +* Added status bar in Details window +* Details window now remembers its size +* Some cosmetic improvements in menu + ### 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 diff --git a/mail-notifier.py b/mail-notifier.py index 032b361..657b64a 100755 --- a/mail-notifier.py +++ b/mail-notifier.py @@ -22,7 +22,7 @@ from datetime import datetime, date, time #variables programTitle = "Mail Notifier" -programVersion = "3.0-dev" +programVersion = "3.01" settings = QSettings(os.path.expanduser("~")+"/.config/mail-notifier/settings.conf", QSettings.NativeFormat) def GlobalSettingsExist(): if ((settings.contains("CheckInterval") and settings.value("CheckInterval") != "") and @@ -120,6 +120,7 @@ class Window(QDialog): def SettingsRestore(self): if (GlobalSettingsExist() and AccountExist()): groups = settings.childGroups() + self.ui.comboAccounts.clear() # Clear account items before fill them again for i in range (len(groups)): self.ui.comboAccounts.addItem(groups[i]) self.ui.comboAccounts.setCurrentText(groups[i])