From 1529b67e418b2ed287c238dc6e184af170c95690 Mon Sep 17 00:00:00 2001 From: Matthew Momjian <50788000+mmomjian@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:52:32 -0400 Subject: [PATCH] docs: add Immich Folder Album Creator (#8666) Update community-projects.tsx --- docs/src/components/community-projects.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/src/components/community-projects.tsx b/docs/src/components/community-projects.tsx index 7258f16b88..29bf2e544c 100644 --- a/docs/src/components/community-projects.tsx +++ b/docs/src/components/community-projects.tsx @@ -20,14 +20,19 @@ const projects: CommunityProjectProps[] = [ }, { title: 'API Album Sync', - description: 'A python script to sync folders as albums.', + description: 'A Python script to sync folders as albums.', url: 'https://git.orenit.solutions/open/immichalbumpull', }, { title: 'Remove offline files', - description: 'A python script to remove offline files.', + description: 'A Python script to remove offline files.', url: 'https://gist.github.com/Thoroslives/ca5d8e1efd15111febc1e7b34ac72668', }, + { + title: 'Create albums from folders', + description: 'A Python script to create albums based on the folder structure of an external library.', + url: 'https://github.com/Salvoxia/immich-folder-album-creator', + }, ]; function CommunityProject({ title, description, url }: CommunityProjectProps): JSX.Element {