-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMetadataDefinition.lua
48 lines (43 loc) · 1.16 KB
/
MetadataDefinition.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
--
-- Image Processing Notes, a plugin for Adobe Lightroom
-- James J. Julian
-- jimjulian.com
-- Licensed under GNU GPLv3
--
-- file: MetadataDefinition.lua
--
return {
schemaVersion = 1, -- increment this when changing the field definitions!
metadataFieldsForPhotos = {
-- "searchable" = true, search criteria in smart collections
-- "searchable" and "browsable" = true, shows up under "Metadata" in Library's grid filter
{
id = 'jimjulian'
},
{
id='ExtProcess',
title = LOC "$$$/ExtProcess=External Process",
dataType='enum',
values = {
{
value = nil,
title = LOC "$$$/Unknown=Unknown", },
{
value = 'yes',
title = LOC "$$$/Yes=Yes", },
{
value = 'no',
title = LOC "$$$/No=No", },
},
searchable=true,
browsable=true
},
{
id='ProcessNotes',
title = LOC "$$$/ProcessNotes=Process Notes",
dataType='string',
searchable=true,
browsable=false
},
}
}