mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-01 01:00:03 +01:00
289 lines
11 KiB
Diff
289 lines
11 KiB
Diff
diff -Naur last.fm-1.5.1.31879.orig/LastFM.pro last.fm-1.5.1.31879/LastFM.pro
|
|
--- last.fm-1.5.1.31879.orig/LastFM.pro 2008-06-18 11:46:57.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/LastFM.pro 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -39,6 +39,8 @@
|
|
|
|
linux* {
|
|
SUBDIRS -= src/Twiddly \
|
|
+ src/libFingerprint/fplib/pro_qmake/fplib.pro \
|
|
+ src/libFingerprint/ \
|
|
src/Bootstrapper/ITunesDevice
|
|
|
|
SUBDIRS += src/output/alsa-playback \
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/DiagnosticsDialog.cpp last.fm-1.5.1.31879/src/DiagnosticsDialog.cpp
|
|
--- last.fm-1.5.1.31879.orig/src/DiagnosticsDialog.cpp 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/DiagnosticsDialog.cpp 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -27,7 +27,10 @@
|
|
#include "container.h"
|
|
#include "lastfmapplication.h"
|
|
#include "libMoose/LastFmSettings.h"
|
|
+
|
|
+#ifndef LINUX
|
|
#include "libFingerprint/FingerprintCollector.h"
|
|
+#endif
|
|
|
|
#include <QProcess>
|
|
#include <QClipboard>
|
|
@@ -106,6 +109,7 @@
|
|
connect( ui.scrobbleIpodButton, SIGNAL( clicked() ), SLOT( onScrobbleIpodClicked() ) );
|
|
|
|
// Fingerprint collector
|
|
+#ifndef LINUX
|
|
ui.fpQueueSizeLabel->setText( "0" );
|
|
connect( The::app().m_fpCollector, SIGNAL( trackFingerprintingStarted( TrackInfo ) ),
|
|
this, SLOT( onTrackFingerprintingStarted( TrackInfo ) ),
|
|
@@ -116,6 +120,9 @@
|
|
connect( The::app().m_fpCollector, SIGNAL( cantFingerprintTrack( TrackInfo, QString ) ),
|
|
this, SLOT( onCantFingerprintTrack( TrackInfo, QString ) ),
|
|
Qt::QueuedConnection );
|
|
+#else
|
|
+ ui.tabWidget->removeTab( 2 );
|
|
+#endif
|
|
|
|
m_logTimer = new QTimer( this );
|
|
connect( m_logTimer, SIGNAL( timeout() ),
|
|
@@ -336,6 +343,7 @@
|
|
}
|
|
|
|
|
|
+#ifndef LINUX
|
|
void
|
|
DiagnosticsDialog::onTrackFingerprintingStarted( TrackInfo track )
|
|
{
|
|
@@ -360,7 +368,7 @@
|
|
ui.fpCurrentTrackLabel->setText( "" );
|
|
ui.fpQueueSizeLabel->setText( QString::number( The::app().m_fpCollector->queueSize() ) );
|
|
}
|
|
-
|
|
+#endif
|
|
|
|
void
|
|
DiagnosticsDialog::onLogPoll()
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/DiagnosticsDialog.h last.fm-1.5.1.31879/src/DiagnosticsDialog.h
|
|
--- last.fm-1.5.1.31879.orig/src/DiagnosticsDialog.h 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/DiagnosticsDialog.h 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -63,9 +63,11 @@
|
|
void onRefresh();
|
|
void onCopyToClipboard();
|
|
|
|
+ #ifndef LINUX
|
|
void onTrackFingerprintingStarted( TrackInfo );
|
|
void onTrackFingerprinted( TrackInfo );
|
|
void onCantFingerprintTrack( TrackInfo track, QString reason );
|
|
+ #endif
|
|
|
|
void onScrobbleIpodClicked();
|
|
void onLogPoll();
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/Radio.cpp last.fm-1.5.1.31879/src/Radio.cpp
|
|
--- last.fm-1.5.1.31879.orig/src/Radio.cpp 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/Radio.cpp 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -129,7 +129,9 @@
|
|
m_session = handshake->session();
|
|
m_basePath = handshake->basePath();
|
|
|
|
+ #ifndef LINUX
|
|
The::settings().setFingerprintUploadUrl( handshake->fingerprintUploadUrl() );
|
|
+ #endif
|
|
|
|
setState( State_Handshaken );
|
|
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/configwizard.cpp last.fm-1.5.1.31879/src/configwizard.cpp
|
|
--- last.fm-1.5.1.31879.orig/src/configwizard.cpp 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/configwizard.cpp 2009-03-27 19:51:39.000000000 +0000
|
|
@@ -750,7 +750,7 @@
|
|
|
|
nextButtonClicked();
|
|
#else
|
|
- m_pageOffset += 7;
|
|
+ m_pageOffset += 8;
|
|
BaseWizard::nextButtonClicked();
|
|
#endif
|
|
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/lastfmapplication.cpp last.fm-1.5.1.31879/src/lastfmapplication.cpp
|
|
--- last.fm-1.5.1.31879.orig/src/lastfmapplication.cpp 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/lastfmapplication.cpp 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -26,8 +26,10 @@
|
|
#include "confirmdialog.h"
|
|
#include "container.h"
|
|
#include "LastMessageBox.h"
|
|
+#ifndef LINUX
|
|
#include "libFingerprint/FingerprintCollector.h"
|
|
#include "libFingerprint/FingerprintQueryer.h"
|
|
+#endif
|
|
#include "logger.h"
|
|
#include "loginwidget.h"
|
|
#include "MediaDeviceScrobbler.h"
|
|
@@ -167,10 +169,12 @@
|
|
new ITunesScript( this, m_listener );
|
|
#endif
|
|
|
|
+ #ifndef LINUX
|
|
m_fpCollector = new FingerprintCollector( 1 /*number of threads*/, this );
|
|
m_fpQueryer = new FingerprintQueryer( this );
|
|
connect( m_fpQueryer, SIGNAL( trackFingerprinted( TrackInfo, bool ) ),
|
|
SLOT( onFingerprintQueryDone( TrackInfo, bool ) ) );
|
|
+ #endif
|
|
|
|
m_radio = new Radio( this );
|
|
connect( m_radio, SIGNAL( stateChanged( RadioState ) ), SLOT( onRadioStateChanged( RadioState ) ) );
|
|
@@ -365,8 +369,10 @@
|
|
sendPostedEvents( m_scrobbler, 0 /*all event types*/ );
|
|
//TODO send events to individual scrobblers in the manager too?
|
|
|
|
+ #ifndef LINUX
|
|
delete m_fpQueryer;
|
|
delete m_fpCollector;
|
|
+ #endif
|
|
|
|
#ifdef Q_WS_MAC
|
|
if ( !m_pidFile.remove() )
|
|
@@ -534,6 +540,7 @@
|
|
QString password = m_user->settings().password();
|
|
QString version = The::settings().version();
|
|
|
|
+ #ifndef LINUX
|
|
// as you can see we are initialising the fingerprinter, I like this comment
|
|
m_fpCollector->setUsername( username );
|
|
m_fpCollector->setPasswordMd5( password );
|
|
@@ -542,6 +549,7 @@
|
|
m_fpQueryer->setPasswordMd5( password );
|
|
m_fpQueryer->setPasswordMd5Lower( password ); // FIXME: surely they can't be the same!
|
|
m_fpQueryer->setVersion( The::settings().version() );
|
|
+ #endif
|
|
|
|
// init radio YTIO
|
|
m_radio->init( username, password, version );
|
|
@@ -849,12 +857,14 @@
|
|
if ( m_container->isVisible() )
|
|
fetchMetaData();
|
|
|
|
+ #ifndef LINUX
|
|
if ( QFile::exists( m_currentTrack.path() ) &&
|
|
The::settings().currentUser().fingerprintingEnabled() )
|
|
{
|
|
m_activeNorman = 0;
|
|
m_fpQueryer->fingerprint( m_currentTrack );
|
|
}
|
|
+ #endif
|
|
}
|
|
}
|
|
break;
|
|
@@ -1167,6 +1177,7 @@
|
|
}
|
|
|
|
|
|
+#ifndef LINUX
|
|
void
|
|
LastFmApplication::onFingerprintQueryDone( TrackInfo track, bool fullFpRequested )
|
|
{
|
|
@@ -1199,6 +1210,7 @@
|
|
}
|
|
}
|
|
}
|
|
+#endif
|
|
|
|
|
|
void
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/lastfmapplication.h last.fm-1.5.1.31879/src/lastfmapplication.h
|
|
--- last.fm-1.5.1.31879.orig/src/lastfmapplication.h 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/lastfmapplication.h 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -181,7 +181,9 @@
|
|
void onAppEvent( int event, const QVariant& );
|
|
void onRequestReturned( class Request* request );
|
|
void onScrobblerStatusUpdate( int, const QVariant& );
|
|
+#ifndef LINUX
|
|
void onFingerprintQueryDone( TrackInfo, bool fullFpRequested );
|
|
+#endif
|
|
void onNormanRequestDone( Request* r );
|
|
void onPlaybackEndedTimerTimeout();
|
|
|
|
@@ -208,8 +210,10 @@
|
|
class QTcpServer* m_control;
|
|
class ScrobblerManager* m_scrobbler;
|
|
class Radio* m_radio;
|
|
+#ifndef LINUX
|
|
class FingerprintCollector* m_fpCollector;
|
|
class FingerprintQueryer* m_fpQueryer;
|
|
+#endif
|
|
class FrikkinNormanRequest* m_activeNorman;
|
|
|
|
QPointer<class ArtistMetaDataRequest> m_activeArtistReq;
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/settingsdialog.cpp last.fm-1.5.1.31879/src/settingsdialog.cpp
|
|
--- last.fm-1.5.1.31879.orig/src/settingsdialog.cpp 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/settingsdialog.cpp 2009-03-27 19:57:29.000000000 +0000
|
|
@@ -92,6 +92,8 @@
|
|
ui_mediadevices.setupUi( mediadeviceWidget );
|
|
ui_mediadevices.deviceWidget->header()->setResizeMode( QHeaderView::ResizeToContents );
|
|
ui.pageStack->addWidget( mediadeviceWidget );
|
|
+#else
|
|
+ ui_scrobbling.groupBox->hide();
|
|
#endif
|
|
|
|
// Add icons to user icon dropdown
|
|
@@ -210,7 +212,11 @@
|
|
connect( ui_scrobbling.dirTree, SIGNAL( dataChanged() ), this, SLOT( configChanged() ) );
|
|
connect( ui_scrobbling.scrobblePointSlider, SIGNAL( valueChanged( int ) ), this, SLOT( configChanged() ) );
|
|
connect( ui_scrobbling.launchWithMediaPlayerCheck, SIGNAL( toggled( bool ) ), this, SLOT( configChanged() ) );
|
|
+#ifndef LINUX
|
|
connect( ui_scrobbling.fingerprintCheckBox, SIGNAL( stateChanged( int ) ), this, SLOT( configChanged() ) );
|
|
+#else
|
|
+ ui_scrobbling.fingerprintCheckBox->hide();
|
|
+#endif
|
|
connect( ui_connection.proxyBox, SIGNAL( toggled( bool ) ), this, SLOT( configChanged() ) );
|
|
connect( ui_connection.proxyHostEdit, SIGNAL( textChanged( QString ) ), this, SLOT( configChanged() ) );
|
|
connect( ui_connection.proxyPortEdit, SIGNAL( textChanged( QString ) ), this, SLOT( configChanged() ) );
|
|
@@ -379,7 +385,9 @@
|
|
ui_scrobbling.scrobblePointSlider->setValue( user.scrobblePoint() );
|
|
ui_scrobbling.scrobblePointLabel->setText( QString::number( user.scrobblePoint() ) );
|
|
ui_scrobbling.launchWithMediaPlayerCheck->setChecked( The::settings().launchWithMediaPlayer() );
|
|
+#ifndef LINUX
|
|
ui_scrobbling.fingerprintCheckBox->setChecked( user.fingerprintingEnabled() );
|
|
+#endif
|
|
ui_scrobbling.dirTree->setExclusions( user.excludedDirs() );
|
|
}
|
|
|
|
@@ -567,7 +575,9 @@
|
|
user.setScrobblePoint( ui_scrobbling.scrobblePointSlider->value() );
|
|
user.setExcludedDirs( ui_scrobbling.dirTree->getExclusions() );
|
|
The::settings().setLaunchWithMediaPlayer( ui_scrobbling.launchWithMediaPlayerCheck->isChecked() );
|
|
+#ifndef LINUX
|
|
user.setFingerprintingEnabled( ui_scrobbling.fingerprintCheckBox->checkState() == Qt::Checked ? true : false );
|
|
+#endif
|
|
|
|
pageSaved( 2 );
|
|
}
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/settingsdialog_scrobbling.ui last.fm-1.5.1.31879/src/settingsdialog_scrobbling.ui
|
|
--- last.fm-1.5.1.31879.orig/src/settingsdialog_scrobbling.ui 2008-06-18 11:46:56.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/settingsdialog_scrobbling.ui 2009-03-27 19:57:29.000000000 +0000
|
|
@@ -175,6 +175,19 @@
|
|
</layout>
|
|
</widget>
|
|
</item>
|
|
+ <item>
|
|
+ <spacer>
|
|
+ <property name="orientation" >
|
|
+ <enum>Qt::Vertical</enum>
|
|
+ </property>
|
|
+ <property name="sizeHint" >
|
|
+ <size>
|
|
+ <width>20</width>
|
|
+ <height>0</height>
|
|
+ </size>
|
|
+ </property>
|
|
+ </spacer>
|
|
+ </item>
|
|
</layout>
|
|
</widget>
|
|
<customwidgets>
|
|
diff -Naur last.fm-1.5.1.31879.orig/src/src.pro last.fm-1.5.1.31879/src/src.pro
|
|
--- last.fm-1.5.1.31879.orig/src/src.pro 2008-06-18 11:46:55.000000000 +0000
|
|
+++ last.fm-1.5.1.31879/src/src.pro 2009-03-27 19:50:51.000000000 +0000
|
|
@@ -217,6 +217,8 @@
|
|
|
|
SOURCES -= Bootstrapper/iTunesBootstrapper.cpp \
|
|
Bootstrapper/PluginBootstrapper.cpp
|
|
+
|
|
+ LIBS -= -lLastFmFingerprint$$EXT
|
|
}
|
|
|
|
|