-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.lua
More file actions
31 lines (23 loc) · 729 Bytes
/
Copy pathInfo.lua
File metadata and controls
31 lines (23 loc) · 729 Bytes
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
--
-- Image Processing Notes, a plugin for Adobe Lightroom
-- James J. Julian
-- jimjulian.com
-- Licensed under GNU GPLv3
--
-- file: info.lua
--
return {
LrSdkVersion = 6.0,
LrSdkMinimumVersion = 5.0,
LrToolkitIdentifier = "com.jimjulian.lightroom.metadata.processing",
LrPluginName = LOC "$$$/PluginName=Processing Notes",
-- Plug-in Initializer file
LrInitPlugin = 'PluginInit.lua',
-- Plug-in Metadata Definitions file
LrMetadataProvider = 'MetadataDefinition.lua',
-- Plug-in Metadata Panel file
LrMetadataTagsetFactory = 'MetadataPanel.lua',
-- Plug-in Manager Dialog file
LrPluginInfoProvider = 'PluginInfoProvider.lua',
VERSION = { major=1, minor=0, revision=0, build=1, }
}