Version 3.01
This commit is contained in:
parent
d7378800d0
commit
a49944eab6
|
@ -26,6 +26,11 @@ $ chmod +x mail-notifier.py
|
||||||
|
|
||||||
## Changelog
|
## 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)
|
### Version 3.0 (release date: 26.07.16)
|
||||||
* System tray icon displays count of unread mail directly on itself
|
* 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
|
* Popup notification behaviour was changed: now popup notification appears only if the number of unread emails has
|
||||||
|
|
|
@ -22,7 +22,7 @@ from datetime import datetime, date, time
|
||||||
|
|
||||||
#variables
|
#variables
|
||||||
programTitle = "Mail Notifier"
|
programTitle = "Mail Notifier"
|
||||||
programVersion = "3.0-dev"
|
programVersion = "3.01"
|
||||||
settings = QSettings(os.path.expanduser("~")+"/.config/mail-notifier/settings.conf", QSettings.NativeFormat)
|
settings = QSettings(os.path.expanduser("~")+"/.config/mail-notifier/settings.conf", QSettings.NativeFormat)
|
||||||
def GlobalSettingsExist():
|
def GlobalSettingsExist():
|
||||||
if ((settings.contains("CheckInterval") and settings.value("CheckInterval") != "") and
|
if ((settings.contains("CheckInterval") and settings.value("CheckInterval") != "") and
|
||||||
|
@ -120,6 +120,7 @@ class Window(QDialog):
|
||||||
def SettingsRestore(self):
|
def SettingsRestore(self):
|
||||||
if (GlobalSettingsExist() and AccountExist()):
|
if (GlobalSettingsExist() and AccountExist()):
|
||||||
groups = settings.childGroups()
|
groups = settings.childGroups()
|
||||||
|
self.ui.comboAccounts.clear() # Clear account items before fill them again
|
||||||
for i in range (len(groups)):
|
for i in range (len(groups)):
|
||||||
self.ui.comboAccounts.addItem(groups[i])
|
self.ui.comboAccounts.addItem(groups[i])
|
||||||
self.ui.comboAccounts.setCurrentText(groups[i])
|
self.ui.comboAccounts.setCurrentText(groups[i])
|
||||||
|
|
Loading…
Reference in New Issue