Skip to content

Commit 802972e

Browse files
committed
boards: Add thumbnail generation script.
Also change existing PNGs to JPG. Signed-off-by: Jim Mussared <[email protected]>
1 parent f05d51d commit 802972e

File tree

9 files changed

+4
-0
lines changed

9 files changed

+4
-0
lines changed

boards/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*/*.thumb.jpg
31.7 KB
Loading

boards/MINISAM_M4/[email protected]

-221 KB
Binary file not shown.

boards/PICO/rp2-pico.jpg

16.4 KB
Loading

boards/PICO/rp2-pico.png

-124 KB
Binary file not shown.
31.6 KB
Loading
Binary file not shown.

boards/update-thumb.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
rm */*.thumb.jpg
3+
for file in */*; do convert $file -thumbnail 200 ${file/.jpg/.thumb.jpg}; done

0 commit comments

Comments
 (0)