From 96ba194d656dfc02773a2b8b9b69856766a22353 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Wed, 8 Jan 2020 14:20:18 +0100 Subject: [PATCH] bump title char_limit to 50 This follows google play in doing so. Closes fdroidserver#726, fdroid/fdroiddata#1906. --- examples/config.py | 2 +- fdroidserver/common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/config.py b/examples/config.py index b400af6c..1093fac8 100644 --- a/examples/config.py +++ b/examples/config.py @@ -306,7 +306,7 @@ The repository of older versions of applications from the main demo repository. # Only the fields listed here are supported, defaults shown # char_limits = { # 'author': 256, -# 'name': 30, +# 'name': 50, # 'summary': 80, # 'description': 4000, # 'video': 256, diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 05060658..8a89cec0 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -129,7 +129,7 @@ default_config = { 'smartcardoptions': [], 'char_limits': { 'author': 256, - 'name': 30, + 'name': 50, 'summary': 80, 'description': 4000, 'video': 256,