-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.lua
More file actions
64 lines (55 loc) · 1.96 KB
/
Copy pathInfo.lua
File metadata and controls
64 lines (55 loc) · 1.96 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
--[[----------------------------------------------------------------------------
Info.lua
Film Preview Plugin for Adobe Lightroom Classic
Plugin manifest file that defines:
- SDK version compatibility
- Plugin metadata (name, version, identifier)
- Menu items and their locations
--------------------------------------------------------------------------------]]
return {
-- Plugin version
VERSION = {
major = 1,
minor = 4,
revision = 0,
},
-- SDK version - using 10.0 for maximum compatibility
-- This should work with Lightroom Classic 9.0 and newer
LrSdkVersion = 10.0,
LrSdkMinimumVersion = 6.0,
-- Unique identifier (must be globally unique)
LrToolkitIdentifier = 'com.freshframes.lrplugin',
-- Plugin name (appears in Plugin Manager)
LrPluginName = 'Fresh Frames',
-- Optional info URL
LrPluginInfoUrl = '',
-- Plugin info provider for settings UI in Plugin Manager
LrPluginInfoProvider = 'PluginInfoProvider.lua',
-- Menu item in Library module (Library > Plug-in Extras)
-- This is where it SHOULD appear based on our use case
LrLibraryMenuItems = {
{
title = 'Create Preview Collection from Folder',
file = 'FreshFramesMain.lua',
-- Removed enabledWhen to always show the menu item
-- The plugin itself will check if conditions are right
},
{
title = 'Show Log File Location...',
file = 'ShowLogLocation.lua',
},
},
-- ALSO add to File > Plug-in Extras menu for troubleshooting
-- If you see the menu here but not in Library menu, we know
-- there's something specific about LrLibraryMenuItems
LrExportMenuItems = {
{
title = 'Create Preview Collection from Folder (File Menu)',
file = 'FreshFramesMain.lua',
},
{
title = 'Show Log File Location...',
file = 'ShowLogLocation.lua',
},
},
}