chiark / gitweb /
Add Static update check mode (issue #201)
authorCiaran Gultnieks <ciaran@ciarang.com>
Sat, 23 Mar 2013 07:35:09 +0000 (07:35 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Sat, 23 Mar 2013 07:35:09 +0000 (07:35 +0000)
docs/fdroid.texi
fdroidserver/checkupdates.py

index bd1810943606463f5f3c08469ca2e58288093122..2be5524dc3b59b925698003258afdce23e265796 100644 (file)
@@ -916,7 +916,10 @@ Valid modes are:
 
 @itemize
 @item
-@code{None} - No checking is done
+@code{None} - No checking is done because there's no appropriate automated way
+of doing so. Updates should be checked for manually.
+@item
+@code{Static} - No checking is done - updated versions are not expected.
 @item
 @code{RepoManifest} - The AndroidManifest.xml file in the most recent commit
 in the source repository is checked. The appropriateness of this method depends
index 0242d325881ea214b14494865a2c11d0e3bb3aa9..d72257ada216d95bb5be97cca87915fa3030c52f 100644 (file)
@@ -221,6 +221,8 @@ def main():
             (version, vercode) = check_tags(app, sdk_path)
         elif mode == 'RepoManifest':
             (version, vercode) = check_repomanifest(app, sdk_path)
+        elif mode == 'Static':
+            pass
         elif mode == 'None':
             version = None
             vercode = 'Checking disabled'