mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Add ability to ignore updates based on version name matching
This commit is contained in:
parent
751daf0cda
commit
0113f85448
3 changed files with 18 additions and 6 deletions
|
|
@ -51,6 +51,7 @@ app_defaults = {
|
|||
'AntiFeatures': None,
|
||||
'Archive Policy': None,
|
||||
'Update Check Mode': 'None',
|
||||
'Update Check Ignore': None,
|
||||
'Update Check Name': None,
|
||||
'Update Check Data': None,
|
||||
'Vercode Operation': None,
|
||||
|
|
@ -808,6 +809,8 @@ def write_metadata(dest, app):
|
|||
writefield('Archive Policy')
|
||||
writefield('Auto Update Mode')
|
||||
writefield('Update Check Mode')
|
||||
if app['Update Check Ignore']:
|
||||
writefield('Update Check Ignore')
|
||||
if app['Vercode Operation']:
|
||||
writefield('Vercode Operation')
|
||||
if app['Update Check Data']:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue