at master 34 lines 1.3 kB view raw
1--- a/share/gpodder/ui/gtk/menus.ui 2+++ b/share/gpodder/ui/gtk/menus.ui 3@@ -13,10 +13,6 @@ 4 <attribute name="action">app.gotoMygpo</attribute> 5 <attribute name="label" translatable="yes">Go to gpodder.net</attribute> 6 </item> 7- <item> 8- <attribute name="action">app.checkForUpdates</attribute> 9- <attribute name="label" translatable="yes">Software updates</attribute> 10- </item> 11 </section> 12 <section> 13 <item> 14--- a/src/gpodder/config.py 15+++ b/src/gpodder/config.py 16@@ -94,7 +94,7 @@ 17 18 # Software updates from gpodder.org 19 'software_update': { 20- 'check_on_startup': True, # check for updates on start 21+ 'check_on_startup': False, # check for updates on start 22 'last_check': 0, # unix timestamp of last update check 23 'interval': 5, # interval (in days) to check for updates 24 }, 25--- a/src/gpodder/gtkui/main.py 26+++ b/src/gpodder/gtkui/main.py 27@@ -3445,6 +3445,7 @@ 28 If silent=False, a message will be shown even if no updates are 29 available (set silent=False when the check is manually triggered). 30 """ 31+ return 32 try: 33 up_to_date, version, released, days = util.get_update_info() 34 except Exception as e: