mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-20 13:50:12 +01:00
yaml rewrite version code as int
This commit is contained in:
parent
f9d4007ea6
commit
7aa92abebc
@ -970,7 +970,10 @@ def write_yaml(mf, app):
|
|||||||
b = ruamel.yaml.comments.CommentedMap()
|
b = ruamel.yaml.comments.CommentedMap()
|
||||||
for field in fields:
|
for field in fields:
|
||||||
if hasattr(build, field) and getattr(build, field):
|
if hasattr(build, field) and getattr(build, field):
|
||||||
b.update({field: getattr(build, field)})
|
if field is 'versionCode':
|
||||||
|
b.update({field: int(getattr(build, field))})
|
||||||
|
else:
|
||||||
|
b.update({field: getattr(build, field)})
|
||||||
builds.append(b)
|
builds.append(b)
|
||||||
|
|
||||||
# insert extra empty lines between builds
|
# insert extra empty lines between builds
|
||||||
@ -1029,7 +1032,9 @@ def write_yaml(mf, app):
|
|||||||
if field in ['Description']:
|
if field in ['Description']:
|
||||||
preformated.update({field: ruamel.yaml.scalarstring.preserve_literal(getattr(app, field))})
|
preformated.update({field: ruamel.yaml.scalarstring.preserve_literal(getattr(app, field))})
|
||||||
elif field is 'Builds':
|
elif field is 'Builds':
|
||||||
preformated.update({'Builds': _builds_to_yaml(app)})
|
preformated.update({field: _builds_to_yaml(app)})
|
||||||
|
elif field is 'CurrentVersionCode':
|
||||||
|
preformated.update({field: int(getattr(app, field))})
|
||||||
else:
|
else:
|
||||||
preformated.update({field: getattr(app, field)})
|
preformated.update({field: getattr(app, field)})
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ Repo: https://gitlab.com/fdroid/privileged-extension.git
|
|||||||
|
|
||||||
Builds:
|
Builds:
|
||||||
- versionName: 0.2.1
|
- versionName: 0.2.1
|
||||||
versionCode: '2000'
|
versionCode: 2000
|
||||||
commit: 0.2.1
|
commit: 0.2.1
|
||||||
output: app/build/distributions/FDroidPrivilegedExtensionFromBinaries-$$VERSION$$.zip
|
output: app/build/distributions/FDroidPrivilegedExtensionFromBinaries-$$VERSION$$.zip
|
||||||
build: gradle assembleUpdateZipFromBinariesDebug
|
build: gradle assembleUpdateZipFromBinariesDebug
|
||||||
@ -41,4 +41,4 @@ Builds:
|
|||||||
AutoUpdateMode: Version %v
|
AutoUpdateMode: Version %v
|
||||||
UpdateCheckMode: Tags
|
UpdateCheckMode: Tags
|
||||||
CurrentVersion: 0.2.1
|
CurrentVersion: 0.2.1
|
||||||
CurrentVersionCode: '2000'
|
CurrentVersionCode: 2000
|
||||||
|
@ -30,162 +30,162 @@ Repo: fdroidclient
|
|||||||
|
|
||||||
Builds:
|
Builds:
|
||||||
- versionName: '0.17'
|
- versionName: '0.17'
|
||||||
versionCode: '8'
|
versionCode: 8
|
||||||
commit: c626ce5f6d3e10ae15942f01ff028be310cc695a
|
commit: c626ce5f6d3e10ae15942f01ff028be310cc695a
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.18'
|
- versionName: '0.18'
|
||||||
versionCode: '9'
|
versionCode: 9
|
||||||
commit: a6c9ed8d06b19315df9ba9041324f78139f7d238
|
commit: a6c9ed8d06b19315df9ba9041324f78139f7d238
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.19'
|
- versionName: '0.19'
|
||||||
versionCode: '10'
|
versionCode: 10
|
||||||
commit: 540b7d0522f4d67a4896697f7342e4c75b4cbf59
|
commit: 540b7d0522f4d67a4896697f7342e4c75b4cbf59
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.20'
|
- versionName: '0.20'
|
||||||
versionCode: '11'
|
versionCode: 11
|
||||||
commit: ddacfb856ad66c1c367e20c9cbecbfb15fe00813
|
commit: ddacfb856ad66c1c367e20c9cbecbfb15fe00813
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.21'
|
- versionName: '0.21'
|
||||||
versionCode: '12'
|
versionCode: 12
|
||||||
commit: 49fa56aa6626a190f2d711120b69e435e9e615b1
|
commit: 49fa56aa6626a190f2d711120b69e435e9e615b1
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.22'
|
- versionName: '0.22'
|
||||||
versionCode: '13'
|
versionCode: 13
|
||||||
commit: a6a33c942495cc4c74a7cb6e968efe0e00815e68
|
commit: a6a33c942495cc4c74a7cb6e968efe0e00815e68
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.23'
|
- versionName: '0.23'
|
||||||
versionCode: '14'
|
versionCode: 14
|
||||||
commit: aa58a8aad1a1c3832eafb9f1bdd6db8292d2c172
|
commit: aa58a8aad1a1c3832eafb9f1bdd6db8292d2c172
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.24'
|
- versionName: '0.24'
|
||||||
versionCode: '15'
|
versionCode: 15
|
||||||
commit: 9b5fe2976443255b95027abd412f1c1e7f3d27b2
|
commit: 9b5fe2976443255b95027abd412f1c1e7f3d27b2
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.25'
|
- versionName: '0.25'
|
||||||
versionCode: '16'
|
versionCode: 16
|
||||||
commit: 43977cc493e47a4dc841c4192ae8a40fb14b639b
|
commit: 43977cc493e47a4dc841c4192ae8a40fb14b639b
|
||||||
init: rm -f build.xml
|
init: rm -f build.xml
|
||||||
|
|
||||||
- versionName: '0.28'
|
- versionName: '0.28'
|
||||||
versionCode: '19'
|
versionCode: 19
|
||||||
commit: f881aabe5bd0ac94771b03f1318a6e0972ab4128
|
commit: f881aabe5bd0ac94771b03f1318a6e0972ab4128
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.29'
|
- versionName: '0.29'
|
||||||
versionCode: '20'
|
versionCode: 20
|
||||||
commit: 87b229b95d0909bfd05c65c5670794e743626f6c
|
commit: 87b229b95d0909bfd05c65c5670794e743626f6c
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.30'
|
- versionName: '0.30'
|
||||||
versionCode: '21'
|
versionCode: 21
|
||||||
commit: 497cb19840f79b31ae9590f5abd9e4df832b34ee
|
commit: 497cb19840f79b31ae9590f5abd9e4df832b34ee
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.31'
|
- versionName: '0.31'
|
||||||
versionCode: '22'
|
versionCode: 22
|
||||||
commit: f99f8a544c7cb4d4a48ad09da00ad281af05f2ac
|
commit: f99f8a544c7cb4d4a48ad09da00ad281af05f2ac
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.32'
|
- versionName: '0.32'
|
||||||
versionCode: '23'
|
versionCode: 23
|
||||||
commit: cc3970cc243e345416bfc62781ece6eeefd11495
|
commit: cc3970cc243e345416bfc62781ece6eeefd11495
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.33'
|
- versionName: '0.33'
|
||||||
versionCode: '24'
|
versionCode: 24
|
||||||
commit: 58eb580159aa4d54767f0af1736cad233fec2475
|
commit: 58eb580159aa4d54767f0af1736cad233fec2475
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: 0.34-test
|
- versionName: 0.34-test
|
||||||
versionCode: '25'
|
versionCode: 25
|
||||||
commit: 335d27b725b0f92e9e8804ae09518cd47bc7b021
|
commit: 335d27b725b0f92e9e8804ae09518cd47bc7b021
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: 0.35-test
|
- versionName: 0.35-test
|
||||||
versionCode: '26'
|
versionCode: 26
|
||||||
commit: a06d18b029392669e98359f86c07e442a04e6a13
|
commit: a06d18b029392669e98359f86c07e442a04e6a13
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: 0.36-test
|
- versionName: 0.36-test
|
||||||
versionCode: '27'
|
versionCode: 27
|
||||||
commit: 647e230c9e888c04bb0554078c5aa81da63548a0
|
commit: 647e230c9e888c04bb0554078c5aa81da63548a0
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: 0.37-test
|
- versionName: 0.37-test
|
||||||
versionCode: '28'
|
versionCode: 28
|
||||||
commit: 3c02e3ccc147a34af42cedf7d85f18dc75c8efa8
|
commit: 3c02e3ccc147a34af42cedf7d85f18dc75c8efa8
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.38'
|
- versionName: '0.38'
|
||||||
versionCode: '38'
|
versionCode: 38
|
||||||
commit: 99b52c988d203811f434d6ac40675a63d5ae41ab
|
commit: 99b52c988d203811f434d6ac40675a63d5ae41ab
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: 0.39-test
|
- versionName: 0.39-test
|
||||||
versionCode: '39'
|
versionCode: 39
|
||||||
commit: 9a7d0b9f10710105d51d8206a7faa4408c60c20d
|
commit: 9a7d0b9f10710105d51d8206a7faa4408c60c20d
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.40'
|
- versionName: '0.40'
|
||||||
versionCode: '40'
|
versionCode: 40
|
||||||
commit: 51a67efdf1ee2819bee99d9263b2980dafaf761d
|
commit: 51a67efdf1ee2819bee99d9263b2980dafaf761d
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.42'
|
- versionName: '0.42'
|
||||||
versionCode: '42'
|
versionCode: 42
|
||||||
commit: 36b815095ef51ca4f21887d973dbc0a50575cd65
|
commit: 36b815095ef51ca4f21887d973dbc0a50575cd65
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.43'
|
- versionName: '0.43'
|
||||||
versionCode: '43'
|
versionCode: 43
|
||||||
disable: sdk doesn't like tzm (at f2109e4e0bf1597c625221d8d2d10050f146ba5a)
|
disable: sdk doesn't like tzm (at f2109e4e0bf1597c625221d8d2d10050f146ba5a)
|
||||||
commit: f2109e4e0bf1597c625221d8d2d10050f146ba5a
|
commit: f2109e4e0bf1597c625221d8d2d10050f146ba5a
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.44'
|
- versionName: '0.44'
|
||||||
versionCode: '44'
|
versionCode: 44
|
||||||
disable: nasty upgrade bug
|
disable: nasty upgrade bug
|
||||||
commit: '0.44'
|
commit: '0.44'
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.45'
|
- versionName: '0.45'
|
||||||
versionCode: '45'
|
versionCode: 45
|
||||||
commit: '0.45'
|
commit: '0.45'
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: '0.46'
|
- versionName: '0.46'
|
||||||
versionCode: '46'
|
versionCode: 46
|
||||||
commit: '0.46'
|
commit: '0.46'
|
||||||
target: android-15
|
target: android-15
|
||||||
|
|
||||||
- versionName: 0.47-test
|
- versionName: 0.47-test
|
||||||
versionCode: '47'
|
versionCode: 47
|
||||||
commit: 0.47-test
|
commit: 0.47-test
|
||||||
target: android-17
|
target: android-17
|
||||||
|
|
||||||
- versionName: 0.48-test
|
- versionName: 0.48-test
|
||||||
versionCode: '48'
|
versionCode: 48
|
||||||
commit: 0.48-test
|
commit: 0.48-test
|
||||||
target: android-17
|
target: android-17
|
||||||
|
|
||||||
- versionName: '0.50'
|
- versionName: '0.50'
|
||||||
versionCode: '50'
|
versionCode: 50
|
||||||
commit: '0.50'
|
commit: '0.50'
|
||||||
|
|
||||||
- versionName: 0.51-test
|
- versionName: 0.51-test
|
||||||
versionCode: '51'
|
versionCode: 51
|
||||||
commit: 0.51-test
|
commit: 0.51-test
|
||||||
|
|
||||||
- versionName: 0.52-test
|
- versionName: 0.52-test
|
||||||
versionCode: '52'
|
versionCode: 52
|
||||||
commit: 0.52-test
|
commit: 0.52-test
|
||||||
submodules: true
|
submodules: true
|
||||||
prebuild: rm -rf extern/Universal-Image-Loader/downloads
|
prebuild: rm -rf extern/Universal-Image-Loader/downloads
|
||||||
@ -194,91 +194,91 @@ Builds:
|
|||||||
- extern/Universal-Image-Loader/library
|
- extern/Universal-Image-Loader/library
|
||||||
|
|
||||||
- versionName: 0.53-test
|
- versionName: 0.53-test
|
||||||
versionCode: '53'
|
versionCode: 53
|
||||||
commit: 0.53-test
|
commit: 0.53-test
|
||||||
submodules: true
|
submodules: true
|
||||||
scandelete:
|
scandelete:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.54'
|
- versionName: '0.54'
|
||||||
versionCode: '540'
|
versionCode: 540
|
||||||
commit: '0.54'
|
commit: '0.54'
|
||||||
submodules: true
|
submodules: true
|
||||||
scandelete:
|
scandelete:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.55'
|
- versionName: '0.55'
|
||||||
versionCode: '550'
|
versionCode: 550
|
||||||
commit: '0.55'
|
commit: '0.55'
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.56-test
|
- versionName: 0.56-test
|
||||||
versionCode: '560'
|
versionCode: 560
|
||||||
commit: 0.56-test
|
commit: 0.56-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.57-test
|
- versionName: 0.57-test
|
||||||
versionCode: '570'
|
versionCode: 570
|
||||||
commit: 0.57-test
|
commit: 0.57-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: '0.58'
|
- versionName: '0.58'
|
||||||
versionCode: '580'
|
versionCode: 580
|
||||||
commit: '0.58'
|
commit: '0.58'
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.59-test
|
- versionName: 0.59-test
|
||||||
versionCode: '590'
|
versionCode: 590
|
||||||
commit: 0.59-test
|
commit: 0.59-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.61-test
|
- versionName: 0.61-test
|
||||||
versionCode: '610'
|
versionCode: 610
|
||||||
commit: 0.61-test
|
commit: 0.61-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: '0.62'
|
- versionName: '0.62'
|
||||||
versionCode: '620'
|
versionCode: 620
|
||||||
commit: '0.62'
|
commit: '0.62'
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: '0.63'
|
- versionName: '0.63'
|
||||||
versionCode: '630'
|
versionCode: 630
|
||||||
commit: '0.63'
|
commit: '0.63'
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.64-test
|
- versionName: 0.64-test
|
||||||
versionCode: '640'
|
versionCode: 640
|
||||||
commit: 0.64-test
|
commit: 0.64-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: '0.65'
|
- versionName: '0.65'
|
||||||
versionCode: '650'
|
versionCode: 650
|
||||||
commit: '0.65'
|
commit: '0.65'
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: '0.66'
|
- versionName: '0.66'
|
||||||
versionCode: '660'
|
versionCode: 660
|
||||||
commit: '0.66'
|
commit: '0.66'
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.67-test
|
- versionName: 0.67-test
|
||||||
versionCode: '670'
|
versionCode: 670
|
||||||
commit: 0.67-test
|
commit: 0.67-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.68-test
|
- versionName: 0.68-test
|
||||||
versionCode: '680'
|
versionCode: 680
|
||||||
commit: 0.68-test
|
commit: 0.68-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.69-test
|
- versionName: 0.69-test
|
||||||
versionCode: '690'
|
versionCode: 690
|
||||||
commit: 0.69-test
|
commit: 0.69-test
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- versionName: 0.70-test
|
- versionName: 0.70-test
|
||||||
versionCode: '700'
|
versionCode: 700
|
||||||
commit: 0.70-test
|
commit: 0.70-test
|
||||||
submodules: true
|
submodules: true
|
||||||
prebuild: ./ant-prepare.sh
|
prebuild: ./ant-prepare.sh
|
||||||
@ -286,7 +286,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.71'
|
- versionName: '0.71'
|
||||||
versionCode: '710'
|
versionCode: 710
|
||||||
disable: Broken MTM/AndroidPinning
|
disable: Broken MTM/AndroidPinning
|
||||||
commit: '0.71'
|
commit: '0.71'
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -295,7 +295,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.72'
|
- versionName: '0.72'
|
||||||
versionCode: '720'
|
versionCode: 720
|
||||||
disable: proguard issues
|
disable: proguard issues
|
||||||
commit: '0.72'
|
commit: '0.72'
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -304,7 +304,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.73'
|
- versionName: '0.73'
|
||||||
versionCode: '730'
|
versionCode: 730
|
||||||
disable: local repos broken
|
disable: local repos broken
|
||||||
commit: '0.73'
|
commit: '0.73'
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -313,7 +313,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.74'
|
- versionName: '0.74'
|
||||||
versionCode: '740'
|
versionCode: 740
|
||||||
disable: still some proguard issues
|
disable: still some proguard issues
|
||||||
commit: '0.74'
|
commit: '0.74'
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -322,7 +322,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.75'
|
- versionName: '0.75'
|
||||||
versionCode: '750'
|
versionCode: 750
|
||||||
disable: repo update progress crasher
|
disable: repo update progress crasher
|
||||||
commit: '0.75'
|
commit: '0.75'
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -331,7 +331,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.76'
|
- versionName: '0.76'
|
||||||
versionCode: '760'
|
versionCode: 760
|
||||||
commit: '0.76'
|
commit: '0.76'
|
||||||
submodules: true
|
submodules: true
|
||||||
prebuild: ./ant-prepare.sh
|
prebuild: ./ant-prepare.sh
|
||||||
@ -339,7 +339,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.77-test
|
- versionName: 0.77-test
|
||||||
versionCode: '770'
|
versionCode: 770
|
||||||
commit: 0.77-test
|
commit: 0.77-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -348,7 +348,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.78'
|
- versionName: '0.78'
|
||||||
versionCode: '780'
|
versionCode: 780
|
||||||
commit: '0.78'
|
commit: '0.78'
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -357,7 +357,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.79-test
|
- versionName: 0.79-test
|
||||||
versionCode: '790'
|
versionCode: 790
|
||||||
commit: 0.79-test
|
commit: 0.79-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -366,7 +366,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.80-test
|
- versionName: 0.80-test
|
||||||
versionCode: '800'
|
versionCode: 800
|
||||||
commit: 0.80-test
|
commit: 0.80-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -375,7 +375,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.81-test
|
- versionName: 0.81-test
|
||||||
versionCode: '810'
|
versionCode: 810
|
||||||
commit: 0.81-test
|
commit: 0.81-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -384,7 +384,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.82'
|
- versionName: '0.82'
|
||||||
versionCode: '820'
|
versionCode: 820
|
||||||
commit: '0.82'
|
commit: '0.82'
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -393,7 +393,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.83'
|
- versionName: '0.83'
|
||||||
versionCode: '830'
|
versionCode: 830
|
||||||
commit: '0.83'
|
commit: '0.83'
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -402,7 +402,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.84-test
|
- versionName: 0.84-test
|
||||||
versionCode: '840'
|
versionCode: 840
|
||||||
commit: 0.84-test
|
commit: 0.84-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -411,7 +411,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.85-test
|
- versionName: 0.85-test
|
||||||
versionCode: '850'
|
versionCode: 850
|
||||||
commit: 0.85-test
|
commit: 0.85-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -420,7 +420,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.86-test
|
- versionName: 0.86-test
|
||||||
versionCode: '860'
|
versionCode: 860
|
||||||
commit: 0.86-test
|
commit: 0.86-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -429,7 +429,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.87-test
|
- versionName: 0.87-test
|
||||||
versionCode: '870'
|
versionCode: 870
|
||||||
commit: 0.87-test
|
commit: 0.87-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -438,7 +438,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.88'
|
- versionName: '0.88'
|
||||||
versionCode: '880'
|
versionCode: 880
|
||||||
commit: '0.88'
|
commit: '0.88'
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -447,7 +447,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.89-test
|
- versionName: 0.89-test
|
||||||
versionCode: '890'
|
versionCode: 890
|
||||||
commit: 0.89-test
|
commit: 0.89-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -456,7 +456,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.90-test
|
- versionName: 0.90-test
|
||||||
versionCode: '900'
|
versionCode: 900
|
||||||
commit: 0.90-test
|
commit: 0.90-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -465,7 +465,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.91'
|
- versionName: '0.91'
|
||||||
versionCode: '910'
|
versionCode: 910
|
||||||
commit: '0.91'
|
commit: '0.91'
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -474,7 +474,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: '0.92'
|
- versionName: '0.92'
|
||||||
versionCode: '920'
|
versionCode: 920
|
||||||
commit: '0.92'
|
commit: '0.92'
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -483,7 +483,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.93-test
|
- versionName: 0.93-test
|
||||||
versionCode: '930'
|
versionCode: 930
|
||||||
commit: 0.93-test
|
commit: 0.93-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -492,7 +492,7 @@ Builds:
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
- versionName: 0.94-test
|
- versionName: 0.94-test
|
||||||
versionCode: '940'
|
versionCode: 940
|
||||||
commit: 0.94-test
|
commit: 0.94-test
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -500,7 +500,7 @@ Builds:
|
|||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.95-alpha1
|
- versionName: 0.95-alpha1
|
||||||
versionCode: '95001'
|
versionCode: 95001
|
||||||
commit: 0.95-alpha1
|
commit: 0.95-alpha1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -508,7 +508,7 @@ Builds:
|
|||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.95-alpha2
|
- versionName: 0.95-alpha2
|
||||||
versionCode: '95002'
|
versionCode: 95002
|
||||||
commit: v0.95-alpha2
|
commit: v0.95-alpha2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -516,7 +516,7 @@ Builds:
|
|||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.95'
|
- versionName: '0.95'
|
||||||
versionCode: '95050'
|
versionCode: 95050
|
||||||
commit: v0.95
|
commit: v0.95
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -524,7 +524,7 @@ Builds:
|
|||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.95.1
|
- versionName: 0.95.1
|
||||||
versionCode: '95150'
|
versionCode: 95150
|
||||||
commit: v0.95.1
|
commit: v0.95.1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
submodules: true
|
submodules: true
|
||||||
@ -532,49 +532,49 @@ Builds:
|
|||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.96-alpha1
|
- versionName: 0.96-alpha1
|
||||||
versionCode: '96001'
|
versionCode: 96001
|
||||||
commit: v0.96-alpha1
|
commit: v0.96-alpha1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.96-alpha2
|
- versionName: 0.96-alpha2
|
||||||
versionCode: '96002'
|
versionCode: 96002
|
||||||
commit: v0.96-alpha2
|
commit: v0.96-alpha2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.96-alpha3
|
- versionName: 0.96-alpha3
|
||||||
versionCode: '96003'
|
versionCode: 96003
|
||||||
commit: v0.96-alpha3
|
commit: v0.96-alpha3
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.96-alpha4
|
- versionName: 0.96-alpha4
|
||||||
versionCode: '96004'
|
versionCode: 96004
|
||||||
commit: v0.96-alpha4
|
commit: v0.96-alpha4
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.96-alpha5
|
- versionName: 0.96-alpha5
|
||||||
versionCode: '96005'
|
versionCode: 96005
|
||||||
commit: v0.96-alpha5
|
commit: v0.96-alpha5
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.96-alpha6
|
- versionName: 0.96-alpha6
|
||||||
versionCode: '96006'
|
versionCode: 96006
|
||||||
commit: v0.96-alpha6
|
commit: v0.96-alpha6
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.96'
|
- versionName: '0.96'
|
||||||
versionCode: '96050'
|
versionCode: 96050
|
||||||
commit: v0.96
|
commit: v0.96
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
@ -583,7 +583,7 @@ Builds:
|
|||||||
- extern/AndroidPinning/res/raw/cacerts
|
- extern/AndroidPinning/res/raw/cacerts
|
||||||
|
|
||||||
- versionName: 0.96.1
|
- versionName: 0.96.1
|
||||||
versionCode: '96150'
|
versionCode: 96150
|
||||||
commit: v0.96.1
|
commit: v0.96.1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
@ -592,7 +592,7 @@ Builds:
|
|||||||
- extern/AndroidPinning/res/raw/cacerts
|
- extern/AndroidPinning/res/raw/cacerts
|
||||||
|
|
||||||
- versionName: 0.97-alpha1
|
- versionName: 0.97-alpha1
|
||||||
versionCode: '97001'
|
versionCode: 97001
|
||||||
commit: v0.97-alpha1
|
commit: v0.97-alpha1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
@ -601,343 +601,343 @@ Builds:
|
|||||||
- extern/AndroidPinning/res/raw/cacerts
|
- extern/AndroidPinning/res/raw/cacerts
|
||||||
|
|
||||||
- versionName: 0.97-alpha2
|
- versionName: 0.97-alpha2
|
||||||
versionCode: '97002'
|
versionCode: 97002
|
||||||
commit: v0.97-alpha2
|
commit: v0.97-alpha2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.97-alpha3
|
- versionName: 0.97-alpha3
|
||||||
versionCode: '97003'
|
versionCode: 97003
|
||||||
commit: v0.97-alpha3
|
commit: v0.97-alpha3
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.97-alpha4
|
- versionName: 0.97-alpha4
|
||||||
versionCode: '97004'
|
versionCode: 97004
|
||||||
commit: v0.97-alpha4
|
commit: v0.97-alpha4
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.97-alpha5
|
- versionName: 0.97-alpha5
|
||||||
versionCode: '97005'
|
versionCode: 97005
|
||||||
commit: v0.97-alpha5
|
commit: v0.97-alpha5
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.97-alpha6
|
- versionName: 0.97-alpha6
|
||||||
versionCode: '97006'
|
versionCode: 97006
|
||||||
commit: v0.97-alpha6
|
commit: v0.97-alpha6
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.97-alpha7
|
- versionName: 0.97-alpha7
|
||||||
versionCode: '97007'
|
versionCode: 97007
|
||||||
commit: v0.97-alpha7
|
commit: v0.97-alpha7
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.97-alpha8
|
- versionName: 0.97-alpha8
|
||||||
versionCode: '97008'
|
versionCode: 97008
|
||||||
commit: v0.97-alpha8
|
commit: v0.97-alpha8
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.97'
|
- versionName: '0.97'
|
||||||
versionCode: '97050'
|
versionCode: 97050
|
||||||
commit: v0.97
|
commit: v0.97
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha1
|
- versionName: 0.98-alpha1
|
||||||
versionCode: '98001'
|
versionCode: 98001
|
||||||
commit: v0.98-alpha1
|
commit: v0.98-alpha1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha2
|
- versionName: 0.98-alpha2
|
||||||
versionCode: '98002'
|
versionCode: 98002
|
||||||
commit: v0.98-alpha2
|
commit: v0.98-alpha2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha3
|
- versionName: 0.98-alpha3
|
||||||
versionCode: '98003'
|
versionCode: 98003
|
||||||
commit: v0.98-alpha3
|
commit: v0.98-alpha3
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha4
|
- versionName: 0.98-alpha4
|
||||||
versionCode: '98004'
|
versionCode: 98004
|
||||||
commit: v0.98-alpha4
|
commit: v0.98-alpha4
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha5
|
- versionName: 0.98-alpha5
|
||||||
versionCode: '98005'
|
versionCode: 98005
|
||||||
commit: v0.98-alpha5
|
commit: v0.98-alpha5
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha6
|
- versionName: 0.98-alpha6
|
||||||
versionCode: '98006'
|
versionCode: 98006
|
||||||
commit: v0.98-alpha6
|
commit: v0.98-alpha6
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98-alpha7
|
- versionName: 0.98-alpha7
|
||||||
versionCode: '98007'
|
versionCode: 98007
|
||||||
commit: v0.98-alpha7
|
commit: v0.98-alpha7
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.98'
|
- versionName: '0.98'
|
||||||
versionCode: '98050'
|
versionCode: 98050
|
||||||
commit: v0.98
|
commit: v0.98
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.98.1
|
- versionName: 0.98.1
|
||||||
versionCode: '98150'
|
versionCode: 98150
|
||||||
commit: v0.98.1
|
commit: v0.98.1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.99-alpha1
|
- versionName: 0.99-alpha1
|
||||||
versionCode: '99001'
|
versionCode: 99001
|
||||||
commit: v0.99-alpha1
|
commit: v0.99-alpha1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.99-alpha2
|
- versionName: 0.99-alpha2
|
||||||
versionCode: '99002'
|
versionCode: 99002
|
||||||
commit: v0.99-alpha2
|
commit: v0.99-alpha2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.99'
|
- versionName: '0.99'
|
||||||
versionCode: '99050'
|
versionCode: 99050
|
||||||
commit: v0.99
|
commit: v0.99
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.99.1
|
- versionName: 0.99.1
|
||||||
versionCode: '99150'
|
versionCode: 99150
|
||||||
commit: v0.99.1
|
commit: v0.99.1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.99.2
|
- versionName: 0.99.2
|
||||||
versionCode: '99250'
|
versionCode: 99250
|
||||||
commit: v0.99.2
|
commit: v0.99.2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha1
|
- versionName: 0.100-alpha1
|
||||||
versionCode: '100001'
|
versionCode: 100001
|
||||||
commit: v0.100-alpha1
|
commit: v0.100-alpha1
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha2
|
- versionName: 0.100-alpha2
|
||||||
versionCode: '100002'
|
versionCode: 100002
|
||||||
commit: v0.100-alpha2
|
commit: v0.100-alpha2
|
||||||
subdir: F-Droid
|
subdir: F-Droid
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha3
|
- versionName: 0.100-alpha3
|
||||||
versionCode: '100003'
|
versionCode: 100003
|
||||||
commit: v0.100-alpha3
|
commit: v0.100-alpha3
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha4
|
- versionName: 0.100-alpha4
|
||||||
versionCode: '100004'
|
versionCode: 100004
|
||||||
commit: v0.100-alpha4
|
commit: v0.100-alpha4
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha5
|
- versionName: 0.100-alpha5
|
||||||
versionCode: '100005'
|
versionCode: 100005
|
||||||
commit: v0.100-alpha5
|
commit: v0.100-alpha5
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha6
|
- versionName: 0.100-alpha6
|
||||||
versionCode: '100006'
|
versionCode: 100006
|
||||||
commit: v0.100-alpha6
|
commit: v0.100-alpha6
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha7
|
- versionName: 0.100-alpha7
|
||||||
versionCode: '100007'
|
versionCode: 100007
|
||||||
commit: v0.100-alpha7
|
commit: v0.100-alpha7
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100-alpha8
|
- versionName: 0.100-alpha8
|
||||||
versionCode: '100008'
|
versionCode: 100008
|
||||||
commit: v0.100-alpha8
|
commit: v0.100-alpha8
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.100'
|
- versionName: '0.100'
|
||||||
versionCode: '100050'
|
versionCode: 100050
|
||||||
commit: v0.100
|
commit: v0.100
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.100.1
|
- versionName: 0.100.1
|
||||||
versionCode: '100150'
|
versionCode: 100150
|
||||||
commit: v0.100.1
|
commit: v0.100.1
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.101-alpha1
|
- versionName: 0.101-alpha1
|
||||||
versionCode: '101001'
|
versionCode: 101001
|
||||||
commit: v0.101-alpha1
|
commit: v0.101-alpha1
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.101-alpha2
|
- versionName: 0.101-alpha2
|
||||||
versionCode: '101002'
|
versionCode: 101002
|
||||||
commit: v0.101-alpha2
|
commit: v0.101-alpha2
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.101-alpha3
|
- versionName: 0.101-alpha3
|
||||||
versionCode: '101003'
|
versionCode: 101003
|
||||||
commit: v0.101-alpha3
|
commit: v0.101-alpha3
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.101-alpha4
|
- versionName: 0.101-alpha4
|
||||||
versionCode: '101004'
|
versionCode: 101004
|
||||||
commit: v0.101-alpha4
|
commit: v0.101-alpha4
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.101-alpha5
|
- versionName: 0.101-alpha5
|
||||||
versionCode: '101005'
|
versionCode: 101005
|
||||||
commit: v0.101-alpha5
|
commit: v0.101-alpha5
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.101-alpha6
|
- versionName: 0.101-alpha6
|
||||||
versionCode: '101006'
|
versionCode: 101006
|
||||||
commit: v0.101-alpha6
|
commit: v0.101-alpha6
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.101'
|
- versionName: '0.101'
|
||||||
versionCode: '101050'
|
versionCode: 101050
|
||||||
commit: v0.101
|
commit: v0.101
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.102-alpha1
|
- versionName: 0.102-alpha1
|
||||||
versionCode: '102001'
|
versionCode: 102001
|
||||||
commit: v0.102-alpha1
|
commit: v0.102-alpha1
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.102-alpha2
|
- versionName: 0.102-alpha2
|
||||||
versionCode: '102002'
|
versionCode: 102002
|
||||||
commit: v0.102-alpha2
|
commit: v0.102-alpha2
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.102-alpha3
|
- versionName: 0.102-alpha3
|
||||||
versionCode: '102003'
|
versionCode: 102003
|
||||||
commit: v0.102-alpha3
|
commit: v0.102-alpha3
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: '0.102'
|
- versionName: '0.102'
|
||||||
versionCode: '102050'
|
versionCode: 102050
|
||||||
commit: v0.102
|
commit: v0.102
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.102.1
|
- versionName: 0.102.1
|
||||||
versionCode: '102150'
|
versionCode: 102150
|
||||||
commit: v0.102.1
|
commit: v0.102.1
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.102.2
|
- versionName: 0.102.2
|
||||||
versionCode: '102250'
|
versionCode: 102250
|
||||||
commit: v0.102.2
|
commit: v0.102.2
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.102.3
|
- versionName: 0.102.3
|
||||||
versionCode: '102350'
|
versionCode: 102350
|
||||||
commit: v0.102.3
|
commit: v0.102.3
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.103-alpha1
|
- versionName: 0.103-alpha1
|
||||||
versionCode: '103001'
|
versionCode: 103001
|
||||||
commit: v0.103-alpha1
|
commit: v0.103-alpha1
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.103-alpha2
|
- versionName: 0.103-alpha2
|
||||||
versionCode: '103002'
|
versionCode: 103002
|
||||||
commit: v0.103-alpha2
|
commit: v0.103-alpha2
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
- yes
|
- yes
|
||||||
|
|
||||||
- versionName: 0.103-alpha3
|
- versionName: 0.103-alpha3
|
||||||
versionCode: '103003'
|
versionCode: 103003
|
||||||
commit: v0.103-alpha3
|
commit: v0.103-alpha3
|
||||||
subdir: app
|
subdir: app
|
||||||
gradle:
|
gradle:
|
||||||
@ -947,4 +947,4 @@ ArchivePolicy: 12 versions
|
|||||||
AutoUpdateMode: None
|
AutoUpdateMode: None
|
||||||
UpdateCheckMode: Static
|
UpdateCheckMode: Static
|
||||||
CurrentVersion: 0.102.3
|
CurrentVersion: 0.102.3
|
||||||
CurrentVersionCode: '102350'
|
CurrentVersionCode: 102350
|
||||||
|
Loading…
Reference in New Issue
Block a user