Logos Preferences - plist - Defaults ?

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
Comments
-
Many of the preferences can already be set via commands in the command bar. While writing all the prefs to a plist would be the Mac way off doing things it obviates the advantages of our cross platform strategy. App prefs are saved to a sqlite db and sync'd to the server so they are available on both platforms. We don't use plists except in rare cases where the values are only important to the platform we're running on. Windows follows a similar pattern when using the registry.
Mobile Development Team Lead
0