From efa24d26e642cb0989d1f04f44f6ab2199ebbd96 Mon Sep 17 00:00:00 2001 From: Matthew Momjian <50788000+mmomjian@users.noreply.github.com> Date: Wed, 1 Jan 2025 19:17:13 -0500 Subject: [PATCH] fix(docs): push roadmap for 2025 (#15023) * update roadmap. * oops --- docs/src/pages/roadmap.tsx | 65 ++++++++++++++++++++++++-------------- 1 file changed, 41 insertions(+), 24 deletions(-) diff --git a/docs/src/pages/roadmap.tsx b/docs/src/pages/roadmap.tsx index 7de51f7513..9dd7559658 100644 --- a/docs/src/pages/roadmap.tsx +++ b/docs/src/pages/roadmap.tsx @@ -75,12 +75,15 @@ import { mdiVideo, mdiWeb, mdiDatabaseOutline, + mdiLinkEdit, + mdiMovieOpenPlayOutline, } from '@mdi/js'; import Layout from '@theme/Layout'; import React from 'react'; import { Item, Timeline } from '../components/timeline'; const releases = { + 'v1.122.0': new Date(2024, 12, 5), 'v1.120.0': new Date(2024, 10, 6), 'v1.114.0': new Date(2024, 8, 6), 'v1.113.0': new Date(2024, 7, 30), @@ -180,6 +183,30 @@ const withRelease = ({ }; const roadmap: Item[] = [ + { + done: false, + icon: mdiLockOutline, + iconColor: 'sandybrown', + title: 'Private/locked photos', + description: 'Private assets with extra protections', + getDateLabel: () => 'Planned for 2025', + }, + { + done: false, + icon: mdiCloudUploadOutline, + iconColor: 'cornflowerblue', + title: 'Better background backups', + description: 'Rework background backups to be more reliable', + getDateLabel: () => 'Planned for 2025', + }, + { + done: false, + icon: mdiCameraBurst, + iconColor: 'rebeccapurple', + title: 'Auto stacking', + description: 'Auto stack burst photos', + getDateLabel: () => 'Planned for 2025', + }, { done: false, icon: mdiFlash, @@ -212,33 +239,23 @@ 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 2024', - }, - { - done: false, - icon: mdiCloudUploadOutline, - iconColor: 'cornflowerblue', - title: 'Better background backups', - description: 'Rework background backups to be more reliable', - getDateLabel: () => 'Planned for 2024', - }, - { - done: false, - icon: mdiCameraBurst, - iconColor: 'rebeccapurple', - title: 'Auto stacking', - description: 'Auto stack burst photos', - getDateLabel: () => 'Planned for 2024', - }, ]; const milestones: Item[] = [ + withRelease({ + icon: mdiLinkEdit, + iconColor: 'crimson', + title: 'Automatic URL switching', + description: 'The mobile app now supports automatic switching between different server URLs', + release: 'v1.122.0', + }), + withRelease({ + icon: mdiMovieOpenPlayOutline, + iconColor: 'darksalmon', + title: 'Native video player', + description: 'HDR videos are now fully supported using the Immich native video player', + release: 'v1.122.0', + }), withRelease({ icon: mdiDatabaseOutline, iconColor: 'brown',