summaryrefslogtreecommitdiffstats
path: root/indexerwidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Don't consider "<artist> feat. <anotherartist>" differentArno2018-02-171-0/+4
| | | | | | | Check if the artist's name contains " feat." If so, cut it off right there to not clutter the artist's view with "bla feat. blub" and just one song. It's a simple string compare, relying on beet and Musicbrainz doing the right thing (tm) :)
* Get rid of Q_FOREACH in indexerwidget.cppArno2017-12-311-2/+2
|
* Improve indexing dialogArno2017-11-301-1/+3
| | | | | Show close button and disable/enable approriate buttons while reading data.
* Implemented scan dirArno2017-11-301-12/+33
| | | | | Filled the scan dir option with life. Now it actually does something, and much quicker than beet ls!
* Fix date addedArno2017-08-261-2/+2
| | | | | | | | | Hmm, you never stop learning. Not so obviously we want the st_mtime instead of st_ctime from struct stat, because we're intrested in the *data* modification time, not the metadata modification time... For more info, see https://stackoverflow.com/questions/3385203/regarding- access-time-unix
* Add creation date of directory to dbArno2017-05-021-3/+8
| | | | | This is in preparation for a new view to show albums in the order they were added.
* Change to new style connect syntaxArno2017-03-241-3/+3
| | | | | | | | Quite some code churn, but I like the idea that wrong connections are compile time errors. Since I had to get rid of default arguments in Slots, this simplified things in doPopulateByFolder...
* Implement statusBarArno2017-03-051-3/+7
| | | | | | | | Display in statusBar: * viewMode * number of files in playlist * length of playlist in h:m:s * player status (Stopped, Playing, Paused)
* Turned IndexerWidget into a dialogArno2017-02-261-36/+50
| | | | and got rid of the TabWidget!
* Artwork and GUI modificationsArno2017-02-261-20/+0
| | | | | | | | Added the necessary QActions. Except the ConfigAction they don't do anything yet, but they have nice icons :) I got rid of the menuBar(tm) and added a QToolBar to the center widget instead.
* Fix IndexerArno2017-02-251-10/+11
| | | | | | Well, as it turns out, an artist is not married to an album, but to a song, and so is the genre. Adjust the database layout, indexer and view accordingly.
* Added Menus and GlobalsArno2017-02-191-0/+22
|
* Make IndexerWidget do somethingArno2017-02-191-4/+135
| | | | Well, actually index files!
* First version of IndexerWidgetArno2017-02-181-0/+94
List metadata of files, nothing else...