-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
501 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} |
Oops, something went wrong.