1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

Add new echonest API key

This commit is contained in:
Leo Franchi
2011-01-20 22:20:07 -05:00
parent 4baed5e31d
commit 428021eded
2 changed files with 3 additions and 2 deletions

View File

@@ -13,7 +13,6 @@ EchoNestPlugin::EchoNestPlugin(QObject *parent)
: InfoPlugin(parent)
{
qDebug() << Q_FUNC_INFO;
Config::instance()->setAPIKey("JGJCRKWLXLBZIFAZB");
QSet< InfoType > supportedTypes;
supportedTypes << Tomahawk::InfoSystem::InfoArtistBiography << Tomahawk::InfoSystem::InfoArtistFamiliarity << Tomahawk::InfoSystem::InfoArtistHotttness << Tomahawk::InfoSystem::InfoArtistTerms << Tomahawk::InfoSystem::InfoMiscTopTerms;
qobject_cast< InfoSystem* >(parent)->registerInfoTypes(this, supportedTypes);

View File

@@ -127,7 +127,9 @@ TomahawkApp::TomahawkApp( int& argc, char *argv[] )
setApplicationVersion( "1.0" ); // FIXME: last.fm "tst" auth requires 1.0 version according to docs, will change when we get our own identifier
registerMetaTypes();
setupLogfile();
Echonest::Config::instance()->setAPIKey("JRIHWEP6GPOER2QQ6");
new TomahawkSettings( this );
m_audioEngine = new AudioEngine;