From a4afe49a4d1b2c6624324519e1327d94676b7352 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sun, 21 Apr 2024 21:07:50 +0200 Subject: Add gallery page --- gallery/genthumb.sh | 19 +++ gallery/img/alpha.png | Bin 0 -> 205753 bytes gallery/img/atari.png | Bin 0 -> 36076 bytes gallery/img/ballot.png | Bin 0 -> 680061 bytes gallery/img/cygwin-dillo.jpg | Bin 0 -> 171458 bytes gallery/img/dsl.jpg | Bin 0 -> 99658 bytes gallery/img/handbook486.jpg | Bin 0 -> 417165 bytes gallery/img/hp-jornada.jpg | Bin 0 -> 212983 bytes gallery/img/iliad.png | Bin 0 -> 67415 bytes gallery/img/iliad2.jpg | Bin 0 -> 924591 bytes gallery/img/ipaq-3700.jpg | Bin 0 -> 65449 bytes gallery/img/kindle.jpg | Bin 0 -> 168315 bytes gallery/img/libretto-50ct.jpg | Bin 0 -> 2240571 bytes gallery/img/libretto.jpg | Bin 0 -> 230450 bytes gallery/img/mac.jpg | Bin 0 -> 275067 bytes gallery/img/n900-pmos.png | Bin 0 -> 692763 bytes gallery/img/n900.png | Bin 0 -> 326735 bytes gallery/img/openbsd-6.5-macppc.png | Bin 0 -> 87497 bytes gallery/img/ps2.png | Bin 0 -> 828279 bytes gallery/img/tomtom.jpg | Bin 0 -> 52695 bytes gallery/img/win11.png | Bin 0 -> 149436 bytes gallery/index.html | 293 +++++++++++++++++++++++++++++++++++ gallery/thumb/alpha.jpg | Bin 0 -> 15850 bytes gallery/thumb/atari.jpg | Bin 0 -> 20047 bytes gallery/thumb/ballot.jpg | Bin 0 -> 12389 bytes gallery/thumb/cygwin-dillo.jpg | Bin 0 -> 20112 bytes gallery/thumb/dsl.jpg | Bin 0 -> 11410 bytes gallery/thumb/handbook486.jpg | Bin 0 -> 17071 bytes gallery/thumb/hp-jornada.jpg | Bin 0 -> 14768 bytes gallery/thumb/iliad.jpg | Bin 0 -> 19400 bytes gallery/thumb/iliad2.jpg | Bin 0 -> 10514 bytes gallery/thumb/ipaq-3700.jpg | Bin 0 -> 12502 bytes gallery/thumb/kindle.jpg | Bin 0 -> 10243 bytes gallery/thumb/libretto-50ct.jpg | Bin 0 -> 11206 bytes gallery/thumb/libretto.jpg | Bin 0 -> 11962 bytes gallery/thumb/mac.jpg | Bin 0 -> 12100 bytes gallery/thumb/n900-pmos.jpg | Bin 0 -> 10770 bytes gallery/thumb/n900.jpg | Bin 0 -> 8835 bytes gallery/thumb/openbsd-6.5-macppc.jpg | Bin 0 -> 17854 bytes gallery/thumb/ps2.jpg | Bin 0 -> 21431 bytes gallery/thumb/tomtom.jpg | Bin 0 -> 16405 bytes gallery/thumb/win11.jpg | Bin 0 -> 17210 bytes 42 files changed, 312 insertions(+) create mode 100755 gallery/genthumb.sh create mode 100644 gallery/img/alpha.png create mode 100644 gallery/img/atari.png create mode 100644 gallery/img/ballot.png create mode 100644 gallery/img/cygwin-dillo.jpg create mode 100644 gallery/img/dsl.jpg create mode 100644 gallery/img/handbook486.jpg create mode 100644 gallery/img/hp-jornada.jpg create mode 100644 gallery/img/iliad.png create mode 100644 gallery/img/iliad2.jpg create mode 100644 gallery/img/ipaq-3700.jpg create mode 100644 gallery/img/kindle.jpg create mode 100644 gallery/img/libretto-50ct.jpg create mode 100644 gallery/img/libretto.jpg create mode 100644 gallery/img/mac.jpg create mode 100644 gallery/img/n900-pmos.png create mode 100644 gallery/img/n900.png create mode 100644 gallery/img/openbsd-6.5-macppc.png create mode 100644 gallery/img/ps2.png create mode 100644 gallery/img/tomtom.jpg create mode 100644 gallery/img/win11.png create mode 100644 gallery/index.html create mode 100644 gallery/thumb/alpha.jpg create mode 100644 gallery/thumb/atari.jpg create mode 100644 gallery/thumb/ballot.jpg create mode 100644 gallery/thumb/cygwin-dillo.jpg create mode 100644 gallery/thumb/dsl.jpg create mode 100644 gallery/thumb/handbook486.jpg create mode 100644 gallery/thumb/hp-jornada.jpg create mode 100644 gallery/thumb/iliad.jpg create mode 100644 gallery/thumb/iliad2.jpg create mode 100644 gallery/thumb/ipaq-3700.jpg create mode 100644 gallery/thumb/kindle.jpg create mode 100644 gallery/thumb/libretto-50ct.jpg create mode 100644 gallery/thumb/libretto.jpg create mode 100644 gallery/thumb/mac.jpg create mode 100644 gallery/thumb/n900-pmos.jpg create mode 100644 gallery/thumb/n900.jpg create mode 100644 gallery/thumb/openbsd-6.5-macppc.jpg create mode 100644 gallery/thumb/ps2.jpg create mode 100644 gallery/thumb/tomtom.jpg create mode 100644 gallery/thumb/win11.jpg diff --git a/gallery/genthumb.sh b/gallery/genthumb.sh new file mode 100755 index 0000000..9fd0d5e --- /dev/null +++ b/gallery/genthumb.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +for fp in img/*; do + f="${fp##*/}" + out="thumb/${f%.*}.jpg" + + if [ -e "$out" ]; then + continue + fi + + echo "writting $fp -> $out" + + gm convert -size 320x "$fp" \ + -thumbnail '320x240^' \ + -gravity center \ + -extent 320x240 \ + +profile "*" \ + "$out" +done diff --git a/gallery/img/alpha.png b/gallery/img/alpha.png new file mode 100644 index 0000000..73e9578 Binary files /dev/null and b/gallery/img/alpha.png differ diff --git a/gallery/img/atari.png b/gallery/img/atari.png new file mode 100644 index 0000000..b055fee Binary files /dev/null and b/gallery/img/atari.png differ diff --git a/gallery/img/ballot.png b/gallery/img/ballot.png new file mode 100644 index 0000000..6744f7d Binary files /dev/null and b/gallery/img/ballot.png differ diff --git a/gallery/img/cygwin-dillo.jpg b/gallery/img/cygwin-dillo.jpg new file mode 100644 index 0000000..2ec4577 Binary files /dev/null and b/gallery/img/cygwin-dillo.jpg differ diff --git a/gallery/img/dsl.jpg b/gallery/img/dsl.jpg new file mode 100644 index 0000000..3e25121 Binary files /dev/null and b/gallery/img/dsl.jpg differ diff --git a/gallery/img/handbook486.jpg b/gallery/img/handbook486.jpg new file mode 100644 index 0000000..795fa15 Binary files /dev/null and b/gallery/img/handbook486.jpg differ diff --git a/gallery/img/hp-jornada.jpg b/gallery/img/hp-jornada.jpg new file mode 100644 index 0000000..feb94f4 Binary files /dev/null and b/gallery/img/hp-jornada.jpg differ diff --git a/gallery/img/iliad.png b/gallery/img/iliad.png new file mode 100644 index 0000000..42b3aec Binary files /dev/null and b/gallery/img/iliad.png differ diff --git a/gallery/img/iliad2.jpg b/gallery/img/iliad2.jpg new file mode 100644 index 0000000..b22480d Binary files /dev/null and b/gallery/img/iliad2.jpg differ diff --git a/gallery/img/ipaq-3700.jpg b/gallery/img/ipaq-3700.jpg new file mode 100644 index 0000000..6022acb Binary files /dev/null and b/gallery/img/ipaq-3700.jpg differ diff --git a/gallery/img/kindle.jpg b/gallery/img/kindle.jpg new file mode 100644 index 0000000..41fa625 Binary files /dev/null and b/gallery/img/kindle.jpg differ diff --git a/gallery/img/libretto-50ct.jpg b/gallery/img/libretto-50ct.jpg new file mode 100644 index 0000000..a93f00a Binary files /dev/null and b/gallery/img/libretto-50ct.jpg differ diff --git a/gallery/img/libretto.jpg b/gallery/img/libretto.jpg new file mode 100644 index 0000000..3090b60 Binary files /dev/null and b/gallery/img/libretto.jpg differ diff --git a/gallery/img/mac.jpg b/gallery/img/mac.jpg new file mode 100644 index 0000000..eddf33b Binary files /dev/null and b/gallery/img/mac.jpg differ diff --git a/gallery/img/n900-pmos.png b/gallery/img/n900-pmos.png new file mode 100644 index 0000000..f6c2ad6 Binary files /dev/null and b/gallery/img/n900-pmos.png differ diff --git a/gallery/img/n900.png b/gallery/img/n900.png new file mode 100644 index 0000000..21b2120 Binary files /dev/null and b/gallery/img/n900.png differ diff --git a/gallery/img/openbsd-6.5-macppc.png b/gallery/img/openbsd-6.5-macppc.png new file mode 100644 index 0000000..7eb5f76 Binary files /dev/null and b/gallery/img/openbsd-6.5-macppc.png differ diff --git a/gallery/img/ps2.png b/gallery/img/ps2.png new file mode 100644 index 0000000..25ef09d Binary files /dev/null and b/gallery/img/ps2.png differ diff --git a/gallery/img/tomtom.jpg b/gallery/img/tomtom.jpg new file mode 100644 index 0000000..99f4da6 Binary files /dev/null and b/gallery/img/tomtom.jpg differ diff --git a/gallery/img/win11.png b/gallery/img/win11.png new file mode 100644 index 0000000..0fe1cc6 Binary files /dev/null and b/gallery/img/win11.png differ diff --git a/gallery/index.html b/gallery/index.html new file mode 100644 index 0000000..608a553 --- /dev/null +++ b/gallery/index.html @@ -0,0 +1,293 @@ + + + + + Gallery + + + + + +
+

Gallery of pictures

+Updated on 2024-04-21 + +

Over the years, many people have installed Dillo on all kinds of computers +and platforms. This page collects some pictures and screenshots. Send yours by +email to dillo-dev@mailman3.com. +

+ +

Devices

+ +

Pictures of Dillo running on a given device.

+ +
+ + Dillo running on a Kindle + +
+ 2024-03-29 - + Dillo 3.1-dev running on a Kindle PW Gen 4 with Debian + [1] +
+
+ +
+ + Dillo on a voting machine + +
+ 2021-11-25 - + Dillo 3.0.5 running on a voting machine with Debian + [1, + 2]. +
+
+ +
+ + Dillo running on a Nokia N900 + +
+ 2019-07-15 - + Dillo running on a Nokia N900 with PostmarketOS + [1] +
+
+ +
+ + Dillo running on iMac G3 from 1999 + +
+ 2019-05-25 - + Dillo running on an iMac G3 with OpenBSD 6.5 + [1] +
+
+ +
+ + Dillo running on a PlayStation 2 + +
+ 2012-11-04 - + Dillo running on a PlayStation 2 Slim with BlackRhino GNU/Linux + [1, + 2]. +
+
+ +
+ + Dillo running on a Libretto 50CT + +
+ 2012-12-13 - + Dillo running on a Libretto 50CT (24 MiB RAM) with DSL + [1, + 2]. +
+
+ +
+ + Dillo running on Nokia N900 + +
+ 2012-03-22 - + Dillo running on Nokia N900 with Maemo + [1, + 2]. +
+
+ +
+ + Dillo running on a Libretto 110CT + +
+ 2011-11-17 - + Dillo 2.2 running on a Libretto 110CT with Gentoo + [1]. +
+
+ +
+ + Dillo running on a HP Jornada 720 + +
+ 2011-05-03 - + Dillo 2.2 running on a HP Jornada 720 + [1]. +
+
+ +
+ + Dillo running on iLiad + +
+ 2006-12-17 - + Dillo 0.8.6 running on an iLiad iRex e-Reader + [1]. +
+
+ +
+ Dillo running on a Gateway HandBook +
+ 2005-04-19 - + Dillo running on a Gateway Handbook 486 + [1]. +
+
+ +
+ Dillo running on a 486SX33 +
+ 2003-10-19 - + Dillo 0.7.3 running on a 486SX33 CPU (16MiB of RAM) with DSL + [1]. +
+
+ +
+ Dillo running on an ipaq 3700 +
+ 2002-03-20 - + Dillo running on an Ipaq 3700 (64MiB of RAM) with Familiar Linux + [1]. +
+
+ +

Screenshots

+

Screenshots of Dillo taken from the device itself.

+ +
+ Dillo running on Windows 11 +
+ 2024-03-24 - + Dillo 3.1-dev running on x86 with Windows 11 via Cygwin + [1]. +
+
+ +
+ Dillo running on Atari +
+ 2023-12 - + Dillo 3.1-dev running on + ARAnyM, an + Atari simulator + [1, + 2]. +
+
+ +
+ Dillo running on MacPPC with OpenBSD 6.5 + +
+ 2019-05-25 - + Dillo running on PowerPC with OpenBSD 6.5 + [1]. +
+
+ +
+ Dillo running on iLiad + +
+ 2018-11-02 - + Dillo 3.0.5 running on emulated Alpha with Gentoo + [1]. +
+
+ +
+ Dillo running on iLiad + +
+ 2009-07-10 - + Dillo 2.1.1 running on the iLiad e-Reader + [1, + 2]. +
+
+ +
+ + Dillo running on a TomTom GPS + +
+ 2007-12-09 - + Dillo 0.8.4 running on a TomTom GPS + [1]. +
+
+ +
+ + Dillo running on Windows via Cygwin +
+ 2005-01-11 - + Dillo 0.8.4 running on Windows 2000 via Cygwin + [1]. +
+
+ + +
+ + diff --git a/gallery/thumb/alpha.jpg b/gallery/thumb/alpha.jpg new file mode 100644 index 0000000..907f158 Binary files /dev/null and b/gallery/thumb/alpha.jpg differ diff --git a/gallery/thumb/atari.jpg b/gallery/thumb/atari.jpg new file mode 100644 index 0000000..9f2b526 Binary files /dev/null and b/gallery/thumb/atari.jpg differ diff --git a/gallery/thumb/ballot.jpg b/gallery/thumb/ballot.jpg new file mode 100644 index 0000000..78e0009 Binary files /dev/null and b/gallery/thumb/ballot.jpg differ diff --git a/gallery/thumb/cygwin-dillo.jpg b/gallery/thumb/cygwin-dillo.jpg new file mode 100644 index 0000000..ee49620 Binary files /dev/null and b/gallery/thumb/cygwin-dillo.jpg differ diff --git a/gallery/thumb/dsl.jpg b/gallery/thumb/dsl.jpg new file mode 100644 index 0000000..623ed1d Binary files /dev/null and b/gallery/thumb/dsl.jpg differ diff --git a/gallery/thumb/handbook486.jpg b/gallery/thumb/handbook486.jpg new file mode 100644 index 0000000..5ad46fc Binary files /dev/null and b/gallery/thumb/handbook486.jpg differ diff --git a/gallery/thumb/hp-jornada.jpg b/gallery/thumb/hp-jornada.jpg new file mode 100644 index 0000000..b341153 Binary files /dev/null and b/gallery/thumb/hp-jornada.jpg differ diff --git a/gallery/thumb/iliad.jpg b/gallery/thumb/iliad.jpg new file mode 100644 index 0000000..09217d7 Binary files /dev/null and b/gallery/thumb/iliad.jpg differ diff --git a/gallery/thumb/iliad2.jpg b/gallery/thumb/iliad2.jpg new file mode 100644 index 0000000..c50afd0 Binary files /dev/null and b/gallery/thumb/iliad2.jpg differ diff --git a/gallery/thumb/ipaq-3700.jpg b/gallery/thumb/ipaq-3700.jpg new file mode 100644 index 0000000..6a39320 Binary files /dev/null and b/gallery/thumb/ipaq-3700.jpg differ diff --git a/gallery/thumb/kindle.jpg b/gallery/thumb/kindle.jpg new file mode 100644 index 0000000..5eb706f Binary files /dev/null and b/gallery/thumb/kindle.jpg differ diff --git a/gallery/thumb/libretto-50ct.jpg b/gallery/thumb/libretto-50ct.jpg new file mode 100644 index 0000000..abaf9f4 Binary files /dev/null and b/gallery/thumb/libretto-50ct.jpg differ diff --git a/gallery/thumb/libretto.jpg b/gallery/thumb/libretto.jpg new file mode 100644 index 0000000..f948b2d Binary files /dev/null and b/gallery/thumb/libretto.jpg differ diff --git a/gallery/thumb/mac.jpg b/gallery/thumb/mac.jpg new file mode 100644 index 0000000..476e06a Binary files /dev/null and b/gallery/thumb/mac.jpg differ diff --git a/gallery/thumb/n900-pmos.jpg b/gallery/thumb/n900-pmos.jpg new file mode 100644 index 0000000..cc0bf74 Binary files /dev/null and b/gallery/thumb/n900-pmos.jpg differ diff --git a/gallery/thumb/n900.jpg b/gallery/thumb/n900.jpg new file mode 100644 index 0000000..9f58ad2 Binary files /dev/null and b/gallery/thumb/n900.jpg differ diff --git a/gallery/thumb/openbsd-6.5-macppc.jpg b/gallery/thumb/openbsd-6.5-macppc.jpg new file mode 100644 index 0000000..81f98ff Binary files /dev/null and b/gallery/thumb/openbsd-6.5-macppc.jpg differ diff --git a/gallery/thumb/ps2.jpg b/gallery/thumb/ps2.jpg new file mode 100644 index 0000000..ffe07ba Binary files /dev/null and b/gallery/thumb/ps2.jpg differ diff --git a/gallery/thumb/tomtom.jpg b/gallery/thumb/tomtom.jpg new file mode 100644 index 0000000..6734dc3 Binary files /dev/null and b/gallery/thumb/tomtom.jpg differ diff --git a/gallery/thumb/win11.jpg b/gallery/thumb/win11.jpg new file mode 100644 index 0000000..37b10f2 Binary files /dev/null and b/gallery/thumb/win11.jpg differ -- cgit v1.2.3