Ivan Leontiev
9afd71c651
Fix pressing "Backspace" key on a playlist results in appending "^H" character to the filter
2016-03-25 03:45:33 +03:00
Clementine Buildbot
23c0fe9f12
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-03-23 16:52:38 +00:00
John Maguire
f482612127
Merge pull request #5306 from tronsgaard/master
...
"Stop after current" as command-line option
2016-03-18 19:40:45 +00:00
René Tronsgaard Rasmussen
129bf80830
Add option "Stop after this track" to the Unity launcher icon.
2016-03-18 20:22:13 +01:00
René Tronsgaard Rasmussen
8e70046e4b
Add -q,--stop-after-current commandline flag
2016-03-18 20:21:34 +01:00
David Guillen Fandos
10bac1cd2d
Fixing issues in the pull request.
2016-03-12 19:44:32 +00:00
John Maguire
25326b4f4a
Merge pull request #5294 from pavelvat/fix_mxe_linking
...
Fix mxe linking
2016-03-12 15:42:18 +00:00
Pavel Vatagin
b2db55e772
fix "undefined reference to" for clementine when build in MXE
2016-03-12 18:14:40 +03:00
Pavel Vatagin
2792bce486
fixed "undefined reference to" for clementine-tagreader when build in MXE
2016-03-12 18:10:32 +03:00
Andreas
d7b2af3378
Add a template for issues
2016-03-11 15:49:26 +01:00
Victor Dodon
91c144478b
mpris2: emit CanSeek notification in EngineStateChanged
...
When the engine status is Playing must emit the notification CanSeek
2016-03-10 21:29:09 +00:00
Victor Dodon
5b066991ab
playlist: call InformOfCurrentSongChange only after updating the virtual index
...
Calling InformOfCurrentSongChange before updating the virtual index results in
sending the CanGoNext and CanGoPrevious notifications with the wrong values.
2016-03-10 21:20:53 +00:00
Victor Dodon
5f14e887a7
mpris2: more notifications in RepeatModeChanged
...
Emit CanGoNext, CanGoPrevious notifications in RepeatModeChanged
2016-03-10 21:20:17 +00:00
Victor Dodon
3cf6cdb925
mpris2: more notifications in CurrentSongChanged
...
Emit CanGoNext, CanGoPrevious, CanSeek notifications in CurrentSongChanged
2016-03-10 21:14:31 +00:00
Victor Dodon
c973c446e3
mpris2: add support for CanGoNext, CanGoPrevious, CanSeek
2016-03-10 21:11:05 +00:00
John Maguire
623293f4be
Merge pull request #5265 from Ede123/playlist_icons
...
Make repeat/shuffle icons a bit darker
2016-03-10 12:04:24 +00:00
John Maguire
b33e2e9c3a
Merge pull request #5287 from JulianVolodia/devel
...
Require Qt4.8.1 and CMake deprecate warnings ...
2016-03-09 17:54:37 +00:00
JulianVolodia
e1124403fd
Require Qt4.8.1 and CMake deprecate warnings ...
...
... "com.trolltech.*" changed to "org.qtproject"
2016-03-09 18:26:43 +01:00
Santi
ed7375d7da
Add dummy bands to equalizer ( Fixes #695 )
2016-03-08 15:26:45 -03:00
Clementine Buildbot
e2fbb8e966
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-03-07 10:00:42 +00:00
Clementine Buildbot
357af2263b
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-02-29 10:00:41 +00:00
David Guillen Fandos
e4efde900a
Adding support for subsonic cover art download
2016-02-26 23:29:13 +00:00
Pander
1496d581cd
Changed HTTPS to HTTP for Intergalactic FM
2016-02-25 17:37:45 +01:00
Clementine Buildbot
e7654d41a2
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
...
(cherry picked from commit 9252925a563b18b6e2158a7146feaa5963879543)
2016-02-22 18:36:54 +00:00
Clementine Buildbot
9252925a56
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-02-22 10:00:42 +00:00
Eduard Braun
3ce3dd884e
Make repeat/shuffle icons a bit darker
...
With the previous icons there was almost no difference between enabled/disabled states in the UI
2016-02-21 03:27:17 +01:00
Simon Marchi
89e3d9851e
moodbar: check QSlider max/min before using them in division
...
When switching playback from an item for which the moodbar is not
displayed (e.g. an internet stream), to an item for which it is
displayed (e.g. a local mp3 file), Clementine sometimes crashes.
This happens because the slider_opt->maximum and slider_opt->minimum
have the value 0 (their default value), and the difference is used as a
divisor. This gives a division by 0, and a SIGFPE.
This problem has been fixed in commit af42cce. However, when a9f9b0e
reverted 3f79fa5, a little to much was reverted and we lost what af42cce
did. This patch re-introduces the fix.
Fixes #5261
moodbar: Add comment
(cherry picked from commit 725e1d8f0d91f4d9308473e65ef0a142efc47d4e)
2016-02-18 14:25:48 +00:00
John Maguire
51c1c36934
Merge pull request #5263 from simark/fix-moodbar-crash
...
moodbar: check QSlider max/min before using them in division
2016-02-18 14:17:58 +00:00
Simon Marchi
725e1d8f0d
moodbar: check QSlider max/min before using them in division
...
When switching playback from an item for which the moodbar is not
displayed (e.g. an internet stream), to an item for which it is
displayed (e.g. a local mp3 file), Clementine sometimes crashes.
This happens because the slider_opt->maximum and slider_opt->minimum
have the value 0 (their default value), and the difference is used as a
divisor. This gives a division by 0, and a SIGFPE.
This problem has been fixed in commit af42cce. However, when a9f9b0e
reverted 3f79fa5, a little to much was reverted and we lost what af42cce
did. This patch re-introduces the fix.
Fixes #5261
moodbar: Add comment
2016-02-18 09:15:44 -05:00
John Maguire
8d2911bc32
Cope with receiving no images from spotify
...
(cherry picked from commit 4cd20ffdaa7cd5aa5a780d3bdca682d453caf7f6)
2016-02-17 18:07:20 +00:00
John Maguire
4cd20ffdaa
Cope with receiving no images from spotify
2016-02-17 18:06:30 +00:00
John Maguire
2219f88484
Too clever for old GCC versions.
...
(cherry picked from commit 52c72f95ba9d8939d22db67d8e9f938f2e774bec)
2016-02-17 16:42:30 +00:00
John Maguire
52c72f95ba
Too clever for old GCC versions.
2016-02-17 16:42:03 +00:00
John Maguire
d2e6282235
Clementine 1.3RC2
2016-02-17 16:38:19 +00:00
John Maguire
99b07fd707
Fetch artist images from spotify.
...
(cherry picked from commit 1304f8898eeedfaf434d81f1bf54105ce496d767)
2016-02-17 16:17:51 +00:00
John Maguire
4bba0fda09
Blacklist artist images from echonest using dead last.fm server.
...
(cherry picked from commit 5b4c0c920c98ab105146ed7b78218582c3624957)
2016-02-17 16:17:46 +00:00
John Maguire
42c21f0d03
Make image requests follow redirects
...
(cherry picked from commit a80e241bbe2d51e3e01641c53758a37d3909fa81)
2016-02-17 16:17:40 +00:00
John Maguire
1304f8898e
Fetch artist images from spotify.
2016-02-17 15:55:37 +00:00
John Maguire
5b4c0c920c
Blacklist artist images from echonest using dead last.fm server.
2016-02-17 15:55:37 +00:00
John Maguire
a80e241bbe
Make image requests follow redirects
2016-02-17 15:55:32 +00:00
Clementine Buildbot
01a4387ac4
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
...
(cherry picked from commit b3d5cabdc142a894d635a57a321307b008ab2b69)
2016-02-17 13:32:05 +00:00
John Maguire
b0322e7e7d
Cleanup ApplicationImpl
2016-02-15 17:41:39 +00:00
John Maguire
20bfade965
Hide Application classes behind pimpl.
...
This should also fix the build on windows where gcc gets confused as
libmygpo declares DELETE as part of an enum and mingw #defines DELETE in
winnt.h
2016-02-15 17:39:50 +00:00
Clementine Buildbot
b3d5cabdc1
Automatic merge of translations from Transifex ( https://www.transifex.com/projects/p/clementine/resource/clementineplayer )
2016-02-15 10:00:41 +00:00
Santiago Gil
ad62c7476d
Merge pull request #7 from clementine-player/master
...
Update
2016-02-14 02:01:41 -03:00
John Maguire
affb215a52
Move cover providers initialisation later in startup.
2016-02-12 16:25:01 +00:00
John Maguire
dcdd81d69f
Moar Lazy migrations
2016-02-12 16:10:56 +00:00
John Maguire
b99b090adc
Refactor simple dialogs to use Lazy
2016-02-12 16:01:35 +00:00
John Maguire
74e6a1744f
Convert edit tag & settings dialog to Lazy.
2016-02-12 15:56:08 +00:00
John Maguire
589f2ff62e
Lazy initialise organise dialog
2016-02-12 12:25:35 +00:00