mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 22:42:25 -04:00
send build hash in update check so broken betas can be notified
This commit is contained in:
parent
dcec361410
commit
bca31bf38b
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ import aqt
|
|||
from aqt.utils import openLink
|
||||
from anki.utils import json, platDesc
|
||||
from aqt.utils import showText
|
||||
from aqt.utils import versionWithBuild
|
||||
|
||||
class LatestVersionFinder(QThread):
|
||||
|
||||
|
@ -23,7 +24,7 @@ class LatestVersionFinder(QThread):
|
|||
self.config = main.pm.meta
|
||||
|
||||
def _data(self):
|
||||
d = {"ver": aqt.appVersion,
|
||||
d = {"ver": versionWithBuild(),
|
||||
"os": platDesc(),
|
||||
"id": self.config['id'],
|
||||
"lm": self.config['lastMsg'],
|
||||
|
|
Loading…
Reference in a new issue