mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
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>
This commit is contained in:
parent
c438e17954
commit
bcb885422a
1 changed files with 21 additions and 0 deletions
|
@ -16,6 +16,7 @@ import {
|
||||||
mdiFile,
|
mdiFile,
|
||||||
mdiFileSearch,
|
mdiFileSearch,
|
||||||
mdiFolder,
|
mdiFolder,
|
||||||
|
mdiForum,
|
||||||
mdiHeart,
|
mdiHeart,
|
||||||
mdiImage,
|
mdiImage,
|
||||||
mdiImageAlbum,
|
mdiImageAlbum,
|
||||||
|
@ -42,6 +43,7 @@ import {
|
||||||
mdiText,
|
mdiText,
|
||||||
mdiThemeLightDark,
|
mdiThemeLightDark,
|
||||||
mdiTrashCanOutline,
|
mdiTrashCanOutline,
|
||||||
|
mdiVectorCombine,
|
||||||
mdiVideo,
|
mdiVideo,
|
||||||
mdiWeb,
|
mdiWeb,
|
||||||
} from '@mdi/js';
|
} from '@mdi/js';
|
||||||
|
@ -50,6 +52,16 @@ import React from 'react';
|
||||||
import Timeline, { DateType, Item } from '../components/timeline';
|
import Timeline, { DateType, Item } from '../components/timeline';
|
||||||
|
|
||||||
const items: Item[] = [
|
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,
|
icon: mdiBash,
|
||||||
description: 'Version 2 of the Immich CLI is released, replacing the legacy v1 CLI.',
|
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),
|
date: new Date(2023, 10, 19),
|
||||||
dateType: DateType.RELEASE,
|
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,
|
icon: mdiStar,
|
||||||
description: 'Reach 20K Stars on GitHub!',
|
description: 'Reach 20K Stars on GitHub!',
|
||||||
|
|
Loading…
Reference in a new issue