chiark / gitweb /
add char limits for text: Name=30, Video=256, WhatsNew=500
authorHans-Christoph Steiner <hans@eds.org>
Wed, 12 Apr 2017 15:53:49 +0000 (17:53 +0200)
committerHans-Christoph Steiner <hans@eds.org>
Wed, 19 Apr 2017 08:05:24 +0000 (10:05 +0200)
Since this info can come from automated sources, this prevents giant blobs
from being mistakenly stuck in these fields.  It also brings it inline with
the standard lengths other popular app stores use.

https://support.google.com/googleplay/android-developer/answer/113469?hl=en
https://stackoverflow.com/a/20276565

fdroidserver/common.py

index 02d8acebda431e244028e6c344629ccc336cb3ba..6ffb54aec24033fdf0df3bba3de1fa4952158653 100644 (file)
@@ -93,8 +93,11 @@ default_config = {
     'keystore': 'keystore.jks',
     'smartcardoptions': [],
     'char_limits': {
+        'Name': 30,
         'Summary': 80,
         'Description': 4000,
+        'Video': 256,
+        'WhatsNew': 500,
     },
     'keyaliases': {},
     'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",