Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hordurk committed Feb 27, 2016
1 parent 934d15f commit 03ee76b
Show file tree
Hide file tree
Showing 5 changed files with 501 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# DiveLogSync-Lightroom-Plugin
Lightroom plugin to get metadata from dive computer log files and add to the Lightroom catalog

Currently supports XML files exported from:
- Shearwater Desktop
- MacDive
25 changes: 25 additions & 0 deletions divelogsync.lrdevplugin/DiveLogMetadataDefs.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
return {
metadataFieldsForPhotos = {
{
id = 'diveNo',
title = 'Dive Number'
},
{
id = 'depth',
title = 'Depth',
},
{
id = 'waterTemp',
title = 'Water Temperature',
},
{
id = 'runTime',
title = 'Run Time',
},
{
id = 'diveSite',
title = 'Dive Site',
},
},
schemaVersion = 1,
}
Loading

0 comments on commit 03ee76b

Please sign in to comment.