mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Add support for Litecoin in the server
This commit is contained in:
parent
1b291a58d7
commit
47cad8fca7
3 changed files with 15 additions and 1 deletions
|
|
@ -482,6 +482,7 @@ def parse_metadata(metafile, **kw):
|
|||
thisinfo['Donate'] = None
|
||||
thisinfo['FlattrID'] = None
|
||||
thisinfo['Bitcoin'] = None
|
||||
thisinfo['Litecoin'] = None
|
||||
thisinfo['Disabled'] = None
|
||||
thisinfo['AntiFeatures'] = None
|
||||
thisinfo['Update Check Mode'] = 'None'
|
||||
|
|
@ -624,6 +625,8 @@ def write_metadata(dest, app):
|
|||
writefield('FlattrID')
|
||||
if app['Bitcoin']:
|
||||
writefield('Bitcoin')
|
||||
if app['Litecoin']:
|
||||
writefield('Litecoin')
|
||||
mf.write('\n')
|
||||
if app['Name']:
|
||||
writefield('Name')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue