diff --git a/index.html b/index.html index 90db22e..9fe71a9 100644 --- a/index.html +++ b/index.html @@ -23,3 +23,11 @@ Ednieva is currently made for game version 1.20.6. You can download the loaders directly from here using the buttons above. However, there is a more extensive API for querying or downloading the most recent version of any component:
download.baseband.com.de
+
+
+

Screenshots

+ + + + + diff --git a/screenshot_ingame.png b/screenshot_ingame.png new file mode 100644 index 0000000..a066b0d Binary files /dev/null and b/screenshot_ingame.png differ diff --git a/screenshot_seedoverlay_generating.png b/screenshot_seedoverlay_generating.png new file mode 100644 index 0000000..3067cd1 Binary files /dev/null and b/screenshot_seedoverlay_generating.png differ diff --git a/screenshot_seedoverlay_hut.png b/screenshot_seedoverlay_hut.png new file mode 100644 index 0000000..ee28a14 Binary files /dev/null and b/screenshot_seedoverlay_hut.png differ diff --git a/screenshot_seedoverlay_underground.png b/screenshot_seedoverlay_underground.png new file mode 100644 index 0000000..abfcdf2 Binary files /dev/null and b/screenshot_seedoverlay_underground.png differ diff --git a/screenshot_selection.png b/screenshot_selection.png new file mode 100644 index 0000000..9b47540 Binary files /dev/null and b/screenshot_selection.png differ diff --git a/server.spl b/server.spl index 864bfbd..966dc53 100644 --- a/server.spl +++ b/server.spl @@ -1,6 +1,8 @@ "#httpserver/base.spl" import "#httpserver/static.spl" import +1024 64 * net:http:server:=bufsize + func destub { html | with html title ; stub.html :replace<"+title" title> @@ -44,6 +46,11 @@ func handle-client { | with client ; :serve-html-string :serve-html-string :serve-file-cached<"style.css" "/style.css" "text/css"> + :serve-file-cached<"screenshot_ingame.png" "/screenshots/ingame.png" "image/png"> + :serve-file-cached<"screenshot_selection.png" "/screenshots/selection.png" "image/png"> + :serve-file-cached<"screenshot_seedoverlay_generating.png" "/screenshots/seedoverlay/generating.png" "image/png"> + :serve-file-cached<"screenshot_seedoverlay_hut.png" "/screenshots/seedoverlay/hut.png" "image/png"> + :serve-file-cached<"screenshot_seedoverlay_underground.png" "/screenshots/seedoverlay/underground.png" "image/png"> :is-open if { 404.html client:write-head<404 "Not found">:write-html-body:finish; diff --git a/style.css b/style.css index a25e5f1..0bc36c4 100644 --- a/style.css +++ b/style.css @@ -70,3 +70,10 @@ div.error { padding: 15px; margin: 15px; } + +img.ss { + margin: auto; + display: inline-block; + width: 45%; + margin: 0.5em; +}