diff options
author | metamuffin <metamuffin@disroot.org> | 2024-11-28 17:35:26 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-11-28 17:35:26 +0100 |
commit | 6449797562e6366e980db519d47af47a0d4923bc (patch) | |
tree | 872692ea15585b4854560c559da0bd969639ada0 | |
parent | 536331f691b22dee75d8418d48f0cf6eb84419f1 (diff) | |
download | metamuffin-website-6449797562e6366e980db519d47af47a0d4923bc.tar metamuffin-website-6449797562e6366e980db519d47af47a0d4923bc.tar.bz2 metamuffin-website-6449797562e6366e980db519d47af47a0d4923bc.tar.zst |
update project list
-rw-r--r-- | src/projects/data.rs | 40 |
1 files changed, 30 insertions, 10 deletions
diff --git a/src/projects/data.rs b/src/projects/data.rs index bb6146b..ffdc07a 100644 --- a/src/projects/data.rs +++ b/src/projects/data.rs @@ -21,23 +21,24 @@ pub const PROJECTS: &'static [Project] = &[ ..default() }, Project { - name: "mond", - status: Developing, - description: "server monitoring software, no much code written so far", + name: "gnix", + status: Maintained, + description: "a stupid reverse proxy to replace nginx. serving the webpage you are viewing right now.", + link: Some("https://metamuffin.org"), ..default() }, Project { - name: "voxelwagen", - status: Developing, - description: "voxel game engine made from scratch; made to host an automation game.", - repo_link: Some("https://codeberg.org/voxelwagen/voxelwagen"), + name: "hurrycurry", + status: Maintained, + description: "A cooperative video game about cooking. Featuring multiplayer, 3d graphics and more.", + link: Some("https://hurrycurry.metamuffin.org"), + repo_link: Some("https://codeberg.org/hurrycurry/hurrycurry"), ..default() }, Project { - name: "gnix", + name: "abrechenbarkeit", status: Maintained, - description: "a stupid reverse proxy to replace nginx. serving the webpage you are viewing right now.", - link: Some("https://metamuffin.org"), + description: "a simple trust-based ledger implemented as a Lua CGI web application with a CSV database", ..default() }, Project { @@ -59,11 +60,30 @@ pub const PROJECTS: &'static [Project] = &[ ..default() }, Project { + name: "attocc", + status: Paused(Unfinished), + description: "minimal C compiler in C", + ..default() + }, + Project { name: "trash-proxy", status: Maintained, description: "A minecraft reverse proxy for offline authentification.", ..default() }, + Project { + name: "mond", + status: Paused(Unfinished), + description: "server monitoring software, no much code written so far", + ..default() + }, + Project { + name: "voxelwagen", + status: Paused(Unfinished), + description: "voxel game engine made from scratch; made to host an automation game.", + repo_link: Some("https://codeberg.org/voxelwagen/voxelwagen"), + ..default() + }, ]; pub const EXTRA_PROJECTS: &'static [Project] = &[ Project { |