[store] Limit Android releases notes to 499 chars

Huawei AppGallery efficiently accepts 499, not 500.

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2023-02-14 11:49:12 +02:00
parent d87a782983
commit b4e360da39
3 changed files with 4 additions and 3 deletions

View file

@ -4,4 +4,4 @@
• Amélioration icônes pour les entrées des bâtiments
• Amélioration annonces vocales du prochain virage pour petites distances
• Correction des traductions en persan, polonais et allemand
Plus de détails: omaps.app/news
Plus de détails: omaps.app/news

View file

@ -1,4 +1,4 @@
Új február 10-i OpenStreetMap adatok, a Humanitárius OpenStreetMap Csapat változtatásaival, a törökországi és szíriai földrengések következtében
Február 10-i OpenStreetMap adatok, a Humanitárius OpenStreetMap Csapat változtatásaival, a törökországi és szíriai földrengések következtében
• Kiszűrtük a hibás keresési találatokat a listában és a térképen
• A megnyitáskor történő összeomlást kijavítottuk
• A főbejáratok mostantól megkülönböztethetőek az alsóbbrendű bejáratoktól a csodás új ikonokkal

View file

@ -178,11 +178,12 @@ def check_android():
ok = check_text(locale + 'short-description-google.txt', 80, True) and ok
ok = check_text(locale + 'full-description.txt', 4000) and ok
ok = check_text(locale + 'full-description-google.txt', 4000, True) and ok
ok = check_text(locale + 'release-notes.txt', 499) and ok
for locale in glob.glob(flavor + 'release-notes/*/'):
if locale.split('/')[-2] not in GPLAY_LOCALES:
ok = error(locale, 'unsupported locale') and ok
continue
ok = check_text(locale + 'default.txt', 500) and ok
ok = check_text(locale + 'default.txt', 499) and ok
return ok