diff options
-rw-r--r-- | src/projects/data.rs | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/projects/data.rs b/src/projects/data.rs index c2e0f70..ed48079 100644 --- a/src/projects/data.rs +++ b/src/projects/data.rs @@ -1,4 +1,4 @@ -use super::{Project, Status::*, State::*}; +use super::{Project, State::*, Status::*}; pub const PROJECTS: &'static [Project] = &[ Project { @@ -16,7 +16,7 @@ pub const PROJECTS: &'static [Project] = &[ }, Project { name: "infra", - status: Developing, + status: Maintained, description: "multi-system installation manager. allows to centrally manage installations with a single configuration in form of a rust DSL", ..default() }, @@ -59,13 +59,19 @@ pub const PROJECTS: &'static [Project] = &[ ..default() }, Project { + name: "trash-proxy", + status: Maintained, + description: "A minecraft reverse proxy for offline authentification.", + ..default() + }, +]; +pub const EXTRA_PROJECTS: &'static [Project] = &[ + Project { name: "karlender", status: Paused(Working), description: " a personal calender suite consisting of a daemon, a graphical and a command-line user interface. supports very flexible condition based recurring tasks and automatic scheduling so you dont need to decide.", ..default() }, -]; -pub const EXTRA_PROJECTS: &'static [Project] = &[ Project { name: "bad-editor", status: Paused(Unfinished), @@ -289,12 +295,6 @@ pub const EXTRA_PROJECTS: &'static [Project] = &[ ..default() }, Project { - name: "trash-proxy", - status: Paused(Working), - description: "A minecraft reverse proxy for offline auth.", - ..default() - }, - Project { name: "trash-map", status: Paused(Working), description: "A minecraft map renderer", @@ -327,12 +327,11 @@ pub const EXTRA_PROJECTS: &'static [Project] = &[ Project { name: "automato", status: Paused(Unfinished), - description: "A minimal, gridless automation game." , + description: "A minimal, gridless automation game.", ..default() }, ]; - const fn default() -> Project { Project { name: "", |