From 85903806c845475b413028005a8716879dcaa9d7 Mon Sep 17 00:00:00 2001 From: Tim G L Lyons Date: Thu, 23 Feb 2012 20:51:45 +0000 Subject: [PATCH] Change defaults so that new users are not notified about new plugins (before they have even seen the UI). This solves 0004994: Gramp hangs on retriving addons list svn: r18962 --- src/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.py b/src/config.py index 0c098ffa6..64fdfeeb6 100644 --- a/src/config.py +++ b/src/config.py @@ -128,8 +128,8 @@ register('behavior.addmedia-relative-path', False) register('behavior.autoload', False) register('behavior.avg-generation-gap', 20) register('behavior.betawarn', False) -register('behavior.check-for-updates', 2) -register('behavior.check-for-update-types', ["update", "new"]) +register('behavior.check-for-updates', 0) +register('behavior.check-for-update-types', ["new"]) register('behavior.last-check-for-updates', "1970/01/01") register('behavior.previously-seen-updates', []) register('behavior.do-not-show-previously-seen-updates', True)