From 93b18fb1c179ee3c8cdcba132521a6351d6f63eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?andr=C3=A9s=20gonz=C3=A1lez?= Date: Wed, 9 Sep 2026 08:01:04 +0200 Subject: [PATCH] :sparkles: Add Penpot-specific board size presets (#11565) Add a "PENPOT" section to the board size presets list with sizes for File thumbnail, Template cover, Plugin icon and Plugin cover, so designers no longer need to look up these dimensions manually when creating thumbnails for files, template submissions or plugin listings. Closes #11561 AI-assisted-by: claude-sonnet-5 Signed-off-by: Andres Gonzalez --- frontend/src/app/main/constants.cljs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/constants.cljs b/frontend/src/app/main/constants.cljs index 4aeaa0461e..1c401c9558 100644 --- a/frontend/src/app/main/constants.cljs +++ b/frontend/src/app/main/constants.cljs @@ -299,7 +299,21 @@ :height 1152} {:name "YouTube thumb" :width 1280 - :height 720}]) + :height 720} + + {:name "PENPOT"} + {:name "File thumbnail" + :width 300 + :height 200} + {:name "Template cover" + :width 1390 + :height 781} + {:name "Plugin icon" + :width 400 + :height 400} + {:name "Plugin cover" + :width 1390 + :height 724}]) (def max-input-length 255)