diff --git a/docs/src/pages/roadmap.tsx b/docs/src/pages/roadmap.tsx index 1e0914a651..50f7a47902 100644 --- a/docs/src/pages/roadmap.tsx +++ b/docs/src/pages/roadmap.tsx @@ -78,12 +78,14 @@ import { mdiLinkEdit, mdiTagFaces, mdiMovieOpenPlayOutline, + mdiCast, } from '@mdi/js'; import Layout from '@theme/Layout'; import React from 'react'; import { Item, Timeline } from '../components/timeline'; const releases = { + 'v1.133.0': new Date(2025, 4, 21), 'v1.130.0': new Date(2025, 2, 25), 'v1.127.0': new Date(2025, 1, 26), 'v1.122.0': new Date(2024, 11, 5), @@ -218,14 +220,6 @@ const roadmap: Item[] = [ description: 'Immich goes stable', getDateLabel: () => 'Planned for early 2025', }, - { - done: false, - icon: mdiLockOutline, - iconColor: 'sandybrown', - title: 'Private/locked photos', - description: 'Private assets with extra protections', - getDateLabel: () => 'Planned for 2025', - }, { done: false, icon: mdiCloudUploadOutline, @@ -245,6 +239,20 @@ const roadmap: Item[] = [ ]; const milestones: Item[] = [ + withRelease({ + icon: mdiCast, + iconColor: 'aqua', + title: 'Google Cast (web)', + description: 'Cast assets to Google Cast/Chromecast compatible devices', + release: 'v1.133.0', + }), + withRelease({ + icon: mdiLockOutline, + iconColor: 'sandybrown', + title: 'Private/locked photos', + description: 'Private assets with extra protections', + release: 'v1.133.0', + }), withRelease({ icon: mdiFolderMultiple, iconColor: 'brown',