From 99bb2b1d981abbe20fbc77b92b1d325082260514 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 21 Mar 2025 15:02:54 +0530 Subject: [PATCH 1/2] [docs] Add a misc FAQ page --- docs/docs/.vitepress/sidebar.ts | 1 + docs/docs/photos/faq/misc.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 docs/docs/photos/faq/misc.md diff --git a/docs/docs/.vitepress/sidebar.ts b/docs/docs/.vitepress/sidebar.ts index 7e25c3c132..d7c0c20d5d 100644 --- a/docs/docs/.vitepress/sidebar.ts +++ b/docs/docs/.vitepress/sidebar.ts @@ -142,6 +142,7 @@ export const sidebar = [ text: "Video streaming", link: "/photos/faq/video-streaming", }, + { text: "Misc", link: "/photos/faq/misc" }, ], }, { diff --git a/docs/docs/photos/faq/misc.md b/docs/docs/photos/faq/misc.md new file mode 100644 index 0000000000..11f007608c --- /dev/null +++ b/docs/docs/photos/faq/misc.md @@ -0,0 +1,22 @@ +--- +title: General FAQ +description: Unsorted frequently asked questions about Ente Photos +--- + +# Miscellaneous FAQ + +## Exif Description + +Ente will try to read as much information from Exif when the image is uploaded, +but after that, only the fields which have been parsed into Ente can be +searched. + +The app still show all the fields in the raw Exif data in the file info panel +when someone taps on the "View all Exif" option, but otherwise the app is +unaware of these fields. + +In particular, for the description associated with a photo, the exact logic to +determine the description from the Exif when uploading the image can be seen [in +this part of the +code](https://github.com/ente-io/ente/blob/0dcb185744da469848b41b668fe4b647226b6fe2/web/packages/gallery/services/exif.ts#L609-L620). + From d84bdb645b3060ea1268399af7cefe6d97231022 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 21 Mar 2025 15:04:05 +0530 Subject: [PATCH 2/2] Title --- docs/docs/photos/faq/misc.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/docs/photos/faq/misc.md b/docs/docs/photos/faq/misc.md index 11f007608c..79549c9954 100644 --- a/docs/docs/photos/faq/misc.md +++ b/docs/docs/photos/faq/misc.md @@ -1,5 +1,5 @@ --- -title: General FAQ +title: Miscellaneous general FAQ description: Unsorted frequently asked questions about Ente Photos --- @@ -16,7 +16,5 @@ when someone taps on the "View all Exif" option, but otherwise the app is unaware of these fields. In particular, for the description associated with a photo, the exact logic to -determine the description from the Exif when uploading the image can be seen [in -this part of the -code](https://github.com/ente-io/ente/blob/0dcb185744da469848b41b668fe4b647226b6fe2/web/packages/gallery/services/exif.ts#L609-L620). - +determine the description from the Exif when uploading the image can be seen +[in this part of the code](https://github.com/ente-io/ente/blob/0dcb185744da469848b41b668fe4b647226b6fe2/web/packages/gallery/services/exif.ts#L609-L620).