-
Notifications
You must be signed in to change notification settings - Fork 2
/
Info.lua
29 lines (23 loc) · 1013 Bytes
/
Info.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
--[[----------------------------------------------------------------------------
Definition of the Gallery export plugin.
Copyright (C) 2007-2009 Arnaud Mouronval <[email protected]>
Copyright (C) 2007 Moritz Post <[email protected]>
Released under the GNU GPL
-----------------------------------------------------------------------------]]--
return {
-- Lightroom SDK version
LrSdkVersion = 2.0,
LrSdkMinimumVersion = 2.0,
-- Plugin attibutes
LrPluginName = "Gallery",
LrToolkitIdentifier = "org.starway.lightroom.galleryUploader",
LrPluginInfoUrl = "http://www.starway.org/blogs/Photographie/lightroom-vers-gallery/",
LrInitPlugin = "GalleryUploadInit.lua",
LrPluginInfoProvider = "GalleryUploadInfoProvider.lua",
LrExportServiceProvider = {
title = LOC "$$$/GalleryUpload/Info/Title=Gallery",
file = "GalleryUploadServiceProvider.lua",
builtInPresetsDir = "presets"
},
VERSION = { display='2.0.0', major=2, minor=0, revision=0, build=16, }
}