Files
lightroom_plugin/photonodes.lrplugin/PhotonodesUploadServiceProvider.lua
2025-08-20 10:37:50 -06:00

28 lines
766 B
Lua

-- PhotoNodes Upload plug-in
require "PhotonodesUploadExportDialogSections"
require "PhotonodesUploadTask"
--============================================================================--
return {
hideSections = { 'exportLocation' },
allowFileFormats = nil, -- nil equates to all available formats
allowColorSpaces = nil, -- nil equates to all color spaces
exportPresetFields = {
{ key = 'client_id', default = nil; },
{ key = 'event_code', default = 'LR Photos' },
{ key = "gallery_name", default = nil },
},
startDialog = PhotonodesUploadExportDialogSections.startDialog,
sectionsForBottomOfDialog = PhotonodesUploadExportDialogSections.sectionsForBottomOfDialog,
processRenderedPhotos = PhotonodesUploadTask.processRenderedPhotos,
}