Re: [Banshee-List] "Album Artist"



If you are able to build Banshee from source code then there is a quick and
easy way to change sort order of cover arts permanently.

The sort order is fixed in the source by a SQL query string. Cover Art is
first sorted by album name and then by artist.  If you change sort order
than cover art is first sorted by artist name. I think that is what you
want...  

All you have to do is to exchange two words text in
src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseAlbumListModel.cs

----------------
           ReloadFragmentFormat = @"
                FROM CoreAlbums WHERE CoreAlbums.AlbumID IN
                        (SELECT CoreTracks.AlbumID FROM CoreTracks,
CoreCache{0}
                            WHERE CoreCache.ModelID = {1} AND
                                  CoreCache.ItemId = {2} {3})
                    ORDER BY CoreAlbums.TitleSortKey,
CoreAlbums.ArtistNameSortKey";
----------------

Swap .TitleSortKey against .ArtistNameSortKey and compile Banshee.




--
View this message in context: http://banshee-media-player.2283330.n4.nabble.com/Album-Artist-tp3489516p3490012.html
Sent from the Banshee Media Player mailing list archive at Nabble.com.


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]