# HG changeset patch # User nadvornik # Date 1241897151 0 # Node ID e02bf864fcdc04b7e053d306c170852fa20981cb # Parent cc74cb8bbe3f4060563068b8f291c3ada22d1082 extended the list of grouped metadata tags diff -r cc74cb8bbe3f -r e02bf864fcdc src/metadata.c --- 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);