diff --git a/views/pages/works.ts b/views/pages/works.ts index 613f7ae..4ef1279 100644 --- a/views/pages/works.ts +++ b/views/pages/works.ts @@ -60,6 +60,7 @@ interface Work { } enum Role { + Collaborator = "collaborator", Author = "author", TechLead = "tech lead", TeamLead = "team lead", @@ -109,6 +110,15 @@ enum Status { } const CHRONOLOGICAL_WORKS: Work[] = [ + { + name: RepoLink("dexios", "github.com/brxken128/dexios"), + description: + "Dexios is a fast, secure, and open source command-line encryption tool.", + roles: [Role.Collaborator], + technologies: [Technology.Rust], + startDate: "2022", + statuses: [Status.ActiveDeveloped], + }, { name: RepoLink("paren", "/pleshevskiy/paren"), description: "Library for parsing and rendering information.", @@ -216,7 +226,7 @@ const CHRONOLOGICAL_WORKS: Work[] = [ roles: [Role.Author], technologies: [Technology.Rust], startDate: "2019", - statuses: [Status.PassivelyMaintained], + statuses: [Status.ActiveDeveloped], }, { name: RepoLink("it-fsm", "/pleshevskiy/it-fsm"),