chiark / gitweb /
completed ordered yaml field list
authorMichael Pöhn <michael.poehn@fsfe.org>
Sun, 7 May 2017 16:23:22 +0000 (18:23 +0200)
committerMichael Pöhn <michael.poehn@fsfe.org>
Tue, 4 Jul 2017 09:51:08 +0000 (11:51 +0200)
fdroidserver/metadata.py

index 3596d522aec2073f9fdc8ce04c03c7eaa6faece6..f014d1f049cce0ad3ad6ff22b13cd61dfa510949 100644 (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)