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
|
-- This file is part of the LrMediaWiki project and distributed under the terms
-- of the MIT license (see LICENSE.txt file in the project root directory or
-- [0]). See [1] for more information about LrMediaWiki.
--
-- Copyright (C) 2014 by the LrMediaWiki team (see CREDITS.txt file in the
-- project root directory or [2])
--
-- [0] <https://raw.githubusercontent.com/LrMediaWiki/LrMediaWiki/master/LICENSE.txt>
-- [1] <https://commons.wikimedia.org/wiki/Commons:LrMediaWiki>
-- [2] <https://raw.githubusercontent.com/LrMediaWiki/LrMediaWiki/master/CREDITS.txt>
return {
LrSdkVersion = 5.0,
LrToolkitIdentifier = 'org.ireas.lightroom.mediawiki',
LrPluginName = LOC '$$$/LrMediaWiki/PluginName=MediaWiki for Lightroom',
LrInitPlugin = 'MediaWikiInit.lua',
LrLibraryMenuItems = {
title = LOC '$$$/LrMediaWiki/Menu/Mapping=Keyword/category mapping',
file = 'MediaWikiMappingMenuItem.lua',
},
LrExportServiceProvider = {
title = LOC '$$$/LrMediaWiki/MediaWiki=MediaWiki',
file = 'MediaWikiExportServiceProvider.lua',
},
LrMetadataProvider = 'MediaWikiMetadataProvider.lua',
LrPluginInfoProvider = 'MediaWikiPluginInfoProvider.lua',
VERSION = {
major = 0,
minor = 4,
revision = 1,
},
}
|