diff options
author | Arno <arno@disconnect.de> | 2017-07-06 10:33:13 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2017-07-06 10:33:13 +0200 |
commit | dbc19ad71cbac5166aa0b82c97b726b464f4fdca (patch) | |
tree | 11b6de922f37b830eba36a9961b4deaefd68668c /BeetPlayer.pro | |
parent | f9771c52ff6b350c29db70216b79bb4f60081763 (diff) | |
download | BeetPlayer-dbc19ad71cbac5166aa0b82c97b726b464f4fdca.tar.gz BeetPlayer-dbc19ad71cbac5166aa0b82c97b726b464f4fdca.tar.bz2 BeetPlayer-dbc19ad71cbac5166aa0b82c97b726b464f4fdca.zip |
Implemented MusicBrainz lookup
Wow, what a convoluted api, to say the least...
They have documentation, which is good, but the query syntax definitely
needs more explaining, foremost how to encode non-ASCII characters and
names with whitspaces...
Well, it kinda works, but the Other Albums sections can be waaaaay
off...
Diffstat (limited to 'BeetPlayer.pro')
-rw-r--r-- | BeetPlayer.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/BeetPlayer.pro b/BeetPlayer.pro index 0598033..0af8894 100644 --- a/BeetPlayer.pro +++ b/BeetPlayer.pro @@ -4,7 +4,7 @@ # #------------------------------------------------- -QT += core gui multimedia sql +QT += core gui multimedia sql network QT += KGlobalAccel KWindowSystem greaterThan(QT_MAJOR_VERSION, 4): QT += widgets @@ -32,7 +32,8 @@ SOURCES += main.cpp\ playerwidget.cpp \ beetview.cpp \ indexerdialog.cpp \ - helper.cpp + helper.cpp \ + webdownloader.cpp HEADERS += beetplayer.h \ configurationdialog.h \ @@ -41,7 +42,8 @@ HEADERS += beetplayer.h \ playerwidget.h \ beetview.h \ indexerdialog.h \ - helper.h + helper.h \ + webdownloader.h LIBS += -ltag |