Author: Andreas Bombe Description: Disable check for new upstream version The Debian packaged anki should not keep notifying the user about new upstream versions. For the user, Debian is upstream and new versions of the package would be found through the usual channels (e.g. aptitude). Forwarded: not-needed diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index 3f2089a..80d4cb4 100755 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -2614,6 +2614,7 @@ This deck already exists on your computer. Overwrite the local copy?"""), ########################################################################## def setupAutoUpdate(self): + return # do not lookup latest upstream version in Debian packaged anki self.autoUpdate = ui.update.LatestVersionFinder(self) self.connect(self.autoUpdate, SIGNAL("newVerAvail"), self.newVerAvail) self.connect(self.autoUpdate, SIGNAL("newMsg"), self.newMsg)