mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
docs: hidden files cursed knowledge (#12929)
This commit is contained in:
parent
35e03c1d6f
commit
1ef2834603
1 changed files with 13 additions and 0 deletions
|
@ -6,6 +6,7 @@ import {
|
||||||
mdiLeadPencil,
|
mdiLeadPencil,
|
||||||
mdiLockOff,
|
mdiLockOff,
|
||||||
mdiLockOutline,
|
mdiLockOutline,
|
||||||
|
mdiMicrosoftWindows,
|
||||||
mdiSecurity,
|
mdiSecurity,
|
||||||
mdiSpeedometerSlow,
|
mdiSpeedometerSlow,
|
||||||
mdiTrashCan,
|
mdiTrashCan,
|
||||||
|
@ -21,6 +22,18 @@ const withLanguage = (date: Date) => (language: string) => date.toLocaleDateStri
|
||||||
type Item = Omit<TimelineItem, 'done' | 'getDateLabel'> & { date: Date };
|
type Item = Omit<TimelineItem, 'done' | 'getDateLabel'> & { date: Date };
|
||||||
|
|
||||||
const items: Item[] = [
|
const items: Item[] = [
|
||||||
|
{
|
||||||
|
icon: mdiMicrosoftWindows,
|
||||||
|
iconColor: '#357EC7',
|
||||||
|
title: 'Hidden files in Windows are cursed',
|
||||||
|
description:
|
||||||
|
'Hidden files in Windows cannot be opened with the "w" flag. That, combined with SMB option "hide dot files" leads to a lot of confusion.',
|
||||||
|
link: {
|
||||||
|
url: 'https://github.com/immich-app/immich/pull/12812',
|
||||||
|
text: '#12812',
|
||||||
|
},
|
||||||
|
date: new Date(2024, 8, 20),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: mdiWrap,
|
icon: mdiWrap,
|
||||||
iconColor: 'gray',
|
iconColor: 'gray',
|
||||||
|
|
Loading…
Reference in a new issue