MaddTheSane / Simple-Comic

macOS comic viewer
MIT License
261 stars 23 forks source link

Add a NSUserDefaults key to disable OCR (LiveText) #79

Closed DavidPhillipOster closed 2 years ago

DavidPhillipOster commented 2 years ago

No U.I. yet, and by default OCR is enabled. To test this:

defaults write ~/Library/Containers/com.ToWatchList.SimpleComic/Data/Library/Preferences/com.ToWatchList.SimpleComic.plist  OCRDisableKey -bool TRUE

to re-enable OCR:

defaults delete ~/Library/Containers/com.ToWatchList.SimpleComic/Data/Library/Preferences/com.ToWatchList.SimpleComic.plist  OCRDisableKey

It's safe to toggle this while the app is running, but for now, you'll need to 'next page' to see the effect of the change to the preference key.

MaddTheSane commented 2 years ago

Cherry-picked the commits. For future pull requests, try to rebase.

DavidPhillipOster commented 2 years ago

Thanks for teaching me. In future, you'll get a cleaner commit history from me.