mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-17 11:19:13 +00:00
schema: AutoUpdateMode must be None if UpdateCheckMode is not Tags or HTTP
This commit is contained in:
parent
eb942788c5
commit
1c9fc125e2
5 changed files with 31 additions and 8 deletions
|
|
@ -27,7 +27,7 @@ Builds:
|
|||
MaintainerNotes: ' UpdateCheckMode disabled because checkupdates sets it to an old
|
||||
version'
|
||||
|
||||
AutoUpdateMode: Version release-%v
|
||||
AutoUpdateMode: None
|
||||
UpdateCheckMode: None
|
||||
CurrentVersion: 0.6.0
|
||||
CurrentVersionCode: 6008
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ MaintainerNotes: |-
|
|||
is needed for the OTA bundle, since that just includes this APK via a
|
||||
script.
|
||||
|
||||
AutoUpdateMode: Version %v
|
||||
AutoUpdateMode: None
|
||||
UpdateCheckMode: None
|
||||
CurrentVersion: 0.2.7
|
||||
CurrentVersionCode: 2070
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ Builds:
|
|||
|
||||
MaintainerNotes: UpdateCheckMode disabled because checkupdates sets it to an old version
|
||||
|
||||
AutoUpdateMode: Version v%v
|
||||
AutoUpdateMode: None
|
||||
UpdateCheckMode: None
|
||||
CurrentVersion: 3.0.246 (beta)
|
||||
CurrentVersionCode: 246
|
||||
|
|
|
|||
|
|
@ -293,7 +293,7 @@ Builds:
|
|||
gradle:
|
||||
- yes
|
||||
|
||||
AutoUpdateMode: Version v%v
|
||||
UpdateCheckMode: Static
|
||||
AutoUpdateMode: None
|
||||
UpdateCheckMode: None
|
||||
CurrentVersion: '0.28'
|
||||
CurrentVersionCode: 39
|
||||
|
|
|
|||
|
|
@ -674,9 +674,6 @@
|
|||
},
|
||||
"then": {
|
||||
"properties": {
|
||||
"AutoUpdateMode": {
|
||||
"const": "None"
|
||||
},
|
||||
"UpdateCheckMode": {
|
||||
"const": "None"
|
||||
}
|
||||
|
|
@ -729,6 +726,32 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"UpdateCheckMode": {
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": [
|
||||
"None",
|
||||
"Static"
|
||||
]
|
||||
},
|
||||
{
|
||||
"pattern": "^RepoManifest(/.+)?$"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"properties": {
|
||||
"AutoUpdateMode": {
|
||||
"const": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"additionalProperties": false,
|
||||
|
|
|
|||
Loading…
Reference in a new issue