Merge lp:~typz/covergloobus/covergloobus into lp:covergloobus

Proposed by Francois Ferrand
Status: Needs review
Proposed branch: lp:~typz/covergloobus/covergloobus
Merge into: lp:covergloobus
Diff against target: 34 lines (+30/-0)
1 file modified
src/players/Lollypop.py (+30/-0)
To merge this branch: bzr merge lp:~typz/covergloobus/covergloobus
Reviewer Review Type Date Requested Status
BadChoice Approve
Review via email: mp+329356@code.launchpad.net

Description of the change

Add support for the Lollypop media player (https://gnumdk.github.io/lollypop-web/)

To post a comment you must log in.
Revision history for this message
BadChoice (guitarboy000) :
review: Approve

Unmerged revisions

382. By Francois Ferrand

Support Lollypop media player

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'src/players/Lollypop.py'
2--- src/players/Lollypop.py 1970-01-01 00:00:00 +0000
3+++ src/players/Lollypop.py 2017-08-22 09:05:53 +0000
4@@ -0,0 +1,30 @@
5+# Copyright (C) 2009-2010 Gloobus Developers
6+#
7+#This program is free software; you can redistribute it and/or
8+#modify it under the terms of the GNU General Public License
9+#as published by the Free Software Foundation; either version 2
10+#of the License, or (at your option) any later version.
11+#
12+#This program is distributed in the hope that it will be useful,
13+#but WITHOUT ANY WARRANTY; without even the implied warranty of
14+#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+#GNU General Public License for more details.
16+#
17+#You should have received a copy of the GNU General Public License
18+#along with this program; if not, write to the Free Software
19+#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20+
21+from gettext import gettext as _
22+
23+from generic.Mpris2 import Mpris2
24+
25+class Lollypop(Mpris2):
26+ """
27+ Lollypop player plugin
28+ """
29+ __title__ = 'Lollypop'
30+ __version__ = '0.1'
31+ __authors__ = 'Alexandr Grigorcea <cahr.gr@gmail.com>'
32+ __desc__ = _('Lollypop music player plugin')
33+
34+ DBUS_NAME = 'org.mpris.MediaPlayer2.Lollypop'

Subscribers

People subscribed via source and target branches