From b5c1f20070afbbd0e2e7eedc6edd1ede3f00e79a Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Wed, 1 Dec 2021 01:16:44 +0100 Subject: [PATCH] [tools] Check whatsnew and changed GP title length Signed-off-by: Alexander Borsuk --- tools/python/check_store_metadata.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/python/check_store_metadata.py b/tools/python/check_store_metadata.py index 04ba922b73..75c4f44741 100755 --- a/tools/python/check_store_metadata.py +++ b/tools/python/check_store_metadata.py @@ -61,10 +61,13 @@ def check_android(): ok = check_url(flavor + "contact-website.txt") and ok ok = check_email(flavor + "contact-email.txt") and ok ok = check_exact(flavor + "default-language.txt", "en-US") and ok + maxTitle = 30 if 'google' in flavor else 50 for locale in glob.glob(flavor + 'listings/??-??/'): - ok = check_text(locale + "title.txt", 50) and ok + ok = check_text(locale + "title.txt", maxTitle) and ok ok = check_text(locale + "short-description.txt", 80) and ok ok = check_text(locale + "full-description.txt", 4000) and ok + for locale in glob.glob(flavor + 'release-notes/??-??/'): + ok = check_text(locale + "default.txt", 500) and ok return ok def check_ios():