mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Use CFBundleShortVersionString for version code
This commit is contained in:
parent
a987341c37
commit
dfbb2df839
1 changed files with 2 additions and 2 deletions
|
|
@ -557,8 +557,8 @@ def process_ipa(repodir, apks):
|
||||||
if re.match("Payload/[^/]*.app/Info.plist", info.filename):
|
if re.match("Payload/[^/]*.app/Info.plist", info.filename):
|
||||||
with ipa_zip.open(info) as plist_file:
|
with ipa_zip.open(info) as plist_file:
|
||||||
plist = readPlist(plist_file)
|
plist = readPlist(plist_file)
|
||||||
# https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion
|
# https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring
|
||||||
version = plist["CFBundleVersion"].split('.')
|
version = plist["CFBundleShortVersionString"].split('.')
|
||||||
major = int(version.pop(0))
|
major = int(version.pop(0))
|
||||||
minor = int(version.pop(0)) if version else 0
|
minor = int(version.pop(0)) if version else 0
|
||||||
patch = int(version.pop(0)) if version else 0
|
patch = int(version.pop(0)) if version else 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue