Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
QMPDClient, an Qt-based MPD client.

Håvard Tautra Knutsen
havtknut@tihlde.org
http://havtknut.tihlde.org/qmpdclient/
Main developer

Voker57
voker57@gmail.com
http://bitcheese.net/wiki/QMPDClient
Developer, qmpdclient-ne maintainer

Roman (Ky6uk) Nuritdinov
ky6uk.kun@gmail.com
http://github.com/Ky6uk/qmpdclient-ng
Developer

Marian Beermann
qmpdclient@enkore,de
Developer (Qt 5 port)
313 changes: 0 additions & 313 deletions CMakeLists.txt

This file was deleted.

1 change: 1 addition & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
(c) 2005-2008, Håvard Tautra Knutsen
(c) 2008-2009, Voker57
(c) 2009, Roman (Ky6uk) Nuritdinov
(c) 2013, Marian Beermann

This program is distributed under the terms of the GPL v2.

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
QMPDClient, an MPD client written in Qt 4.
QMPDClient, an MPD client written in Qt 5.

(c) 2005-2008, Håvard Tautra Knutsen

Expand Down
13 changes: 7 additions & 6 deletions qmpdclient.pro
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
PREFIX = /usr/local

# Most people need not muck about below here
#!contains(QT_MAJOR_VERSION, 4):error(QMPDClient requires Qt 4)
CONFIG += qt debug
# !contains(QT_MAJOR_VERSION, 4):error(QMPDClient requires Qt 4)
CONFIG += qt5 debug

# addition ldflags for release build
QMAKE_LFLAGS_RELEASE += -O2 -g0 -s

# CONFIG -= debug # Needed to avoid console on win32
TEMPLATE = app
RESOURCES = qmpdclient.qrc
VERSION = 1.2.2
VERSION = 1.3
DEFINES += NAMEVER='"\\"QMPDClient \
$$VERSION\\""'
DEFINES += VERSION='"\\"$$VERSION\\""'
INCLUDEPATH += src
QT += network xml xmlpatterns
QT += network xml xmlpatterns widgets x11extras

FORMS += ui/aboutdialog.ui \
FORMS += \
ui/addradiodialog.ui \
ui/controlpanel.ui \
ui/coverartdialog.ui \
Expand All @@ -31,7 +31,8 @@ FORMS += ui/aboutdialog.ui \
ui/preferencesdialog.ui \
ui/radiopanel.ui \
ui/shoutcastpanel.ui \
ui/lyricsdialog.ui
ui/lyricsdialog.ui \
ui/aboutdialog.ui

HEADERS += src/aafilter.h \
src/aboutdialog.h \
Expand Down
Loading