mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 13:26:47 +01:00
parent
8fd5cdafd4
commit
efa24d26e6
1 changed files with 41 additions and 24 deletions
|
@ -75,12 +75,15 @@ import {
|
||||||
mdiVideo,
|
mdiVideo,
|
||||||
mdiWeb,
|
mdiWeb,
|
||||||
mdiDatabaseOutline,
|
mdiDatabaseOutline,
|
||||||
|
mdiLinkEdit,
|
||||||
|
mdiMovieOpenPlayOutline,
|
||||||
} from '@mdi/js';
|
} from '@mdi/js';
|
||||||
import Layout from '@theme/Layout';
|
import Layout from '@theme/Layout';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Item, Timeline } from '../components/timeline';
|
import { Item, Timeline } from '../components/timeline';
|
||||||
|
|
||||||
const releases = {
|
const releases = {
|
||||||
|
'v1.122.0': new Date(2024, 12, 5),
|
||||||
'v1.120.0': new Date(2024, 10, 6),
|
'v1.120.0': new Date(2024, 10, 6),
|
||||||
'v1.114.0': new Date(2024, 8, 6),
|
'v1.114.0': new Date(2024, 8, 6),
|
||||||
'v1.113.0': new Date(2024, 7, 30),
|
'v1.113.0': new Date(2024, 7, 30),
|
||||||
|
@ -180,6 +183,30 @@ const withRelease = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
const roadmap: Item[] = [
|
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,
|
done: false,
|
||||||
icon: mdiFlash,
|
icon: mdiFlash,
|
||||||
|
@ -212,33 +239,23 @@ const roadmap: Item[] = [
|
||||||
description: 'Immich goes stable',
|
description: 'Immich goes stable',
|
||||||
getDateLabel: () => 'Planned for early 2025',
|
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[] = [
|
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({
|
withRelease({
|
||||||
icon: mdiDatabaseOutline,
|
icon: mdiDatabaseOutline,
|
||||||
iconColor: 'brown',
|
iconColor: 'brown',
|
||||||
|
|
Loading…
Reference in a new issue