From: Hans-Christoph Steiner Date: Wed, 15 Jul 2015 21:43:38 +0000 (-0700) Subject: extend text char limits to match other app stores X-Git-Tag: 0.4.0~11^2~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=bd3ae8860804cc6f933da05887f8aa32fa9d36c6;p=fdroidserver.git extend text char limits to match other app stores We should be compatible with other apps stores unless there is a specific reason not to be. * Google Play, Amazon, and iTunes all have 4000 char descriptions For the summary, we can just bump it up to the same as what Play has * Google Play allows an 80 char "Short Description" https://support.google.com/googleplay/android-developer/answer/113469?hl=en * Amazon allows a 1200 char "Short Description" https://developer.amazon.com/public/support/submitting-your-app/tech-docs/submitting-your-app#Add Metadata and Image Assets --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 170f49ee..5dc98911 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -70,8 +70,8 @@ default_config = { 'keystore': 'keystore.jks', 'smartcardoptions': [], 'char_limits': { - 'Summary': 50, - 'Description': 1500 + 'Summary': 80, + 'Description': 4000 }, 'keyaliases': {}, 'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",