summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/projects/data.rs40
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 {