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

Added AUM and UCM matching patterns

This commit is contained in:
Daniel Martí 2013-11-22 00:00:43 +01:00
parent 6d8cf1c789
commit 42705fc2d2

View File

@ -111,6 +111,16 @@ valuetypes = {
'antifeatures' : FieldType("Anti-Feature",
[ "Ads", "Tracking", "NonFreeNet", "NonFreeDep", "NonFreeAdd" ], ',',
[ "AntiFeatures" ],
[ ]),
'autoupdatemodes' : FieldType("Auto Update Mode",
r"^(Version .+|None)$", None,
[ "Auto Update Mode" ],
[ ]),
'updatecheckmodes' : FieldType("Update Check Mode",
r"^(Tags|RepoManifest|RepoManifest/.+|RepoTrunk|HTTP|Static|None)$", None,
[ "Update Check Mode" ],
[ ])
}