I am very glad you were able to find DVDpedia and are enjoying it. We rely heavily on word of mouth and lost web surfers that stumble upon our great program.
It's so uncommon to include the articles in the sorting that there is no automatic way to turn it off. You must use the sort title field. However, by accessing the SQL database directly you can make adding "The" for a large database to the sort title painless.
Quit DVDpedia
Backup your database file in ~/Library/Application Support/DVDpedia/Database.pediadata by making a copy.
Run Terminal and enter the following commands to add titles with "The" to the sort title field.
Code: Select all
sqlite3 ~/Library/Application\ Support/DVDpedia/Database.pediadata
update zEntry set zSortTitle = zTitle where ztitle like "The %";
.exit
Launch DVDpedia and sort the title column. There is no need to display the sort title but it must be turned on (checked) in the preferences under the fields tab. If you would like to do the same for "An" and "A" change the end of the middle line above and run those commands as well.
Thank you for the feedback and now that DVDpedia is so blazing fast will look at making article sorting a preference (it's hardcoded from many years ago for speed and minimalist UI reasons).