changeset 1598:7de9a6897060

extended the list of grouped metadata tags
author nadvornik
date Sat, 09 May 2009 19:25:51 +0000
parents 6657e7cf446e
children b8e2690c440a
files src/metadata.c
diffstat 1 files changed, 23 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/metadata.c	Sat May 09 17:02:35 2009 +0000
+++ b/src/metadata.c	Sat May 09 19:25:51 2009 +0000
@@ -32,7 +32,29 @@
 	MK_COMMENT
 } MetadataKey;
 
-static const gchar *group_keys[] = {KEYWORD_KEY, COMMENT_KEY, NULL}; /* tags that will be written to all files in a group */
+static const gchar *group_keys[] = { /* tags that will be written to all files in a group, options->metadata.sync_grouped_files */
+	"Xmp.dc.title",
+	"Xmp.photoshop.Urgency",
+	"Xmp.photoshop.Category",
+	"Xmp.photoshop.SupplementalCategory",
+	"Xmp.dc.subject",
+	"Xmp.iptc.Location",
+	"Xmp.photoshop.Instruction",
+	"Xmp.photoshop.DateCreated",
+	"Xmp.dc.creator",
+	"Xmp.photoshop.AuthorsPosition",
+	"Xmp.photoshop.City",
+	"Xmp.photoshop.State",
+	"Xmp.iptc.CountryCode",
+	"Xmp.photoshop.Country",
+	"Xmp.photoshop.TransmissionReference",
+	"Xmp.photoshop.Headline",
+	"Xmp.photoshop.Credit",
+	"Xmp.photoshop.Source",
+	"Xmp.dc.rights",
+	"Xmp.dc.description",
+	"Xmp.photoshop.CaptionWriter",
+	NULL};
 
 static gboolean metadata_write_queue_idle_cb(gpointer data);
 static gboolean metadata_legacy_write(FileData *fd);