This commit is contained in:
parent
cd22b0f1db
commit
08f6693925
8 changed files with 22 additions and 0 deletions
|
@ -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
|
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:<br>
|
API for querying or downloading the most recent version of any component:<br>
|
||||||
<a class=btn href="https://download.baseband.com.de">download.baseband.com.de</a><br>
|
<a class=btn href="https://download.baseband.com.de">download.baseband.com.de</a><br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<h2> Screenshots </h2>
|
||||||
|
<img class=ss src="/screenshots/ingame.png">
|
||||||
|
<img class=ss src="/screenshots/selection.png">
|
||||||
|
<img class=ss src="/screenshots/seedoverlay/generating.png">
|
||||||
|
<img class=ss src="/screenshots/seedoverlay/hut.png">
|
||||||
|
<img class=ss src="/screenshots/seedoverlay/underground.png">
|
||||||
|
|
BIN
screenshot_ingame.png
Normal file
BIN
screenshot_ingame.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
screenshot_seedoverlay_generating.png
Normal file
BIN
screenshot_seedoverlay_generating.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 MiB |
BIN
screenshot_seedoverlay_hut.png
Normal file
BIN
screenshot_seedoverlay_hut.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 725 KiB |
BIN
screenshot_seedoverlay_underground.png
Normal file
BIN
screenshot_seedoverlay_underground.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 516 KiB |
BIN
screenshot_selection.png
Normal file
BIN
screenshot_selection.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 MiB |
|
@ -1,6 +1,8 @@
|
||||||
"#httpserver/base.spl" import
|
"#httpserver/base.spl" import
|
||||||
"#httpserver/static.spl" import
|
"#httpserver/static.spl" import
|
||||||
|
|
||||||
|
1024 64 * net:http:server:=bufsize
|
||||||
|
|
||||||
func destub { html | with html title ;
|
func destub { html | with html title ;
|
||||||
stub.html
|
stub.html
|
||||||
:replace<"+title" title>
|
:replace<"+title" title>
|
||||||
|
@ -44,6 +46,11 @@ func handle-client { | with client ;
|
||||||
:serve-html-string<index.html "/">
|
:serve-html-string<index.html "/">
|
||||||
:serve-html-string<features.html "/features">
|
:serve-html-string<features.html "/features">
|
||||||
:serve-file-cached<"style.css" "/style.css" "text/css">
|
: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
|
:is-open
|
||||||
if {
|
if {
|
||||||
404.html client:write-head<404 "Not found">:write-html-body:finish;
|
404.html client:write-head<404 "Not found">:write-html-body:finish;
|
||||||
|
|
|
@ -70,3 +70,10 @@ div.error {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
margin: 15px;
|
margin: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img.ss {
|
||||||
|
margin: auto;
|
||||||
|
display: inline-block;
|
||||||
|
width: 45%;
|
||||||
|
margin: 0.5em;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue