gpodder.config: Check for updates by default

There are many bug reports, even from Linux users, that can simply be
fixed by installing a newer version. Because of that, we are going to
enable the update check by default for all platforms.
This commit is contained in:
Thomas Perl 2014-10-29 15:15:37 +01:00
parent 89ffd7a746
commit 115ed61ebd
1 changed files with 2 additions and 2 deletions

View File

@ -91,9 +91,9 @@ defaults = {
'retries': 3, # number of retries when downloads time out
},
# Software updates from gpodder.org (primary audience: Windows users)
# Software updates from gpodder.org
'software_update': {
'check_on_startup': gpodder.ui.win32, # check for updates on start
'check_on_startup': True, # check for updates on start
'last_check': 0, # unix timestamp of last update check
'interval': 5, # interval (in days) to check for updates
},