Noticed /Users/briggsr/Library/Preferences/com.logos.Logos4Indexer.plist file - wondering if plist file could be added for Logos4 Alpha preferences (e.g. Automatic Downloading)
Could use defaults command to change preference values until User Interface added:
$ defaults read com.logos.Logos4Indexer
{
finishedRemovableMediaScan = 1;
}
$ defaults write com.logos.Logos4Indexer finishedRemovableMediaScan 0
$ defaults read com.logos.Logos4Indexer
{
finishedRemovableMediaScan = 0;
}
$ defaults write com.logos.Logos4Indexer finishedRemovableMediaScan 1
$ defaults read com.logos.Logos4Indexer
{
finishedRemovableMediaScan = 1;
}
Keep Smiling