From bcb885422acb803149d0a51eb5ec306beb93d72e Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Tue, 21 Nov 2023 15:50:56 +0100 Subject: [PATCH] feat(docs): Add no-ssr milestone (#5220) * Add no-ssr milestone * chore: formatting * feat: activity --------- Co-authored-by: martabal <74269598+martabal@users.noreply.github.com> --- docs/src/pages/milestones.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/src/pages/milestones.tsx b/docs/src/pages/milestones.tsx index 8274861e16..6c7e3c5856 100644 --- a/docs/src/pages/milestones.tsx +++ b/docs/src/pages/milestones.tsx @@ -16,6 +16,7 @@ import { mdiFile, mdiFileSearch, mdiFolder, + mdiForum, mdiHeart, mdiImage, mdiImageAlbum, @@ -42,6 +43,7 @@ import { mdiText, mdiThemeLightDark, mdiTrashCanOutline, + mdiVectorCombine, mdiVideo, mdiWeb, } from '@mdi/js'; @@ -50,6 +52,16 @@ import React from 'react'; import Timeline, { DateType, Item } from '../components/timeline'; const items: Item[] = [ + { + icon: mdiVectorCombine, + description: + 'The serving of the web app is merged into the server image, allowing us to remove two containers from the stack.', + title: 'Container consolidation', + release: 'v1.88.0', + tag: 'v1.88.0', + date: new Date(2023, 10, 20), + dateType: DateType.RELEASE, + }, { icon: mdiBash, description: 'Version 2 of the Immich CLI is released, replacing the legacy v1 CLI.', @@ -59,6 +71,15 @@ const items: Item[] = [ date: new Date(2023, 10, 19), dateType: DateType.RELEASE, }, + { + icon: mdiForum, + description: 'Comment a photo or a video in a shared album', + title: 'Activity', + release: 'v1.84.0', + tag: 'v1.84.0', + date: new Date(2023, 10, 1), + dateType: DateType.RELEASE, + }, { icon: mdiStar, description: 'Reach 20K Stars on GitHub!',