1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 02:50:12 +01:00

completed ordered yaml field list

This commit is contained in:
Michael Pöhn 2017-05-07 18:23:22 +02:00
parent f1e0089931
commit 7ab197be2e

View File

@ -1024,8 +1024,14 @@ def write_yaml(mf, app):
return builds
yaml_app_field_order = [
'Disabled',
'AnitFeatures',
'Provides',
'Categories',
'License',
'AuthorName',
'AuthorEmail',
'AuthorWebSite',
'WebSite',
'SourceCode',
'IssueTracker',
@ -1033,21 +1039,34 @@ def write_yaml(mf, app):
'Donate',
'FlattrID',
'Bitcoin',
'Litecoin',
'\n',
'Name',
'AutoName',
'Summary',
'Description',
'\n',
'RequiresRoot',
'\n',
'RepoType',
'Repo',
'Binaries',
'\n',
'Builds',
'\n',
'MaintainerNotes',
'\n',
'ArchivePolicy',
'AutoUpdateMode',
'UpdateCheckMode',
'UpdateCheckIgnore',
'VercodeOperation',
'UpdateCheckName',
'UpdateCheckData',
'CurrentVersion',
'CurrentVersionCode',
'\n',
'NoSourceSince',
]
yaml_app = _app_to_yaml(app)