diff --git a/common.py b/common.py index 7da4d5ff..6bca5257 100644 --- a/common.py +++ b/common.py @@ -278,6 +278,8 @@ def parse_metadata(metafile, **kw): thisinfo['source'] = value elif field == 'License': thisinfo['license'] = value + elif field == 'Category': + thisinfo['category'] = value elif field == 'Web Site': thisinfo['web'] = value elif field == 'Issue Tracker': diff --git a/update.py b/update.py index 2d05ce71..7a37ee76 100755 --- a/update.py +++ b/update.py @@ -314,6 +314,8 @@ for app in apps: addElement('icon', app['icon'], doc, apel) addElement('description', app['description'], doc, apel) addElement('license', app['license'], doc, apel) + if 'category' in app: + addElement('category', app['category'], doc, apel) addElement('web', app['web'], doc, apel) addElement('source', app['source'], doc, apel) addElement('tracker', app['tracker'], doc, apel)