From da8e6d406ee4f0ca5136481d31991654716f4ed5 Mon Sep 17 00:00:00 2001 From: Jordan K Date: Fri, 2 Aug 2024 23:59:20 +0100 Subject: [PATCH] State max file size for receiver panorama and avatar images (#57) * State max file size for receiver panorama and avatar images * Update general.py --------- Co-authored-by: Luarvique L. Luarvique --- owrx/controllers/settings/general.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/controllers/settings/general.py b/owrx/controllers/settings/general.py index bd786c41..eb2e4608 100644 --- a/owrx/controllers/settings/general.py +++ b/owrx/controllers/settings/general.py @@ -72,13 +72,13 @@ class GeneralSettingsController(SettingsFormController): AvatarInput( "receiver_avatar", "Receiver Avatar", - infotext="For performance reasons, images are cached. " + infotext="Maximum file size is 256kB. For performance reasons, images are cached. " + "It can take a few hours until they appear on the site.", ), TopPhotoInput( "receiver_top_photo", "Receiver Panorama", - infotext="For performance reasons, images are cached. " + infotext="Maximum file size is 2MB. For performance reasons, images are cached. " + "It can take a few hours until they appear on the site.", ), ),