John Maguire
|
341dc7326f
|
Reformat all C++
|
2020-09-22 14:56:06 +01:00 |
John Maguire
|
3323c2d094
|
Convert all instances of foreach() to a C++11 for
find ext src -name '*.cpp' -exec \
sed -i -e 's/foreach(\([^,]\+\),/for (\1 :/' {} \;
|
2014-02-10 14:43:32 +01:00 |
John Maguire
|
bebd781fdf
|
Reformat all non-3rd-party C/C++/Objective-C++.
Command line:
find src ext -regex '.*\.\(h\|cpp\|mm\)' -exec clang-format -i
-style='{BasedOnStyle: Google, DerivePointerBinding: false}' {} \;
|
2014-02-07 16:34:20 +01:00 |
John Maguire
|
71893e4847
|
Use nullptr instead of NULL everywhere.
|
2014-02-06 17:29:59 +01:00 |
Andreas
|
916a40b16b
|
Coversearch can now be canceled.
|
2013-03-03 11:11:10 +01:00 |
John Maguire
|
606bf71208
|
Disable automatic conversions to QUrl from strings.
|
2012-09-26 17:09:13 +02:00 |
John Maguire
|
20d740f385
|
Port global search & album cover search to QSearchField and remove MacLineEdit.
|
2012-06-28 11:40:13 +02:00 |
David Sansome
|
7d9f2b7b7d
|
Use LineEdit::set_focus() instead of QWidget::setFocus() on LineEdit widgets that might be OS X search widgets
Fixes issue 2823
|
2012-03-25 21:14:39 +01:00 |
David Sansome
|
bacef04405
|
Refactoring: remove a couple of the AlbumCoverLoader instances and instead use a shared CurrentArtLoader.
|
2012-02-26 14:40:51 +00:00 |
David Sansome
|
48f15c9fc7
|
Refactoring: instead of passing individual pointers to useful core classes (like TaskManager or LibraryBackend) to each class that uses them, pass one singleton-like Application instance everywhere.
|
2012-02-26 14:40:51 +00:00 |
John Maguire
|
72198db1ba
|
Make the album cover search dialog window modal so that it acts like a sheet on Mac.
|
2011-08-27 14:50:11 +01:00 |
David Sansome
|
c366f722fb
|
Show the album cover dimensions on top of the images in the album cover search dialog.
Fixes issue 1704
|
2011-07-26 13:02:59 +01:00 |
David Sansome
|
5c90404915
|
Sort album covers by image size. Fixes issue 2048
|
2011-07-26 12:17:28 +01:00 |
David Sansome
|
7773e98ebf
|
Keep track of some statistics while searching for album covers, and show a statistics dialog at the end. Fixes issue 1921
|
2011-06-26 15:07:48 +00:00 |
David Sansome
|
dd98f8abc8
|
Make the album cover search results list scroll by pixel instead of item, and re-layout the items when any data changes
|
2011-06-26 15:06:59 +00:00 |
David Sansome
|
2ef9ab6f6e
|
Replace the KCategorizedView with a custom widget that works better.
|
2011-06-25 16:47:00 +00:00 |
David Sansome
|
bac414a630
|
Allow the artist and album to be specified separately when searching for album covers
|
2011-06-22 19:07:15 +00:00 |
David Sansome
|
c6e2981860
|
Group album cover search results by category
|
2011-06-19 23:15:29 +00:00 |
Paweł Bara
|
2b22dfaaee
|
download only large covers from google
add cover size tooltip (see issue #1704)
cover search window is now a grid and not a long list with vertical scrollbar
|
2011-04-06 15:24:56 +00:00 |
Paweł Bara
|
032b5f7e48
|
initial commit of "multiple covers providers" feature:
- simple API for cover providers (both C++ and SIP)
- a new "package" for cover related code
|
2011-04-02 13:34:06 +00:00 |
Paweł Bara
|
2fec795b89
|
fixed an error where entering the Cover Searcher dialog without query would make it show the busy indicator forever
further refactoring of album cover changes (QMenu in controller)
|
2011-01-25 23:33:27 +00:00 |
David Sansome
|
97d7fe764a
|
Download higher resolution images from last.fm. Thanks markwatkinson. Fixes issue #1187
|
2010-12-26 20:19:12 +00:00 |
David Sansome
|
2a63a746fe
|
Allow changing the cover art from the edit tag dialog
|
2010-12-20 15:46:38 +00:00 |
David Sansome
|
ed1a25693c
|
Add missing licenses to debian/copyright, and add copyright information to each source file
|
2010-11-20 13:27:10 +00:00 |
David Sansome
|
36abad486b
|
Add a dialog for manual searching of Last.fm album covers. Fixes issue #402
|
2010-06-12 17:13:01 +00:00 |