Download links for 0.5.0 Windows + Linux builds

master
Noah 2021-03-31 22:11:59 -07:00
parent a3f3b38fef
commit bcc1597018
4 changed files with 49 additions and 25 deletions

View File

@ -3,13 +3,9 @@ title: "Download"
draft: false
toc: true
---
# Latest Release: v0.5.0
# Latest Release: v0.5.0 (March 31, 2021)
<div class="alert alert-warning">
<strong>Notice:</strong> v0.5.0 is still being prepared for release, most links
below will not work right now. See <a href="#previous-releases">Previous Releases</a>
in the mean time!
</div>
[Change History](/guidebook/changes.html)
## Windows
@ -20,12 +16,18 @@ start the game.
**Note:** I do not yet have a code signing certificate for the Windows release,
so you may need to click through the "Unknown Publisher" warning.
* **64-bit:** [sketchymaze-0.5.0-windows-64bit.zip](https://download.sketchymaze.com/release/v0.5.0/sketchymaze-0.5.0-windows-64bit.zip)
* **64-bit:** [sketchy-maze-0.5.0-windows-64bit.zip](https://download.sketchymaze.com/release/v0.5.0/sketchy-maze-0.5.0-windows-64bit.zip) (23 MB)
[Let me know](mailto:noah@kirsle.net) if you need a 32-bit build of this game.
---
## Mac OS
* **Intel 64-bit:** TBD.
---
## GNU/Linux
### Flatpak (All Distros)
@ -34,26 +36,27 @@ The easiest cross-distro way to download _Sketchy Maze_ is via [Flatpak](https:/
which is well supported on most popular Linux distributions including Fedora, Ubuntu,
Debian and others.
* **64-bit:** [sketchy-maze-0.5.0.flatpak](https://download.sketchymaze.com/release/v0.5.0/sketchy-maze-0.5.0.flatpak) (11 MB)
```bash
# Add the Flatpak repository for this game (only needed the first time).
# NOTE: "doodle" is Sketchy Maze's internal codename, you can name this remote
# whatever you want but it should match the install command later.
$ flatpak remote-add --if-not-exists doodle https://download.sketchymaze.com/flatpak/doodle.flatpakrepo
# Download the .flatpak package. NOTE: it's distributed as a stand-alone app
# for now, a flatpak repo will be added at some point.
$ wget https://download.sketchymaze.com/release/v0.5.0/sketchy-maze-0.5.0.flatpak
# Then install Sketchy Maze:
$ flatpak install doodle com.sketchymaze.Doodle
# Install the .flatpak package.
$ flatpak install --user sketchy-maze-0.5.0.flatpak
# When there's an update, getting the latest version is simple too:
$ flatpak update
# Run it. There should also be a standard app launcher in your menu.
$ flatpak run com.sketchymaze.Doodle
```
### Fedora (.rpm)
TBD.
* **64-bit:** [sketchy-maze-0.5.0-1.x86_64.rpm](https://download.sketchymaze.com/release/v0.5.0/sketchy-maze-0.5.0-1.x86_64.rpm) (20 MB)
### Ubuntu & Debian (.deb)
TBD.
* **64-bit:** [sketchy-maze_0.5.0_amd64.deb](https://download.sketchymaze.com/release/v0.5.0/sketchy-maze_0.5.0_amd64.deb) (21 MB)
### Tarball
@ -62,11 +65,7 @@ anywhere and run. The binary is built on a modern Fedora system and _hopefully_
should run as-is on other modern GNU/Linux systems, but sometimes shared library
versions of SDL2 may not match your computer.
* **64-bit:** [sketchymaze-0.5.0-linux-64bit.tar.gz](https://download.sketchymaze.com/release/v0.5.0/sketchymaze-0.5.0-linux-64bit.tar.gz)
---
## Mac OS
* **64-bit:** [sketchy-maze-0.5.0-linux-64bit.tar.gz](https://download.sketchymaze.com/release/v0.5.0/sketchy-maze-0.5.0-linux-64bit.tar.gz)
---

BIN
static/images/main-menu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@ -1,11 +1,29 @@
{{ define "main" }}
<div class="row">
<div class="col-12">
<img src="/images/about.png">
<h1>Welcome to SketchyMaze.com</h1>
This website is under construction.
<p>
<img src="/images/main-menu.png" class="center">
</p>
<p>
<strong>Sketchy Maze</strong> is a drawing-based maze game themed around
hand-drawn maps on paper. You can design your own level and make it look
like anything you want, and drag-and-drop some 'doodads' like Buttons,
Doors and Keys to add interactive elements and create puzzles and
obstacles.
</p>
<p>
The game is currently available as an early <strong>alpha</strong>
release. See the <a href="/download/">Downloads</a> to try it out!
</p>
<p>
See <a href="/about/">About</a>, <a href="/faq/">FAQ</a> and the
<a href="/guidebook">Guidebook</a> for more information about the game.
</p>
</div>
</div>
{{ end }}

View File

@ -16,6 +16,12 @@ img {
height: auto;
}
img.center {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Bootstrap override */
h1,h2,h3,h4 {
margin-top: 2rem !important;
@ -50,6 +56,7 @@ h1,h2,h3,h4 {
position: fixed;
top: 0;
left: 0;
z-index: 9000;
}
#top-nav {