Clementine Buildbot
8eec78671f
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-01-18 10:00:51 +00:00
Arun Narayanankutty
9a7732577d
Remove unwanted lines from playlistcontainer
2016-01-16 07:06:27 -06:00
Ivan Leontiev
e5be225a39
Collapse current "AutoExpandingTreeView" branch if you press "Left" key under its root
2016-01-15 07:55:56 +03:00
Ivan Leontiev
780a34c0bc
Make "AutoExpandingTreeView" animated by default
...
This adds dropdown animation to views which are derived
from "AutoExpandingTreeView" (internet, library, global search etc.)
2016-01-15 07:55:46 +03:00
Ivan Leontiev
b85d09cd9c
Fix misbehavior when you double click after a single click on a tree item
...
This issue appeared as a side effect since the commit
bcaa9e4a37b732f91a36539e313937537be7aba2, which adds dropdown
animation to the library/internet view.
Reproduce:
Single/double click on a song item in library/internet view
then all double clicks on this item will be ignored, until you
single click on it once again.
The reason of this behavior in that the "setExpanded" method call from the
"ItemClicked" slot makes the invocation of the "mouseDoubleClickEvent"
method in the context where the view is in the "QAbstractTreeView::AnimatingState"
which makes impossible to emit "doubleClicked" signal, because it just
returns immediatelly (see http://code.qt.io/cgit/qt/qt.git/tree/src/gui/itemviews/qtreeview.cpp#n1849 ).
To get rid of this behavior we emit "doubleClicked" signal ourselves.
2016-01-15 07:55:19 +03:00
Ivan Leontiev
93aa5031c7
Fix autoscroll fail to follow the selection in "InternetView"
...
The cause of this issue was the missing call of the parent class
method in "InternetView::currentChanged".
Removed "InternetView::CurrentIndexChanged" signal along with
the "InternetView::currentChanged" method since it looks redundant,
the "InternetView::selectionModel" and its "currentChanged" signal
can be used instead, also it isn't used anywhere in the code.
Resolves : #4485
2016-01-15 07:51:15 +03:00
John Maguire
ac660dcf3d
Use a simpler arraysize() implementation.
2016-01-14 16:14:13 +00:00
John Maguire
cdb89b7f60
Remove Amazon support from Changelog for now.
...
(cherry picked from commit f103bedf5b48104e97abc81f4454738a1cdfd191)
2016-01-14 15:28:45 +00:00
John Maguire
f103bedf5b
Remove Amazon support from Changelog for now.
2016-01-14 15:28:28 +00:00
Arnaud Bienner
0972507ecc
SoundCloud: add configure action to context menu
...
(cherry picked from commit 8579cce85cfe58df0d3c511287054efa021a3120)
2016-01-14 15:18:31 +00:00
Chocobozzz
bcd769c25a
show settings dialog for difm when populate streams without a premium account
...
(cherry picked from commit ef58ce27e5dc4d1313153647a6d8a35f46d766db)
2016-01-14 15:18:03 +00:00
Arun Narayanankutty
29b8d308b3
Use icon loader for remaining icons
2016-01-14 06:10:54 -06:00
Arnaud Bienner
8579cce85c
SoundCloud: add configure action to context menu
2016-01-14 00:04:36 +01:00
David Sansome
48ff15d29c
Merge pull request #5200 from Chocobozzz/difm2
...
show settings dialog for difm when populate streams without a premium account
2016-01-14 07:10:13 +11:00
Chocobozzz
ef58ce27e5
show settings dialog for difm when populate streams without a premium account
2016-01-13 19:29:36 +01:00
Clementine Buildbot
08e6b9092a
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
...
(cherry picked from commit 3463b720c9b38d27212ba4c6fce3f9739d52e0fd)
2016-01-13 12:30:57 +00:00
Clementine Buildbot
6ef7bfb450
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
...
(cherry picked from commit 3271c06d107faecc106985b6c317195b6728ed7a)
2016-01-13 12:30:50 +00:00
Clementine Buildbot
3463b720c9
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-01-13 12:28:57 +00:00
Mattias Andersson
a6e3b2210e
Use mp4mux instead of ffmux_mp4 when transcoding to aac
...
(cherry picked from commit d9c4e0844de12c973b9d9730c59bda91a55210b4)
2016-01-12 16:16:20 +00:00
John Maguire
ce77a0acb8
Merge pull request #5204 from paperbagcorner/mp4muxer
...
Use mp4mux instead of ffmux_mp4 when transcoding to aac
2016-01-12 16:15:31 +00:00
Mattias Andersson
d9c4e0844d
Use mp4mux instead of ffmux_mp4 when transcoding to aac
2016-01-12 15:59:23 +01:00
John Maguire
c4c094aa71
Merge pull request #5193 from Chocobozzz/difm
...
Disable digitally imported for free user (premium account required)
2016-01-11 15:10:48 +00:00
Chocobozzz
3ab20defce
Disable digitally imported for free user (premium account required)
2016-01-09 16:45:10 +01:00
Andreas
cced6cfc49
Execute global search always in main thread
...
Otherwise the timer doesn't work and the invoke of the closure fails (BlockingSearchProvider::SearchAsync).
This is because Q_ARG doesn't work well with templates and "QMetaMethod::invoke: Unable to handle unregistered datatype 'Arg'" is logged.
See closure.h "void Unpack(QList<QGenericArgument>* list, const Arg& arg)" and "Closure::Call".
This change was made because global search with the network remote didn't work anymore (network remote runs in a separete thread).
(cherry picked from commit bca26078505f8034af6da7ce73f54d0aed235f10)
2016-01-09 15:53:06 +01:00
Andreas
bca2607850
Execute global search always in main thread
...
Otherwise the timer doesn't work and the invoke of the closure fails (BlockingSearchProvider::SearchAsync).
This is because Q_ARG doesn't work well with templates and "QMetaMethod::invoke: Unable to handle unregistered datatype 'Arg'" is logged.
See closure.h "void Unpack(QList<QGenericArgument>* list, const Arg& arg)" and "Closure::Call".
This change was made because global search with the network remote didn't work anymore (network remote runs in a separete thread).
2016-01-09 15:45:11 +01:00
John Maguire
f6e7b02b7a
Merge pull request #5190 from clementine-player/revert-5150-master
...
Revert "Add an option to inhibit suspend while playing"
2016-01-08 15:09:18 +00:00
John Maguire
c9b0bb2044
Revert "Add an option to inhibit suspend while playing"
2016-01-08 15:09:07 +00:00
John Maguire
dcadc98a5d
Geolocate over ssl.
...
(cherry picked from commit 70070ee0bfa3075cc8454dd6681f213f7d5f71c7)
2016-01-08 12:14:15 +00:00
John Maguire
70070ee0bf
Geolocate over ssl.
2016-01-08 12:09:13 +00:00
John Maguire
5d868573bc
Merge pull request #5153 from nicklan/savedmanager
...
Add dialog for managing saved files
2016-01-08 11:56:01 +00:00
John Maguire
d7df6263cc
Merge pull request #5171 from TheUbuntuGuy/master
...
Fix incorrect highlight colour in playlist when the window is inactive
2016-01-08 11:55:07 +00:00
John Maguire
2f7626e9d3
Merge pull request #5175 from ivan-leontiev/fix-vk-dupitems
...
Fix duplicate items under vk.com after login.
2016-01-08 11:54:38 +00:00
John Maguire
36c0e6645e
Merge pull request #5180 from santigl/master
...
Enable Enter key shortcut in file view
2016-01-08 11:54:07 +00:00
John Maguire
a9b5947fb0
Merge pull request #5150 from narunlifescience/master
...
Add an option to inhibit suspend while playing
2016-01-07 18:32:29 +00:00
John Maguire
c1a6a771a8
Disable Amazon Cloud Drive for 1.3 release.
2016-01-06 18:25:33 +00:00
Andreas
1e9288e14d
Fix transcoder settings not applied for network remote
...
The format was supplied, but the settings for the format was not applied when transcoding files for the network remote.
(cherry picked from commit ab000b1ba5492386c818a0e9d371481c8ed969b1)
2016-01-06 13:20:35 +01:00
Andreas
ab000b1ba5
Fix transcoder settings not applied for network remote
...
The format was supplied, but the settings for the format was not applied when transcoding files for the network remote.
2016-01-06 13:17:55 +01:00
Santiago Gil
3ed298a73d
Enable Enter key shortcut in file view
2016-01-04 18:17:58 -03:00
Alexander Bikadorov
ff86ecddc5
Update modified fields boldness when fetching tags
2016-01-04 18:56:28 +01:00
Alexander Bikadorov
bad9e4af5e
Fix for erasing old tag values when using tag fetcher, replacement for #51311
2016-01-04 17:13:37 +01:00
Clementine Buildbot
3271c06d10
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-01-04 10:00:40 +00:00
David Sansome
eabe451bd4
Use %{?dist} to get the rpm distro name, and remove the old Rpm.cmake
...
(cherry picked from commit 1f864f3522f9705c274014e2af98c2b25dd23e5a)
2015-12-31 16:03:04 +11:00
David Sansome
1f864f3522
Use %{?dist} to get the rpm distro name, and remove the old Rpm.cmake
2015-12-31 16:02:19 +11:00
David Sansome
6cec8e6e41
Build with -fPIC on fedora, as is now required ( https://fedoraproject.org/wiki/Changes/Harden_All_Packages )
...
(cherry picked from commit e869086530572684000921f2abec6d96aaa7df1d)
2015-12-31 13:14:36 +11:00
David Sansome
e869086530
Build with -fPIC on fedora, as is now required ( https://fedoraproject.org/wiki/Changes/Harden_All_Packages )
2015-12-31 13:07:08 +11:00
David Sansome
c54ab370ff
Set the version to 1.3.0 RC1
1.3rc1
2015-12-31 11:17:50 +11:00
David Sansome
3f8a6f9049
Update changelog for 1.3
2015-12-31 11:16:49 +11:00
David Sansome
a168b618d3
Rename "Import" to "Add directory" in the transcode dialog
2015-12-31 11:02:45 +11:00
Mark Furneaux
f90ca49340
Merge branch 'master' of https://github.com/clementine-player/Clementine
2015-12-29 12:00:30 -05:00
Clementine Buildbot
ef8787e461
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2015-12-28 10:00:38 +00:00