Photo StatLr (aka PhotoStation Upload) is a Lightroom Publish and Export Service Plugin that enables the export /publishing of photos and videos from Lr to a Synology Photo Station. It uploads the photos/videos and all required thumbnails. It can download comments and ratings and do a real two-way synch of various metadata (tags, ratings, labels).
In PSPublishSupport.lua lines 1377-1385 patterns were used for matching ratings and color labels which also match tags with a '*' or a '+' inside their name. Please correct the patterns with a start (^) and end ($) sign:
Existing patterns:
'([%*]+)'
'%+(%a+)'
Would be better:
'^([%*]+)$'
'^%+(%a+)$'
I found this error because PhotoStat LR always wanted to republished the same photos. Cause where the difference between local and remote tags, because one tag with a '+' inside its name was never recognized as a normal tag.
In PSPublishSupport.lua lines 1377-1385 patterns were used for matching ratings and color labels which also match tags with a '*' or a '+' inside their name. Please correct the patterns with a start (^) and end ($) sign:
Existing patterns:
Would be better:
I found this error because PhotoStat LR always wanted to republished the same photos. Cause where the difference between local and remote tags, because one tag with a '+' inside its name was never recognized as a normal tag.