mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
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
This commit is contained in:
parent
fba632cf07
commit
bd3ae88608
1 changed files with 2 additions and 2 deletions
|
@ -70,8 +70,8 @@ default_config = {
|
||||||
'keystore': 'keystore.jks',
|
'keystore': 'keystore.jks',
|
||||||
'smartcardoptions': [],
|
'smartcardoptions': [],
|
||||||
'char_limits': {
|
'char_limits': {
|
||||||
'Summary': 50,
|
'Summary': 80,
|
||||||
'Description': 1500
|
'Description': 4000
|
||||||
},
|
},
|
||||||
'keyaliases': {},
|
'keyaliases': {},
|
||||||
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",
|
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue