From bd3ae8860804cc6f933da05887f8aa32fa9d36c6 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 15 Jul 2015 14:43:38 -0700 Subject: [PATCH] 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 --- fdroidserver/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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",