summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgallery/genthumb.sh19
-rw-r--r--gallery/img/alpha.pngbin0 -> 205753 bytes
-rw-r--r--gallery/img/atari.pngbin0 -> 36076 bytes
-rw-r--r--gallery/img/ballot.pngbin0 -> 680061 bytes
-rw-r--r--gallery/img/cygwin-dillo.jpgbin0 -> 171458 bytes
-rw-r--r--gallery/img/dsl.jpgbin0 -> 99658 bytes
-rw-r--r--gallery/img/handbook486.jpgbin0 -> 417165 bytes
-rw-r--r--gallery/img/hp-jornada.jpgbin0 -> 212983 bytes
-rw-r--r--gallery/img/iliad.pngbin0 -> 67415 bytes
-rw-r--r--gallery/img/iliad2.jpgbin0 -> 924591 bytes
-rw-r--r--gallery/img/ipaq-3700.jpgbin0 -> 65449 bytes
-rw-r--r--gallery/img/kindle.jpgbin0 -> 168315 bytes
-rw-r--r--gallery/img/libretto-50ct.jpgbin0 -> 2240571 bytes
-rw-r--r--gallery/img/libretto.jpgbin0 -> 230450 bytes
-rw-r--r--gallery/img/mac.jpgbin0 -> 275067 bytes
-rw-r--r--gallery/img/n900-pmos.pngbin0 -> 692763 bytes
-rw-r--r--gallery/img/n900.pngbin0 -> 326735 bytes
-rw-r--r--gallery/img/openbsd-6.5-macppc.pngbin0 -> 87497 bytes
-rw-r--r--gallery/img/ps2.pngbin0 -> 828279 bytes
-rw-r--r--gallery/img/tomtom.jpgbin0 -> 52695 bytes
-rw-r--r--gallery/img/win11.pngbin0 -> 149436 bytes
-rw-r--r--gallery/index.html293
-rw-r--r--gallery/thumb/alpha.jpgbin0 -> 15850 bytes
-rw-r--r--gallery/thumb/atari.jpgbin0 -> 20047 bytes
-rw-r--r--gallery/thumb/ballot.jpgbin0 -> 12389 bytes
-rw-r--r--gallery/thumb/cygwin-dillo.jpgbin0 -> 20112 bytes
-rw-r--r--gallery/thumb/dsl.jpgbin0 -> 11410 bytes
-rw-r--r--gallery/thumb/handbook486.jpgbin0 -> 17071 bytes
-rw-r--r--gallery/thumb/hp-jornada.jpgbin0 -> 14768 bytes
-rw-r--r--gallery/thumb/iliad.jpgbin0 -> 19400 bytes
-rw-r--r--gallery/thumb/iliad2.jpgbin0 -> 10514 bytes
-rw-r--r--gallery/thumb/ipaq-3700.jpgbin0 -> 12502 bytes
-rw-r--r--gallery/thumb/kindle.jpgbin0 -> 10243 bytes
-rw-r--r--gallery/thumb/libretto-50ct.jpgbin0 -> 11206 bytes
-rw-r--r--gallery/thumb/libretto.jpgbin0 -> 11962 bytes
-rw-r--r--gallery/thumb/mac.jpgbin0 -> 12100 bytes
-rw-r--r--gallery/thumb/n900-pmos.jpgbin0 -> 10770 bytes
-rw-r--r--gallery/thumb/n900.jpgbin0 -> 8835 bytes
-rw-r--r--gallery/thumb/openbsd-6.5-macppc.jpgbin0 -> 17854 bytes
-rw-r--r--gallery/thumb/ps2.jpgbin0 -> 21431 bytes
-rw-r--r--gallery/thumb/tomtom.jpgbin0 -> 16405 bytes
-rw-r--r--gallery/thumb/win11.jpgbin0 -> 17210 bytes
42 files changed, 312 insertions, 0 deletions
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
--- /dev/null
+++ b/gallery/img/alpha.png
Binary files differ
diff --git a/gallery/img/atari.png b/gallery/img/atari.png
new file mode 100644
index 0000000..b055fee
--- /dev/null
+++ b/gallery/img/atari.png
Binary files differ
diff --git a/gallery/img/ballot.png b/gallery/img/ballot.png
new file mode 100644
index 0000000..6744f7d
--- /dev/null
+++ b/gallery/img/ballot.png
Binary files differ
diff --git a/gallery/img/cygwin-dillo.jpg b/gallery/img/cygwin-dillo.jpg
new file mode 100644
index 0000000..2ec4577
--- /dev/null
+++ b/gallery/img/cygwin-dillo.jpg
Binary files differ
diff --git a/gallery/img/dsl.jpg b/gallery/img/dsl.jpg
new file mode 100644
index 0000000..3e25121
--- /dev/null
+++ b/gallery/img/dsl.jpg
Binary files differ
diff --git a/gallery/img/handbook486.jpg b/gallery/img/handbook486.jpg
new file mode 100644
index 0000000..795fa15
--- /dev/null
+++ b/gallery/img/handbook486.jpg
Binary files differ
diff --git a/gallery/img/hp-jornada.jpg b/gallery/img/hp-jornada.jpg
new file mode 100644
index 0000000..feb94f4
--- /dev/null
+++ b/gallery/img/hp-jornada.jpg
Binary files differ
diff --git a/gallery/img/iliad.png b/gallery/img/iliad.png
new file mode 100644
index 0000000..42b3aec
--- /dev/null
+++ b/gallery/img/iliad.png
Binary files differ
diff --git a/gallery/img/iliad2.jpg b/gallery/img/iliad2.jpg
new file mode 100644
index 0000000..b22480d
--- /dev/null
+++ b/gallery/img/iliad2.jpg
Binary files differ
diff --git a/gallery/img/ipaq-3700.jpg b/gallery/img/ipaq-3700.jpg
new file mode 100644
index 0000000..6022acb
--- /dev/null
+++ b/gallery/img/ipaq-3700.jpg
Binary files differ
diff --git a/gallery/img/kindle.jpg b/gallery/img/kindle.jpg
new file mode 100644
index 0000000..41fa625
--- /dev/null
+++ b/gallery/img/kindle.jpg
Binary files differ
diff --git a/gallery/img/libretto-50ct.jpg b/gallery/img/libretto-50ct.jpg
new file mode 100644
index 0000000..a93f00a
--- /dev/null
+++ b/gallery/img/libretto-50ct.jpg
Binary files differ
diff --git a/gallery/img/libretto.jpg b/gallery/img/libretto.jpg
new file mode 100644
index 0000000..3090b60
--- /dev/null
+++ b/gallery/img/libretto.jpg
Binary files differ
diff --git a/gallery/img/mac.jpg b/gallery/img/mac.jpg
new file mode 100644
index 0000000..eddf33b
--- /dev/null
+++ b/gallery/img/mac.jpg
Binary files differ
diff --git a/gallery/img/n900-pmos.png b/gallery/img/n900-pmos.png
new file mode 100644
index 0000000..f6c2ad6
--- /dev/null
+++ b/gallery/img/n900-pmos.png
Binary files differ
diff --git a/gallery/img/n900.png b/gallery/img/n900.png
new file mode 100644
index 0000000..21b2120
--- /dev/null
+++ b/gallery/img/n900.png
Binary files 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
--- /dev/null
+++ b/gallery/img/openbsd-6.5-macppc.png
Binary files differ
diff --git a/gallery/img/ps2.png b/gallery/img/ps2.png
new file mode 100644
index 0000000..25ef09d
--- /dev/null
+++ b/gallery/img/ps2.png
Binary files differ
diff --git a/gallery/img/tomtom.jpg b/gallery/img/tomtom.jpg
new file mode 100644
index 0000000..99f4da6
--- /dev/null
+++ b/gallery/img/tomtom.jpg
Binary files differ
diff --git a/gallery/img/win11.png b/gallery/img/win11.png
new file mode 100644
index 0000000..0fe1cc6
--- /dev/null
+++ b/gallery/img/win11.png
Binary files 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 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <title>Gallery</title>
+ <link rel="icon" type="image/png" href="img/favicon.png">
+ <style>
+body {
+ background: white;
+ line-height: 1.5;
+ margin: 3em;
+ font-family: sans-serif;
+}
+article {
+ margin: 2em auto;
+ width: 50em;
+}
+h1 {
+ font-size: 28px;
+ margin-bottom: 0.5em
+}
+h2 {
+ font-size: 24px;
+}
+img {
+ width: 100%;
+}
+footer {
+ text-align: center;
+ margin-top: 2em;
+ clear: both;
+}
+figure {
+ vertical-align: top;
+ max-width: 14em;
+ display: inline-block;
+ margin: 1em;
+}
+figcaption {
+ padding-top: 0.5em;
+ font-size: 13px;
+ font-style: italic;
+}
+ </style>
+ </head>
+
+<body>
+<article>
+<h1>Gallery of pictures</h1>
+<i>Updated on 2024-04-21</i>
+
+<p>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 <a href="mailto:dillo-dev@mailman3.com">dillo-dev@mailman3.com</a>.
+</p>
+
+<h2>Devices</h2>
+
+<p>Pictures of Dillo running on a given device.</p>
+
+<figure>
+ <a href="img/kindle.jpg">
+ <img alt="Dillo running on a Kindle" src="thumb/kindle.jpg">
+ </a>
+ <figcaption>
+ <b>2024-03-29</b> -
+ Dillo 3.1-dev running on a Kindle PW Gen 4 with Debian
+ [<a href="https://fosstodon.org/@dillo/112181258739093008">1</a>]
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/ballot.png">
+ <img alt="Dillo on a voting machine" src="thumb/ballot.jpg">
+ </a>
+ <figcaption>
+ <b>2021-11-25</b> -
+ Dillo 3.0.5 running on a voting machine with Debian
+ [<a href="https://diode.zone/w/f35b1518-e48d-4655-ad76-652536e26cdb">1</a>,
+ <a href="https://www.youtube.com/watch?v=MRvad7i_TZg">2</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/n900-pmos.png">
+ <img alt="Dillo running on a Nokia N900" src="thumb/n900-pmos.jpg">
+ </a>
+ <figcaption>
+ <b>2019-07-15</b> -
+ Dillo running on a Nokia N900 with PostmarketOS
+ [<a href="https://youtu.be/dZ9i7AQvVrw?t=297">1</a>]
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/mac.jpg">
+ <img alt="Dillo running on iMac G3 from 1999" src="thumb/mac.jpg">
+ </a>
+ <figcaption>
+ <b>2019-05-25</b> -
+ Dillo running on an iMac G3 with OpenBSD 6.5
+ [<a href="https://www.increasinglyadequate.com/macppc.html">1</a>]
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/ps2.png">
+ <img alt="Dillo running on a PlayStation 2" src="thumb/ps2.jpg">
+ </a>
+ <figcaption>
+ <b>2012-11-04</b> -
+ Dillo running on a PlayStation 2 Slim with BlackRhino GNU/Linux
+ [<a href="https://www.youtube.com/watch?v=ORquozBaHBY">1</a>,
+ <a href="http://hirudov.com/others/Playstation-2.php">2</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/libretto-50ct.jpg">
+ <img alt="Dillo running on a Libretto 50CT" src="thumb/libretto-50ct.jpg">
+ </a>
+ <figcaption>
+ <b>2012-12-13</b> -
+ Dillo running on a Libretto 50CT (24 MiB RAM) with DSL
+ [<a href="https://cfenollosa.com/blog/damn-small-linux-on-a-libretto-50ct.html">1</a>,
+ <a href="https://github.com/cfenollosa/dsl-libretto50ct">2</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/n900.png">
+ <img alt="Dillo running on Nokia N900" src="thumb/n900.jpg">
+ </a>
+ <figcaption>
+ <b>2012-03-22</b> -
+ Dillo running on Nokia N900 with Maemo
+ [<a href="https://www.youtube.com/watch?v=v2jH_PXeA2A">1</a>,
+ <a href="https://talk.maemo.org/showthread.php?t=83188">2</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/libretto.jpg">
+ <img alt="Dillo running on a Libretto 110CT" src="thumb/libretto.jpg">
+ </a>
+ <figcaption>
+ <b>2011-11-17</b> -
+ Dillo 2.2 running on a Libretto 110CT with Gentoo
+ [<a href="https://www.notanon.com/retro/installing-gentoo-linux-on-the-libretto-110ct/2011/11/17/">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/hp-jornada.jpg">
+ <img alt="Dillo running on a HP Jornada 720" src="thumb/hp-jornada.jpg">
+ </a>
+ <figcaption>
+ <b>2011-05-03</b> -
+ Dillo 2.2 running on a HP Jornada 720
+ [<a href="https://www.youtube.com/watch?v=1s-tekLn7Nc">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/iliad2.jpg">
+ <img alt="Dillo running on iLiad" src="thumb/iliad2.jpg">
+ </a>
+ <figcaption>
+ <b>2006-12-17</b> -
+ Dillo 0.8.6 running on an iLiad iRex e-Reader
+ [<a href="https://www.mobileread.com/forums/showthread.php?t=8965#td_post_51674">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/handbook486.jpg"><img alt="Dillo running on a Gateway HandBook"
+ src="thumb/handbook486.jpg"></a>
+ <figcaption>
+ <b>2005-04-19</b> -
+ Dillo running on a Gateway Handbook 486
+ [<a href="https://en.wikipedia.org/wiki/File:Hb486_dillo_big.jpg">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/dsl.jpg"><img alt="Dillo running on a 486SX33" src="thumb/dsl.jpg"></a>
+ <figcaption>
+ <b>2003-10-19</b> -
+ Dillo 0.7.3 running on a 486SX33 CPU (16MiB of RAM) with DSL
+ [<a href="http://damnsmalllinux.org/486.html">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/ipaq-3700.jpg"><img alt="Dillo running on an ipaq 3700"
+ src="thumb/ipaq-3700.jpg"></a>
+ <figcaption>
+ <b>2002-03-20</b> -
+ Dillo running on an Ipaq 3700 (64MiB of RAM) with Familiar Linux
+ [<a href="https://users.dcc.uchile.cl/~jpiquer/Extension/Informatica/ipaq/ipaq.html">1</a>].
+ </figcaption>
+</figure>
+
+<h2>Screenshots</h2>
+<p>Screenshots of Dillo taken from the device itself.</p>
+
+<figure>
+ <a href="img/win11.png"><img alt="Dillo running on Windows 11" src="thumb/win11.jpg"></a>
+ <figcaption>
+ <b>2024-03-24</b> -
+ Dillo 3.1-dev running on x86 with Windows 11 via Cygwin
+ [<a href="https://fosstodon.org/@dillo/112151677906606746">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/atari.png"><img alt="Dillo running on Atari" src="thumb/atari.jpg"></a>
+ <figcaption>
+ <b>2023-12</b> -
+ Dillo 3.1-dev running on
+ <a href="https://aranym.github.io/">ARAnyM</a>, an
+ <a href="https://es.wikipedia.org/wiki/Atari">Atari</a> simulator
+ [<a href="https://www.atari-forum.com/viewtopic.php?t=43326">1</a>,
+ <a href="https://github.com/dillo-browser/dillo/issues/34">2</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/openbsd-6.5-macppc.png"><img
+ alt="Dillo running on MacPPC with OpenBSD 6.5"
+ src="thumb/openbsd-6.5-macppc.jpg">
+ </a>
+ <figcaption>
+ <b>2019-05-25</b> -
+ Dillo running on PowerPC with OpenBSD 6.5
+ [<a href="https://www.increasinglyadequate.com/macppc.html">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/alpha.png"><img
+ alt="Dillo running on iLiad"
+ src="thumb/alpha.jpg">
+ </a>
+ <figcaption>
+ <b>2018-11-02</b> -
+ Dillo 3.0.5 running on emulated Alpha with Gentoo
+ [<a href="https://astr0baby.wordpress.com/2018/11/02/gentoo-on-alpha-flying-circus-2/">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/iliad.png"><img
+ alt="Dillo running on iLiad"
+ src="thumb/iliad.jpg">
+ </a>
+ <figcaption>
+ <b>2009-07-10</b> -
+ Dillo 2.1.1 running on the iLiad e-Reader
+ [<a
+ href="https://www.mobileread.com/forums/showpost.php?p=517459&postcount=92">1</a>,
+ <a
+ href="https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/6DMSAHBDRI47CDOVCQV66ZBYAYYLTGOL/#IR4ELC5XXB4XK4WTO65W65GXZJYJM5LK">2</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/tomtom.jpg">
+ <img alt="Dillo running on a TomTom GPS" src="thumb/tomtom.jpg">
+ </a>
+ <figcaption>
+ <b>2007-12-09</b> -
+ Dillo 0.8.4 running on a TomTom GPS
+ [<a href="https://www.tomtomforums.com/threads/web-browser-for-your-tomtom-on-its-way.12149/">1</a>].
+ </figcaption>
+</figure>
+
+<figure>
+ <a href="img/cygwin-dillo.jpg">
+ <img alt="Dillo running on Windows via Cygwin" src="thumb/cygwin-dillo.jpg"></a>
+ <figcaption>
+ <b>2005-01-11</b> -
+ Dillo 0.8.4 running on Windows 2000 via Cygwin
+ [<a href="https://web.archive.org/web/20050204120846/http://www.hyperborea.org/software/dillo/cygwin.html">1</a>].
+ </figcaption>
+</figure>
+
+<footer>
+<a href="../index.html">&larr; Home</a>
+</footer>
+</article>
+</body>
+</html>
diff --git a/gallery/thumb/alpha.jpg b/gallery/thumb/alpha.jpg
new file mode 100644
index 0000000..907f158
--- /dev/null
+++ b/gallery/thumb/alpha.jpg
Binary files differ
diff --git a/gallery/thumb/atari.jpg b/gallery/thumb/atari.jpg
new file mode 100644
index 0000000..9f2b526
--- /dev/null
+++ b/gallery/thumb/atari.jpg
Binary files differ
diff --git a/gallery/thumb/ballot.jpg b/gallery/thumb/ballot.jpg
new file mode 100644
index 0000000..78e0009
--- /dev/null
+++ b/gallery/thumb/ballot.jpg
Binary files differ
diff --git a/gallery/thumb/cygwin-dillo.jpg b/gallery/thumb/cygwin-dillo.jpg
new file mode 100644
index 0000000..ee49620
--- /dev/null
+++ b/gallery/thumb/cygwin-dillo.jpg
Binary files differ
diff --git a/gallery/thumb/dsl.jpg b/gallery/thumb/dsl.jpg
new file mode 100644
index 0000000..623ed1d
--- /dev/null
+++ b/gallery/thumb/dsl.jpg
Binary files differ
diff --git a/gallery/thumb/handbook486.jpg b/gallery/thumb/handbook486.jpg
new file mode 100644
index 0000000..5ad46fc
--- /dev/null
+++ b/gallery/thumb/handbook486.jpg
Binary files differ
diff --git a/gallery/thumb/hp-jornada.jpg b/gallery/thumb/hp-jornada.jpg
new file mode 100644
index 0000000..b341153
--- /dev/null
+++ b/gallery/thumb/hp-jornada.jpg
Binary files differ
diff --git a/gallery/thumb/iliad.jpg b/gallery/thumb/iliad.jpg
new file mode 100644
index 0000000..09217d7
--- /dev/null
+++ b/gallery/thumb/iliad.jpg
Binary files differ
diff --git a/gallery/thumb/iliad2.jpg b/gallery/thumb/iliad2.jpg
new file mode 100644
index 0000000..c50afd0
--- /dev/null
+++ b/gallery/thumb/iliad2.jpg
Binary files differ
diff --git a/gallery/thumb/ipaq-3700.jpg b/gallery/thumb/ipaq-3700.jpg
new file mode 100644
index 0000000..6a39320
--- /dev/null
+++ b/gallery/thumb/ipaq-3700.jpg
Binary files differ
diff --git a/gallery/thumb/kindle.jpg b/gallery/thumb/kindle.jpg
new file mode 100644
index 0000000..5eb706f
--- /dev/null
+++ b/gallery/thumb/kindle.jpg
Binary files differ
diff --git a/gallery/thumb/libretto-50ct.jpg b/gallery/thumb/libretto-50ct.jpg
new file mode 100644
index 0000000..abaf9f4
--- /dev/null
+++ b/gallery/thumb/libretto-50ct.jpg
Binary files differ
diff --git a/gallery/thumb/libretto.jpg b/gallery/thumb/libretto.jpg
new file mode 100644
index 0000000..f948b2d
--- /dev/null
+++ b/gallery/thumb/libretto.jpg
Binary files differ
diff --git a/gallery/thumb/mac.jpg b/gallery/thumb/mac.jpg
new file mode 100644
index 0000000..476e06a
--- /dev/null
+++ b/gallery/thumb/mac.jpg
Binary files differ
diff --git a/gallery/thumb/n900-pmos.jpg b/gallery/thumb/n900-pmos.jpg
new file mode 100644
index 0000000..cc0bf74
--- /dev/null
+++ b/gallery/thumb/n900-pmos.jpg
Binary files differ
diff --git a/gallery/thumb/n900.jpg b/gallery/thumb/n900.jpg
new file mode 100644
index 0000000..9f58ad2
--- /dev/null
+++ b/gallery/thumb/n900.jpg
Binary files 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
--- /dev/null
+++ b/gallery/thumb/openbsd-6.5-macppc.jpg
Binary files differ
diff --git a/gallery/thumb/ps2.jpg b/gallery/thumb/ps2.jpg
new file mode 100644
index 0000000..ffe07ba
--- /dev/null
+++ b/gallery/thumb/ps2.jpg
Binary files differ
diff --git a/gallery/thumb/tomtom.jpg b/gallery/thumb/tomtom.jpg
new file mode 100644
index 0000000..6734dc3
--- /dev/null
+++ b/gallery/thumb/tomtom.jpg
Binary files differ
diff --git a/gallery/thumb/win11.jpg b/gallery/thumb/win11.jpg
new file mode 100644
index 0000000..37b10f2
--- /dev/null
+++ b/gallery/thumb/win11.jpg
Binary files differ