mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
move version number into libanki
This commit is contained in:
parent
318b4e371f
commit
3d33436a86
2 changed files with 3 additions and 2 deletions
|
@ -28,6 +28,6 @@ if arch[1] == "ELF":
|
|||
sys.path.insert(0, os.path.join(ext, "py2.%d-%s" % (
|
||||
sys.version_info[1], arch[0][0:2])))
|
||||
|
||||
version = "1.99"
|
||||
version="2.0.12" # build scripts grep this line, so preserve formatting
|
||||
from anki.storage import Collection
|
||||
__all__ = ["Collection"]
|
||||
|
|
|
@ -8,8 +8,9 @@ import anki.lang
|
|||
from anki.consts import HELP_SITE
|
||||
from anki.lang import langDir
|
||||
from anki.utils import isMac
|
||||
from anki import version as _version
|
||||
|
||||
appVersion="2.0.12"
|
||||
appVersion=_version
|
||||
appWebsite="http://ankisrs.net/"
|
||||
appChanges="http://ankisrs.net/docs/changes.html"
|
||||
appDonate="http://ankisrs.net/support/"
|
||||
|
|
Loading…
Reference in a new issue