58 Commits

Autor SHA1 Mensagem Data
wellton f9daf039ad Support to Python 3.10
Coverart broken in python 3.10. Its is a fix.
2022-04-04 21:43:46 +00:00
fossfreedom 9425b1e1b5 pycharm autorefactor 2014-12-03 19:32:49 +00:00
fossfreedom 3a9589074f run pycharms optimize imports over the python modules in the project 2014-06-03 20:04:38 +01:00
fossfreedom a5a3d6b85c reformat code according to pycharm 2014-05-24 14:52:09 +01:00
fossfreedom eed81c45a1 complete stack conversion for artist view issue #287 2014-05-17 23:49:45 +01:00
fossfreedom 52b8588f3f add initial capability for compact vs full entry view mode - issue #289 2014-05-02 22:43:07 +01:00
fossfreedom 48c21be900 lets remember the last genre folder chosen - issue #215 2014-03-22 10:00:58 +00:00
fossfreedom f8351aadb4 lets save custom user icon info in the cache folder not the plugin folder so that it survives a reinstall - issue #215 2014-03-22 09:35:07 +00:00
fossfreedom acb6caaba0 wrong override caused failure to check lastfm plugin presence in artist view - issue #264 2014-02-15 00:29:54 +00:00
fossfreedom 87de8b9a8b check if valid lastfm connection before searching - issue #243 2014-01-05 12:25:43 +00:00
fossfreedom 6f29b47576 python3 fixes for git compiled version of RB running on saucy 2013-06-17 22:43:25 +01:00
fossfreedom 3277635a97 merge 2013-05-28 19:47:20 +01:00
Agustin Carrasco dabb80dc65 Merge branch 'order-keys'
Added support for multiple ordering on some order types (to allow a
better subordering inside each type).

closes #138
Conflicts:
	coverart_album.py
	coverart_browser_source.py
	coverart_utils.py
2013-05-22 00:46:25 -03:00
fossfreedom ae44b76a41 bug fixes for rb299 support 2013-05-20 23:02:16 +01:00
fossfreedom 6347abcd2f fixed typos 2013-04-28 22:58:40 +01:00
fossfreedom e9f16ab6b3 merge from master 2013-04-28 11:43:47 +01:00
Agustin Carrasco 0a6dc5620b utils: added a uniqyfy_and_sort function that removes duplicates and sorts an iterable 2013-04-27 16:40:01 -03:00
fossfreedom 2550d46f15 necessary changes to allow plugin to work in global install location 2013-04-24 23:06:05 +01:00
fossfreedom c868c1a44e rework specific python2 to 3 function issues - issue #179 2013-04-24 20:55:46 +01:00
fossfreedom c6099bb89d a quick 2to3 run to see what breaks when running under python2.7 - this will give a better idea of how to keep both python 2.7 and python3 compatibility - issue #179 2013-04-21 20:43:03 +01:00
fossfreedom fabe82c919 add comments to methods 2013-03-25 23:45:28 +00:00
fossfreedom d3e9961a56 revert excessive cleanup - issue #151 2013-03-25 11:03:57 +00:00
fossfreedom c8624ea86f move load icons and fix system genre lookup match - issue #151 2013-03-24 23:47:55 +00:00
fossfreedom 6e2bd1f650 tidy up genre gui - issue #151 2013-03-24 17:33:01 +00:00
fossfreedom 69c5979fb6 new genre gui and connect GUI changes with plugin controller 2013-03-21 23:24:39 +00:00
fossfreedom 0db85fe051 background code and gui for alternative genre icons 2013-03-09 07:33:57 +00:00
fossfreedom 677fb805a9 update button theme when user changes - issue #149 2013-02-23 07:48:21 +00:00
fossfreedom 594a399b0c add theme support - issue #149 2013-02-13 22:13:01 +00:00
fossfreedom 1097077104 add dimensions to sprites - issue #149 2013-02-04 14:45:13 +00:00
fossfreedom dd175bc366 fixed various issues - issue #142 2013-01-20 23:18:47 +00:00
Agustin Carrasco 75bf6d4d27 Use of search_fold on all search parameters. Fix for issue #140 2013-01-18 01:52:49 -03:00
fossfreedom 29af04bf14 remove second call to activate_markup - issue #123 2013-01-14 19:48:54 +00:00
Agustin Carrasco d5e95f08e7 Removed superfluous variable _string and tidied up the NaturalString class a little 2013-01-06 11:44:07 -03:00
fossfreedom 9078f6c778 Natural String should inherit from str - issue #124 2013-01-06 13:32:25 +00:00
fossfreedom 116fbc9a16 add natural sort - issue #124 2013-01-06 00:13:49 +00:00
Agustin Carrasco 7d439b20de Bugfix: correctly manage the AlbumModel when:
* A second sort request is made when a first one is already being processed. The implemented behavior in this commit is to cancel the previous process and initiate a new one, with the new sorting order.
* A filter is requested when the model is being sorted. Previously, this led to the model trying to set the 'show' column to albums that weren't currently in the tree model, given that they were removed to reorder them, and thus causing a lot of "invalid tree iter" assert fails. The current behavior is to check if a tree iter is valid before trying to asign the 'show' value.
2013-01-03 01:28:08 -03:00
fossfreedom 0fb8926717 minor calculation changes on spritesheet 2013-01-01 10:21:47 +00:00
fossfreedom e3b5c798fa add decade spritesheet and code - issue #120 2012-12-31 18:44:00 +00:00
Agustin Carrasco 1f9779cb1d Merge branch 'quick-search'
This introduces the quick search feature to the master branch. This feature allows the user to do a quick search by album name through the visible albums, quickly selecting the first match and allowing the user to navigate through the matches using the up and down arrow keys (close #99)
2012-12-30 20:12:31 -03:00
Agustin Carrasco 764df82454 Fixed bug on ReversedSortedCollection class' index method 2012-12-30 12:38:56 -03:00
Agustin Carrasco d75e4ff8b6 Bugfix: instead of removing and readding an item into the sorted collection, defined a reorder method which internally checks if the items needs to be reordered and return the new index in case it does (issue #119). Removed the pre-modified signal since it's no longer needed. 2012-12-29 18:26:47 -03:00
fossfreedom 7917d05fb1 remember sort order - issue #114 2012-12-19 15:41:32 +00:00
fossfreedom 00d6ef8ae5 copes with r&b which is mapped to blues - issue #109 2012-12-18 13:53:37 +00:00
fossfreedom 9d2ff14c3a add partial and alternate genre checks - issue #109 2012-12-18 00:07:48 +00:00
fossfreedom 50d0a7b682 new iconset #109 2012-12-16 23:39:48 +00:00
fossfreedom 9d7a2ad49c tidied sort and playlist images - issue #109 2012-12-16 18:35:57 +00:00
fossfreedom d556c21f5a update popups.xml with new sort and playlist sprites 2012-12-16 14:39:49 +00:00
fossfreedom f95d24fac6 merge from upstream spritesheet 2012-12-16 12:33:31 +00:00
fossfreedom 4edd210f2f convert spr to xml 2012-12-16 12:29:39 +00:00
Agustin Carrasco e7c14a93d7 Added the posibillity to indicate the icon 'size' when creating a spritesheet, this is, scalling the original icons to a new size (squared) 2012-12-15 23:29:45 -03:00