minitube-3.1/0000755000175000017500000000000013500741171012512 5ustar flavioflaviominitube-3.1/lib/0000755000175000017500000000000013500741170013257 5ustar flavioflaviominitube-3.1/lib/idle/0000755000175000017500000000000013500741171014175 5ustar flavioflaviominitube-3.1/lib/idle/README.md0000644000175000017500000000045213500741171015455 0ustar flavioflavio# Qt Idle library This simple Qt library manages system and display sleep on Mac, Windows and Linux. Contributions for other platforms are welcome. You can use this library under the MIT license and at your own risk. If you do, you're welcome contributing your changes and fixes. Cheers, Flaviominitube-3.1/lib/idle/.git0000644000175000017500000000004413500741171014757 0ustar flavioflaviogitdir: ../../.git/modules/lib/idle minitube-3.1/lib/idle/src/0000755000175000017500000000000013500741171014764 5ustar flavioflaviominitube-3.1/lib/idle/src/idle_linux.cpp0000644000175000017500000000360113500741171017624 0ustar flavioflavio#include "idle.h" #include #include #include #include namespace { const QString fdDisplayService = "org.freedesktop.ScreenSaver"; const QString fdDisplayPath = "/org/freedesktop/ScreenSaver"; const QString fdDisplayInterface = fdDisplayService; const QString gnomeSystemService = "org.gnome.SessionManager"; const QString gnomeSystemPath = "/org/gnome/SessionManager"; const QString gnomeSystemInterface = gnomeSystemService; const QString inhibitMethod = "Inhibit"; const QString uninhibitMethod = "UnInhibit"; quint32 cookie; QString errorMessage; bool handleReply(const QDBusReply &reply) { if (reply.isValid()) { cookie = reply.value(); errorMessage.clear(); return true; } errorMessage = reply.error().message(); return false; } } // namespace bool Idle::preventDisplaySleep(const QString &reason) { QDBusInterface dbus(fdDisplayService, fdDisplayPath, fdDisplayInterface); QDBusReply reply = dbus.call(inhibitMethod, QCoreApplication::applicationName(), reason); return handleReply(reply); } bool Idle::allowDisplaySleep() { QDBusInterface dbus(fdDisplayService, fdDisplayPath, fdDisplayInterface); dbus.call(uninhibitMethod, cookie); return true; } QString Idle::displayErrorMessage() { return errorMessage; } bool Idle::preventSystemSleep(const QString &reason) { QDBusInterface dbus(gnomeSystemService, gnomeSystemPath, gnomeSystemInterface); QDBusReply reply = dbus.call(inhibitMethod, QCoreApplication::applicationName(), reason); return handleReply(reply); } bool Idle::allowSystemSleep() { QDBusInterface dbus(gnomeSystemService, gnomeSystemPath, gnomeSystemInterface); dbus.call(uninhibitMethod, cookie); return true; } QString Idle::systemErrorMessage() { return errorMessage; } minitube-3.1/lib/idle/src/idle.h0000644000175000017500000000056113500741171016054 0ustar flavioflavio#ifndef IDLE_H #define IDLE_H #include class Idle { public: static bool preventDisplaySleep(const QString &reason); static bool allowDisplaySleep(); static QString displayErrorMessage(); static bool preventSystemSleep(const QString &reason); static bool allowSystemSleep(); static QString systemErrorMessage(); }; #endif // IDLE_H minitube-3.1/lib/idle/src/idle_mac.cpp0000644000175000017500000000265213500741171017232 0ustar flavioflavio#include "idle.h" #include namespace { IOPMAssertionID displayAssertionID = 0; IOReturn displayRes = 0; IOPMAssertionID systemAssertionID = 0; IOReturn systemRes = 0; } // namespace bool Idle::preventDisplaySleep(const QString &reason) { displayRes = IOPMAssertionCreateWithName(kIOPMAssertionTypePreventUserIdleDisplaySleep, kIOPMAssertionLevelOn, reason.toCFString(), &displayAssertionID); return displayRes == kIOReturnSuccess; } bool Idle::allowDisplaySleep() { displayRes = IOPMAssertionRelease(displayAssertionID); return displayRes == kIOReturnSuccess; } QString Idle::displayErrorMessage() { return QString(); // return QString::fromUtf8(IOService::stringFromReturn(displayRes)); } bool Idle::preventSystemSleep(const QString &reason) { systemRes = IOPMAssertionCreateWithName(kIOPMAssertionTypePreventUserIdleSystemSleep, kIOPMAssertionLevelOn, reason.toCFString(), &systemAssertionID); return systemRes == kIOReturnSuccess; } bool Idle::allowSystemSleep() { systemRes = IOPMAssertionRelease(systemAssertionID); return systemRes == kIOReturnSuccess; } QString Idle::systemErrorMessage() { return QString(); // return QString::fromUtf8(IOService::stringFromReturn(systemRes)); } minitube-3.1/lib/idle/src/idle_win.cpp0000644000175000017500000000136313500741171017265 0ustar flavioflavio#include "idle.h" #include "windows.h" namespace { EXECUTION_STATE executionState; } bool Idle::preventDisplaySleep(const QString &reason) { executionState = SetThreadExecutionState(ES_CONTINUOUS | ES_DISPLAY_REQUIRED); return true; } bool Idle::allowDisplaySleep() { SetThreadExecutionState(ES_CONTINUOUS | executionState); return true; } QString Idle::displayErrorMessage() { return QString(); } bool Idle::preventSystemSleep(const QString &reason) { executionState = SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED); return true; } bool Idle::allowSystemSleep() { SetThreadExecutionState(ES_CONTINUOUS | executionState); return true; } QString Idle::systemErrorMessage() { return QString(); } minitube-3.1/lib/idle/idle.pri0000644000175000017500000000036213500741171015627 0ustar flavioflavioINCLUDEPATH += $$PWD/src DEPENDPATH += $$PWD/src HEADERS += $$PWD/src/idle.h mac { SOURCES += $$PWD/src/idle_mac.cpp } else:win32 { SOURCES += $$PWD/src/idle_win.cpp } else { QT *= dbus SOURCES += $$PWD/src/idle_linux.cpp } minitube-3.1/lib/http/0000755000175000017500000000000013500741171014237 5ustar flavioflaviominitube-3.1/lib/http/http.pri0000644000175000017500000000050213500741171015727 0ustar flavioflavioQT *= network INCLUDEPATH += $$PWD/src DEPENDPATH += $$PWD/src HEADERS += \ $$PWD/src/cachedhttp.h \ $$PWD/src/http.h \ $$PWD/src/localcache.h \ $$PWD/src/throttledhttp.h SOURCES += \ $$PWD/src/cachedhttp.cpp \ $$PWD/src/http.cpp \ $$PWD/src/localcache.cpp \ $$PWD/src/throttledhttp.cpp minitube-3.1/lib/http/README.md0000644000175000017500000000373113500741171015522 0ustar flavioflavio# A wrapper for the Qt Network Access API This is just a wrapper around Qt's QNetworkAccessManager and friends. I use it in my Qt apps at http://flavio.tordini.org . It allows me to add missing functionality as needed, e.g.: - Throttling (as required by many web APIs nowadays) - Read timeouts (don't let your requests get stuck forever) - Automatic retries - User agent and request header defaults - Partial requests - Redirection support (now supported by Qt >= 5.6) It has a simpler, higher-level API that I find easier to work with. The design emerged naturally in years of practical use. A basic example: ``` QObject *reply = Http::instance().get("https://google.com/"); connect(reply, SIGNAL(data(QByteArray)), SLOT(onSuccess(QByteArray))); connect(reply, SIGNAL(error(QString)), SLOT(onError(QString))); void MyClass::onSuccess(const QByteArray &bytes) { qDebug() << "Feel the bytes!" << bytes; } void MyClass::onError(const QString &message) { qDebug() << "Something's wrong here" << message; } ``` This is a real-world example of building a Http object suitable to a web service. It throttles requests, uses a custom user agent and caches results: ``` Http &myHttp() { static Http *http = [] { Http *http = new Http; http->addRequestHeader("User-Agent", userAgent()); ThrottledHttp *throttledHttp = new ThrottledHttp(*http); throttledHttp->setMilliseconds(1000); CachedHttp *cachedHttp = new CachedHttp(*throttledHttp, "mycache"); cachedHttp->setMaxSeconds(86400 * 30); return cachedHttp; }(); return *http; } ``` If the full power (and complexity) of QNetworkReply is needed you can always fallback to it: ``` HttpRequest req; req.url = "https://flavio.tordini.org/"; QNetworkReply *reply = Http::instance().networkReply(req); // Use QNetworkReply as needed... ``` You can use this library under the MIT license and at your own risk. If you do, you're welcome contributing your changes and fixes. Cheers, Flavio minitube-3.1/lib/http/.gitignore0000644000175000017500000000001013500741171016216 0ustar flavioflavio *.user minitube-3.1/lib/http/.git0000644000175000017500000000004413500741171015021 0ustar flavioflaviogitdir: ../../.git/modules/lib/http minitube-3.1/lib/http/src/0000755000175000017500000000000013500741171015026 5ustar flavioflaviominitube-3.1/lib/http/src/localcache.h0000644000175000017500000000213213500741171017253 0ustar flavioflavio#ifndef LOCALCACHE_H #define LOCALCACHE_H #include /** * @brief Not thread-safe */ class LocalCache { public: static LocalCache *instance(const char *name); ~LocalCache(); static QByteArray hash(const QByteArray &s); const QByteArray &getName() const { return name; } void setMaxSeconds(uint value) { maxSeconds = value; } void setMaxSize(uint value) { maxSize = value; } QByteArray value(const QByteArray &key); void insert(const QByteArray &key, const QByteArray &value); bool clear(); private: LocalCache(const QByteArray &name); QString cachePath(const QByteArray &key) const; bool isCached(const QString &path); qint64 expire(); #ifndef QT_NO_DEBUG_OUTPUT void debugStats(); #endif QByteArray name; QString directory; uint maxSeconds; qint64 maxSize; qint64 size; bool expiring; uint insertCount; struct QueueItem { QByteArray key; QByteArray value; }; QVector insertQueue; #ifndef QT_NO_DEBUG_OUTPUT uint hits; uint misses; #endif }; #endif // LOCALCACHE_H minitube-3.1/lib/http/src/cachedhttp.h0000644000175000017500000000245113500741171017310 0ustar flavioflavio#ifndef CACHEDHTTP_H #define CACHEDHTTP_H #include "http.h" class LocalCache; class CachedHttp : public Http { public: CachedHttp(Http &http = Http::instance(), const char *name = "http"); void setMaxSeconds(uint seconds); void setMaxSize(uint maxSize); void setCachePostRequests(bool value) { cachePostRequests = value; } HttpReply *request(const HttpRequest &req); private: Http &http; LocalCache *cache; bool cachePostRequests; }; class CachedHttpReply : public HttpReply { Q_OBJECT public: CachedHttpReply(const QByteArray &body, const HttpRequest &req); QUrl url() const { return req.url; } int statusCode() const { return 200; } QByteArray body() const; private slots: void emitSignals(); private: const QByteArray bytes; const HttpRequest req; }; class WrappedHttpReply : public HttpReply { Q_OBJECT public: WrappedHttpReply(LocalCache *cache, const QByteArray &key, HttpReply *httpReply); QUrl url() const { return httpReply->url(); } int statusCode() const { return httpReply->statusCode(); } QByteArray body() const { return httpReply->body(); } private slots: void originFinished(const HttpReply &reply); private: LocalCache *cache; QByteArray key; HttpReply *httpReply; }; #endif // CACHEDHTTP_H minitube-3.1/lib/http/src/throttledhttp.cpp0000644000175000017500000000336613500741171020453 0ustar flavioflavio#include "throttledhttp.h" ThrottledHttp::ThrottledHttp(Http &http) : http(http), milliseconds(1000) { elapsedTimer.start(); } HttpReply *ThrottledHttp::request(const HttpRequest &req) { return new ThrottledHttpReply(http, req, milliseconds, elapsedTimer); } ThrottledHttpReply::ThrottledHttpReply(Http &http, const HttpRequest &req, int milliseconds, QElapsedTimer &elapsedTimer) : http(http), req(req), milliseconds(milliseconds), elapsedTimer(elapsedTimer), timer(nullptr) { checkElapsed(); } void ThrottledHttpReply::checkElapsed() { /* static QMutex mutex; QMutexLocker locker(&mutex); */ const qint64 elapsedSinceLastRequest = elapsedTimer.elapsed(); if (elapsedSinceLastRequest < milliseconds) { if (!timer) { timer = new QTimer(this); timer->setSingleShot(true); timer->setTimerType(Qt::PreciseTimer); connect(timer, SIGNAL(timeout()), SLOT(checkElapsed())); } qDebug() << "Throttling" << req.url << QString("%1ms").arg(milliseconds - elapsedSinceLastRequest); timer->setInterval(milliseconds - elapsedSinceLastRequest); timer->start(); return; } elapsedTimer.start(); doRequest(); } void ThrottledHttpReply::doRequest() { QObject *reply = http.request(req); connect(reply, SIGNAL(data(QByteArray)), SIGNAL(data(QByteArray))); connect(reply, SIGNAL(error(QString)), SIGNAL(error(QString))); connect(reply, SIGNAL(finished(HttpReply)), SIGNAL(finished(HttpReply))); // this will cause the deletion of this object once the request is finished setParent(reply); } minitube-3.1/lib/http/src/localcache.cpp0000644000175000017500000001202113500741171017604 0ustar flavioflavio#include "localcache.h" LocalCache *LocalCache::instance(const char *name) { static QMap instances; auto i = instances.constFind(QByteArray::fromRawData(name, strlen(name))); if (i != instances.constEnd()) return i.value(); LocalCache *instance = new LocalCache(name); instances.insert(instance->getName(), instance); return instance; } LocalCache::LocalCache(const QByteArray &name) : name(name), maxSeconds(86400 * 30), maxSize(1024 * 1024 * 100), size(0), expiring(false), insertCount(0) { directory = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + QLatin1Char('/') + QLatin1String(name) + QLatin1Char('/'); #ifndef QT_NO_DEBUG_OUTPUT hits = 0; misses = 0; #endif } LocalCache::~LocalCache() { #ifndef QT_NO_DEBUG_OUTPUT debugStats(); #endif } QByteArray LocalCache::hash(const QByteArray &s) { QCryptographicHash hash(QCryptographicHash::Sha1); hash.addData(s); const QByteArray h = QByteArray::number(*(qlonglong *)hash.result().constData(), 36); static const char sep('/'); QByteArray p; p.reserve(h.length() + 2); p.append(h.at(0)); p.append(sep); p.append(h.at(1)); p.append(sep); p.append(h.constData() + 2, strlen(h.constData()) - 2); // p.append(h.mid(2)); return p; } bool LocalCache::isCached(const QString &path) { bool cached = (QFile::exists(path) && (maxSeconds == 0 || QDateTime::currentDateTimeUtc().toTime_t() - QFileInfo(path).created().toTime_t() < maxSeconds)); #ifndef QT_NO_DEBUG_OUTPUT if (!cached) misses++; #endif return cached; } QByteArray LocalCache::value(const QByteArray &key) { const QString path = cachePath(key); if (!isCached(path)) return QByteArray(); QFile file(path); if (!file.open(QIODevice::ReadOnly)) { qWarning() << __PRETTY_FUNCTION__ << file.fileName() << file.errorString(); #ifndef QT_NO_DEBUG_OUTPUT misses++; #endif return QByteArray(); } #ifndef QT_NO_DEBUG_OUTPUT hits++; #endif return file.readAll(); } void LocalCache::insert(const QByteArray &key, const QByteArray &value) { const QueueItem item = {key, value}; insertQueue.append(item); QTimer::singleShot(0, [this]() { if (insertQueue.isEmpty()) return; for (const auto &item : insertQueue) { const QString path = cachePath(item.key); const QString parentDir = path.left(path.lastIndexOf('/')); if (!QFile::exists(parentDir)) { QDir().mkpath(parentDir); } QFile file(path); if (!file.open(QIODevice::WriteOnly)) { qWarning() << "Cannot create" << path; continue; } file.write(item.value); file.close(); if (size > 0) size += item.value.size(); } insertQueue.clear(); // expire cache every n inserts if (maxSize > 0 && ++insertCount % 100 == 0) { if (size == 0 || size > maxSize) size = expire(); } }); } bool LocalCache::clear() { #ifndef QT_NO_DEBUG_OUTPUT hits = 0; misses = 0; #endif size = 0; insertCount = 0; return QDir(directory).removeRecursively(); } QString LocalCache::cachePath(const QByteArray &key) const { return directory + QLatin1String(key.constData()); } qint64 LocalCache::expire() { if (expiring) return size; expiring = true; QDir::Filters filters = QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot; QDirIterator it(directory, filters, QDirIterator::Subdirectories); QMultiMap cacheItems; qint64 totalSize = 0; while (it.hasNext()) { QString path = it.next(); QFileInfo info = it.fileInfo(); cacheItems.insert(info.created(), path); totalSize += info.size(); qApp->processEvents(); } int removedFiles = 0; qint64 goal = (maxSize * 9) / 10; auto i = cacheItems.constBegin(); while (i != cacheItems.constEnd()) { if (totalSize < goal) break; QString name = i.value(); QFile file(name); qint64 size = file.size(); file.remove(); totalSize -= size; ++removedFiles; ++i; qApp->processEvents(); } #ifndef QT_NO_DEBUG_OUTPUT debugStats(); if (removedFiles > 0) { qDebug() << "Removed:" << removedFiles << "Kept:" << cacheItems.count() - removedFiles << "New Size:" << totalSize; } #endif expiring = false; return totalSize; } #ifndef QT_NO_DEBUG_OUTPUT void LocalCache::debugStats() { int total = hits + misses; if (total > 0) { qDebug() << "Cache:" << name << '\n' << "Inserts:" << insertCount << '\n' << "Requests:" << total << '\n' << "Hits:" << hits << (hits * 100) / total << "%\n" << "Misses:" << misses << (misses * 100) / total << "%"; } } #endif minitube-3.1/lib/http/src/cachedhttp.cpp0000644000175000017500000000437413500741171017651 0ustar flavioflavio#include "cachedhttp.h" #include "localcache.h" namespace { QByteArray requestHash(const HttpRequest &req) { const char sep = '|'; QByteArray s = req.url.toEncoded() + sep + req.body + sep + QByteArray::number(req.offset); if (req.operation == QNetworkAccessManager::PostOperation) { s.append(sep); s.append("POST"); } return LocalCache::hash(s); } } // namespace CachedHttpReply::CachedHttpReply(const QByteArray &body, const HttpRequest &req) : bytes(body), req(req) { QTimer::singleShot(0, this, SLOT(emitSignals())); } QByteArray CachedHttpReply::body() const { return bytes; } void CachedHttpReply::emitSignals() { emit data(body()); emit finished(*this); deleteLater(); } WrappedHttpReply::WrappedHttpReply(LocalCache *cache, const QByteArray &key, HttpReply *httpReply) : HttpReply(httpReply), cache(cache), key(key), httpReply(httpReply) { connect(httpReply, SIGNAL(data(QByteArray)), SIGNAL(data(QByteArray))); connect(httpReply, SIGNAL(error(QString)), SIGNAL(error(QString))); connect(httpReply, SIGNAL(finished(HttpReply)), SLOT(originFinished(HttpReply))); } void WrappedHttpReply::originFinished(const HttpReply &reply) { if (reply.isSuccessful()) cache->insert(key, reply.body()); emit finished(reply); } CachedHttp::CachedHttp(Http &http, const char *name) : http(http), cache(LocalCache::instance(name)), cachePostRequests(false) {} void CachedHttp::setMaxSeconds(uint seconds) { cache->setMaxSeconds(seconds); } void CachedHttp::setMaxSize(uint maxSize) { cache->setMaxSize(maxSize); } HttpReply *CachedHttp::request(const HttpRequest &req) { bool cacheable = req.operation == QNetworkAccessManager::GetOperation || (cachePostRequests && req.operation == QNetworkAccessManager::PostOperation); if (!cacheable) { qDebug() << "Not cacheable" << req.url; return http.request(req); } const QByteArray key = requestHash(req); const QByteArray value = cache->value(key); if (!value.isNull()) { qDebug() << "CachedHttp HIT" << req.url; return new CachedHttpReply(value, req); } qDebug() << "CachedHttp MISS" << req.url.toString(); return new WrappedHttpReply(cache, key, http.request(req)); } minitube-3.1/lib/http/src/http.h0000644000175000017500000000575313500741171016170 0ustar flavioflavio#ifndef HTTP_H #define HTTP_H #include class HttpRequest { public: HttpRequest() : operation(QNetworkAccessManager::GetOperation), offset(0) {} QUrl url; QNetworkAccessManager::Operation operation; QByteArray body; uint offset; QMap headers; }; class HttpReply : public QObject { Q_OBJECT public: HttpReply(QObject *parent = nullptr) : QObject(parent) {} virtual QUrl url() const = 0; virtual int statusCode() const = 0; int isSuccessful() const { return statusCode() >= 200 && statusCode() < 300; } virtual QString reasonPhrase() const { return QString(); } virtual const QList headers() const { return QList(); } virtual QByteArray header(const QByteArray &headerName) const { Q_UNUSED(headerName); return QByteArray(); } virtual QByteArray body() const = 0; signals: void data(const QByteArray &bytes); void error(const QString &message); void finished(const HttpReply &reply); }; class Http { public: static Http &instance(); static const QMap &getDefaultRequestHeaders(); static void setDefaultReadTimeout(int timeout); Http(); void setRequestHeaders(const QMap &headers); QMap &getRequestHeaders(); void addRequestHeader(const QByteArray &name, const QByteArray &value); void setReadTimeout(int timeout); int getReadTimeout() { return readTimeout; } QNetworkReply *networkReply(const HttpRequest &req); virtual HttpReply *request(const HttpRequest &req); HttpReply * request(const QUrl &url, QNetworkAccessManager::Operation operation = QNetworkAccessManager::GetOperation, const QByteArray &body = QByteArray(), uint offset = 0); HttpReply *get(const QUrl &url); HttpReply *head(const QUrl &url); HttpReply *post(const QUrl &url, const QMap ¶ms); HttpReply *post(const QUrl &url, const QByteArray &body, const QByteArray &contentType); private: QMap requestHeaders; int readTimeout; }; class NetworkHttpReply : public HttpReply { Q_OBJECT public: NetworkHttpReply(const HttpRequest &req, Http &http); QUrl url() const; int statusCode() const; QString reasonPhrase() const; const QList headers() const; QByteArray header(const QByteArray &headerName) const; QByteArray body() const; private slots: void replyFinished(); void replyError(QNetworkReply::NetworkError); void downloadProgress(qint64 bytesReceived, qint64 bytesTotal); void readTimeout(); private: void setupReply(); QString errorMessage(); void emitError(); void emitFinished(); Http &http; HttpRequest req; QNetworkReply *networkReply; QTimer *readTimeoutTimer; int retryCount; QByteArray bytes; }; #endif // HTTP_H minitube-3.1/lib/http/src/throttledhttp.h0000644000175000017500000000176213500741171020116 0ustar flavioflavio#ifndef THROTTLEDHTTP_H #define THROTTLEDHTTP_H #include "http.h" #include #include class ThrottledHttp : public Http { public: ThrottledHttp(Http &http = Http::instance()); void setMilliseconds(int milliseconds) { this->milliseconds = milliseconds; } HttpReply *request(const HttpRequest &req); private: Http &http; int milliseconds; QElapsedTimer elapsedTimer; }; class ThrottledHttpReply : public HttpReply { Q_OBJECT public: ThrottledHttpReply(Http &http, const HttpRequest &req, int milliseconds, QElapsedTimer &elapsedTimer); QUrl url() const { return req.url; } int statusCode() const { return 200; } QByteArray body() const { return QByteArray(); } private slots: void checkElapsed(); private: void doRequest(); Http &http; HttpRequest req; int milliseconds; QElapsedTimer &elapsedTimer; QTimer *timer; }; #endif // THROTTLEDHTTP_H minitube-3.1/lib/http/src/http.cpp0000644000175000017500000002223113500741171016511 0ustar flavioflavio#include "http.h" namespace { QNetworkAccessManager *createNetworkAccessManager() { QNetworkAccessManager *nam = new QNetworkAccessManager(); return nam; } QNetworkAccessManager *networkAccessManager() { static QMap nams; QThread *t = QThread::currentThread(); QMap::const_iterator i = nams.constFind(t); if (i != nams.constEnd()) return i.value(); QNetworkAccessManager *nam = createNetworkAccessManager(); nams.insert(t, nam); return nam; } int defaultReadTimeout = 10000; } // namespace Http::Http() : requestHeaders(getDefaultRequestHeaders()), readTimeout(defaultReadTimeout) {} void Http::setRequestHeaders(const QMap &headers) { requestHeaders = headers; } QMap &Http::getRequestHeaders() { return requestHeaders; } void Http::addRequestHeader(const QByteArray &name, const QByteArray &value) { requestHeaders.insert(name, value); } void Http::setReadTimeout(int timeout) { readTimeout = timeout; } Http &Http::instance() { static Http i; return i; } const QMap &Http::getDefaultRequestHeaders() { static const QMap defaultRequestHeaders = [] { QMap h; h.insert("Accept-Charset", "utf-8"); h.insert("Connection", "Keep-Alive"); return h; }(); return defaultRequestHeaders; } void Http::setDefaultReadTimeout(int timeout) { defaultReadTimeout = timeout; } QNetworkReply *Http::networkReply(const HttpRequest &req) { QNetworkRequest request(req.url); QMap &headers = requestHeaders; if (!req.headers.isEmpty()) headers = req.headers; QMap::const_iterator it; for (it = headers.constBegin(); it != headers.constEnd(); ++it) request.setRawHeader(it.key(), it.value()); if (req.offset > 0) request.setRawHeader("Range", QString("bytes=%1-").arg(req.offset).toUtf8()); QNetworkAccessManager *manager = networkAccessManager(); QNetworkReply *networkReply = nullptr; switch (req.operation) { case QNetworkAccessManager::GetOperation: networkReply = manager->get(request); break; case QNetworkAccessManager::HeadOperation: networkReply = manager->head(request); break; case QNetworkAccessManager::PostOperation: networkReply = manager->post(request, req.body); break; default: qWarning() << "Unknown operation:" << req.operation; } return networkReply; } HttpReply *Http::request(const HttpRequest &req) { return new NetworkHttpReply(req, *this); } HttpReply *Http::request(const QUrl &url, QNetworkAccessManager::Operation operation, const QByteArray &body, uint offset) { HttpRequest req; req.url = url; req.operation = operation; req.body = body; req.offset = offset; return request(req); } HttpReply *Http::get(const QUrl &url) { return request(url, QNetworkAccessManager::GetOperation); } HttpReply *Http::head(const QUrl &url) { return request(url, QNetworkAccessManager::HeadOperation); } HttpReply *Http::post(const QUrl &url, const QMap ¶ms) { QByteArray body; QMapIterator i(params); while (i.hasNext()) { i.next(); body += QUrl::toPercentEncoding(i.key()) + '=' + QUrl::toPercentEncoding(i.value()) + '&'; } HttpRequest req; req.url = url; req.operation = QNetworkAccessManager::PostOperation; req.body = body; req.headers = requestHeaders; req.headers.insert("Content-Type", "application/x-www-form-urlencoded"); return request(req); } HttpReply *Http::post(const QUrl &url, const QByteArray &body, const QByteArray &contentType) { HttpRequest req; req.url = url; req.operation = QNetworkAccessManager::PostOperation; req.body = body; req.headers = requestHeaders; QByteArray cType = contentType; if (cType.isEmpty()) cType = "application/x-www-form-urlencoded"; req.headers.insert("Content-Type", cType); return request(req); } NetworkHttpReply::NetworkHttpReply(const HttpRequest &req, Http &http) : http(http), req(req), retryCount(0) { if (req.url.isEmpty()) { qWarning() << "Empty URL"; } networkReply = http.networkReply(req); setParent(networkReply); setupReply(); readTimeoutTimer = new QTimer(this); readTimeoutTimer->setInterval(http.getReadTimeout()); readTimeoutTimer->setSingleShot(true); connect(readTimeoutTimer, SIGNAL(timeout()), SLOT(readTimeout()), Qt::UniqueConnection); readTimeoutTimer->start(); } void NetworkHttpReply::setupReply() { connect(networkReply, SIGNAL(error(QNetworkReply::NetworkError)), SLOT(replyError(QNetworkReply::NetworkError)), Qt::UniqueConnection); connect(networkReply, SIGNAL(finished()), SLOT(replyFinished()), Qt::UniqueConnection); connect(networkReply, SIGNAL(downloadProgress(qint64, qint64)), SLOT(downloadProgress(qint64, qint64)), Qt::UniqueConnection); } QString NetworkHttpReply::errorMessage() { return url().toString() + QLatin1Char(' ') + QString::number(statusCode()) + QLatin1Char(' ') + reasonPhrase(); } void NetworkHttpReply::emitError() { const QString msg = errorMessage(); #ifndef QT_NO_DEBUG_OUTPUT qDebug() << "Http:" << msg; if (!req.body.isEmpty()) qDebug() << "Http:" << req.body; #endif emit error(msg); emitFinished(); } void NetworkHttpReply::emitFinished() { readTimeoutTimer->stop(); // disconnect to avoid replyFinished() from being called networkReply->disconnect(); emit finished(*this); // bye bye my reply // this will also delete this object and HttpReply as the QNetworkReply is their parent networkReply->deleteLater(); } void NetworkHttpReply::replyFinished() { QUrl redirection = networkReply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (redirection.isValid()) { HttpRequest redirectReq; redirectReq.url = redirection; redirectReq.operation = req.operation; redirectReq.body = req.body; redirectReq.offset = req.offset; QNetworkReply *redirectReply = http.networkReply(redirectReq); setParent(redirectReply); networkReply->deleteLater(); networkReply = redirectReply; setupReply(); readTimeoutTimer->start(); return; } if (isSuccessful()) { bytes = networkReply->readAll(); emit data(bytes); #ifndef QT_NO_DEBUG_OUTPUT if (!networkReply->attribute(QNetworkRequest::SourceIsFromCacheAttribute).toBool()) qDebug() << networkReply->url().toString() << statusCode(); else qDebug() << "CACHE" << networkReply->url().toString(); #endif } emitFinished(); } void NetworkHttpReply::replyError(QNetworkReply::NetworkError code) { Q_UNUSED(code); const int status = statusCode(); if (retryCount <= 3 && status >= 500 && status < 600) { qDebug() << "Retrying" << req.url; networkReply->disconnect(); networkReply->deleteLater(); QNetworkReply *retryReply = http.networkReply(req); setParent(retryReply); networkReply = retryReply; setupReply(); retryCount++; readTimeoutTimer->start(); } else { emitError(); return; } } void NetworkHttpReply::downloadProgress(qint64 bytesReceived, qint64 /* bytesTotal */) { // qDebug() << "Downloading" << bytesReceived << bytesTotal << networkReply->url(); if (bytesReceived > 0 && readTimeoutTimer->isActive()) { readTimeoutTimer->stop(); disconnect(networkReply, SIGNAL(downloadProgress(qint64, qint64)), this, SLOT(downloadProgress(qint64, qint64))); } } void NetworkHttpReply::readTimeout() { if (!networkReply) return; networkReply->disconnect(); networkReply->abort(); networkReply->deleteLater(); if (retryCount > 3 && (networkReply->operation() != QNetworkAccessManager::GetOperation && networkReply->operation() != QNetworkAccessManager::HeadOperation)) { emitError(); emit finished(*this); return; } qDebug() << "Timeout" << req.url; QNetworkReply *retryReply = http.networkReply(req); setParent(retryReply); networkReply = retryReply; setupReply(); retryCount++; readTimeoutTimer->start(); } QUrl NetworkHttpReply::url() const { return networkReply->url(); } int NetworkHttpReply::statusCode() const { return networkReply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); } QString NetworkHttpReply::reasonPhrase() const { return networkReply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString(); } const QList NetworkHttpReply::headers() const { return networkReply->rawHeaderPairs(); } QByteArray NetworkHttpReply::header(const QByteArray &headerName) const { return networkReply->rawHeader(headerName); } QByteArray NetworkHttpReply::body() const { return bytes; } minitube-3.1/lib/http/http.pro0000644000175000017500000000004113500741171015733 0ustar flavioflavioTEMPLATE = lib include(http.pri) minitube-3.1/lib/media/0000755000175000017500000000000013500741171014337 5ustar flavioflaviominitube-3.1/lib/media/README.md0000644000175000017500000000060013500741171015612 0ustar flavioflavio# Qt Media Library Abstraction This is a simple wrapper around a multimedia playback library. Define `MEDIA_QTAV` to link to QtAV or `MEDIA_MPV` to link to libmpv (>=0.29.0). `MEDIA_AUDIOONLY` can be defined if the application does not need video. You can use this library under the MIT license and at your own risk. If you do, you're welcome contributing your changes and fixes. minitube-3.1/lib/media/.gitignore0000644000175000017500000000001213500741171016320 0ustar flavioflavio.DS_Store minitube-3.1/lib/media/.git0000644000175000017500000000004513500741171015122 0ustar flavioflaviogitdir: ../../.git/modules/lib/media minitube-3.1/lib/media/src/0000755000175000017500000000000013500741171015126 5ustar flavioflaviominitube-3.1/lib/media/src/media.h0000644000175000017500000000411713500741171016361 0ustar flavioflavio#ifndef MEDIA_H #define MEDIA_H #include #ifndef MEDIA_AUDIOONLY #include #endif class Media : public QObject { Q_OBJECT public: enum State { StoppedState, LoadingState, BufferingState, PlayingState, PausedState, ErrorState }; Q_ENUM(State) Media(QObject *parent = nullptr) : QObject(parent) { qRegisterMetaType("Media::State"); } virtual void setAudioOnly(bool value) = 0; #ifndef MEDIA_AUDIOONLY virtual void setRenderer(const QString &name) = 0; virtual QWidget *videoWidget() = 0; virtual void playSeparateAudioAndVideo(const QString &video, const QString &audio) = 0; virtual void snapshot() = 0; #endif virtual void init() = 0; virtual Media::State state() const = 0; virtual void play(const QString &file) = 0; virtual void play() = 0; virtual void pause() = 0; virtual void stop() = 0; virtual void seek(qint64 ms) = 0; virtual QString file() const = 0; virtual void setBufferMilliseconds(qint64 value) = 0; virtual void setUserAgent(const QString &value) = 0; virtual void enqueue(const QString &file) = 0; virtual void clearQueue() = 0; virtual bool hasQueue() const = 0; virtual qint64 position() const = 0; virtual qint64 duration() const = 0; virtual qint64 remainingTime() const = 0; virtual qreal volume() const = 0; virtual void setVolume(qreal value) = 0; virtual bool volumeMuted() const = 0; virtual void setVolumeMuted(bool value) = 0; virtual QString errorString() const = 0; signals: void error(const QString &message); void sourceChanged(); void bufferStatus(qreal value); void loaded(); void started(); void stopped(); void paused(bool p); void stateChanged(Media::State state); void positionChanged(qint64 ms); void aboutToFinish(); void finished(); void volumeChanged(qreal value); void volumeMutedChanged(bool value); #ifndef MEDIA_AUDIOONLY void snapshotReady(const QImage &image); #endif }; #endif // MEDIA_H minitube-3.1/lib/media/src/qtav/0000755000175000017500000000000013500741171016101 5ustar flavioflaviominitube-3.1/lib/media/src/qtav/mediaqtav.h0000644000175000017500000000344713500741171020235 0ustar flavioflavio#ifndef MEDIAQTAV_H #define MEDIAQTAV_H #include "media.h" #include #ifndef MEDIA_AUDIOONLY #include #include #endif class MediaQtAV : public Media { Q_OBJECT public: MediaQtAV(QObject *parent = nullptr); #ifndef MEDIA_AUDIOONLY void setRenderer(const QString &name); QWidget *videoWidget(); void playSeparateAudioAndVideo(const QString &video, const QString &audio); void snapshot(); #endif void setAudioOnly(bool value); void init(); Media::State state() const; void play(const QString &file); void play(); void pause(); void stop(); void seek(qint64 ms); QString file() const; void setBufferMilliseconds(qint64 value); void setUserAgent(const QString &value); void enqueue(const QString &file); void clearQueue(); bool hasQueue() const; qint64 position() const; qint64 duration() const; qint64 remainingTime() const; qreal volume() const; void setVolume(qreal value); bool volumeMuted() const; void setVolumeMuted(bool value); QString errorString() const; private slots: void checkAboutToFinish(qint64 position); void onMediaStatusChange(QtAV::MediaStatus status); void onAVError(const QtAV::AVError &e); private: QtAV::AVPlayer *createPlayer(bool audioOnly); void connectPlayer(QtAV::AVPlayer *player); void setCurrentPlayer(QtAV::AVPlayer *player); void smoothSourceChange(const QString &file, const QString &externalAudio); QtAV::AVPlayer *player1; QtAV::AVPlayer *player2; QtAV::AVPlayer *currentPlayer; QQueue queue; bool aboutToFinishEmitted = false; QString lastErrorString; #ifndef MEDIA_AUDIOONLY QtAV::VideoRendererId rendererId; #endif bool audioOnly = false; }; #endif // MEDIAQTAV_H minitube-3.1/lib/media/src/qtav/mediaqtav.cpp0000644000175000017500000002623513500741171020570 0ustar flavioflavio#include "mediaqtav.h" namespace { #if defined(Q_OS_ANDROID) || defined(Q_OS_MAC) const QtAV::VideoRendererId defaultRenderer = QtAV::VideoRendererId_OpenGLWidget; #else const QtAV::VideoRendererId defaultRenderer = QtAV::VideoRendererId_GLWidget2; #endif #ifndef MEDIA_AUDIOONLY QtAV::VideoRendererId rendererIdFor(const QString &name) { static const struct { const char *name; QtAV::VideoRendererId id; } renderers[] = {{"opengl", QtAV::VideoRendererId_OpenGLWidget}, {"gl", QtAV::VideoRendererId_GLWidget2}, {"d2d", QtAV::VideoRendererId_Direct2D}, {"gdi", QtAV::VideoRendererId_GDI}, {"xv", QtAV::VideoRendererId_XV}, {"x11", QtAV::VideoRendererId_X11}, {"qt", QtAV::VideoRendererId_Widget}}; for (int i = 0; renderers[i].name; ++i) { if (name == QLatin1String(renderers[i].name)) return renderers[i].id; } return defaultRenderer; } #endif Media::State stateFor(QtAV::AVPlayer::State state) { static const QMap map{ {QtAV::AVPlayer::StoppedState, Media::StoppedState}, {QtAV::AVPlayer::PlayingState, Media::PlayingState}, {QtAV::AVPlayer::PausedState, Media::PausedState}}; return map[state]; } } // namespace MediaQtAV::MediaQtAV(QObject *parent) : Media(parent), player1(nullptr), player2(nullptr), currentPlayer(nullptr) { #ifndef MEDIA_AUDIOONLY rendererId = defaultRenderer; #endif } #ifndef MEDIA_AUDIOONLY void MediaQtAV::setRenderer(const QString &name) { rendererId = rendererIdFor(name); } #endif void MediaQtAV::setAudioOnly(bool value) { audioOnly = value; } void MediaQtAV::init() { #ifndef QT_NO_DEBUG_OUTPUT QtAV::setLogLevel(QtAV::LogAll); #endif #ifndef MEDIA_AUDIOONLY QtAV::Widgets::registerRenderers(); #endif player1 = createPlayer(audioOnly); setCurrentPlayer(player1); } #ifndef MEDIA_AUDIOONLY QWidget *MediaQtAV::videoWidget() { return currentPlayer->renderer()->widget(); } #endif Media::State MediaQtAV::state() const { if (currentPlayer->mediaStatus() == QtAV::LoadingMedia) return LoadingState; if (currentPlayer->bufferProgress() > 0. && currentPlayer->bufferProgress() < 1.) return BufferingState; return stateFor(currentPlayer->state()); } void MediaQtAV::play(const QString &file) { if (currentPlayer->isPlaying()) { smoothSourceChange(file, QString()); return; } #ifndef MEDIA_AUDIOONLY if (!currentPlayer->externalAudio().isEmpty()) currentPlayer->setExternalAudio(QString()); #endif currentPlayer->play(file); aboutToFinishEmitted = false; lastErrorString.clear(); clearQueue(); } #ifndef MEDIA_AUDIOONLY void MediaQtAV::playSeparateAudioAndVideo(const QString &video, const QString &audio) { if (currentPlayer->isPlaying()) { smoothSourceChange(video, audio); return; } currentPlayer->stop(); currentPlayer->setExternalAudio(audio); currentPlayer->play(video); aboutToFinishEmitted = false; lastErrorString.clear(); clearQueue(); } void MediaQtAV::snapshot() { auto videoCapture = currentPlayer->videoCapture(); connect(videoCapture, &QtAV::VideoCapture::imageCaptured, this, &Media::snapshotReady); connect(videoCapture, &QtAV::VideoCapture::failed, this, [this] { emit snapshotReady(QImage()); }); videoCapture->capture(); } #endif void MediaQtAV::play() { if (currentPlayer->isPaused()) currentPlayer->togglePause(); else currentPlayer->play(); } QString MediaQtAV::file() const { return currentPlayer->file(); } void MediaQtAV::setBufferMilliseconds(qint64 value) { currentPlayer->setBufferValue(value); } void MediaQtAV::setUserAgent(const QString &value) { qDebug() << "Setting user agent to" << value; auto options = currentPlayer->optionsForFormat(); options.insert(QStringLiteral("user_agent"), value); currentPlayer->setOptionsForFormat(options); } void MediaQtAV::enqueue(const QString &file) { queue << file; if (queue.size() == 1) { qDebug() << "Preloading" << file; auto nextPlayer = player1; if (currentPlayer == player1) { if (player2 == nullptr) player2 = createPlayer(audioOnly); nextPlayer = player2; } nextPlayer->setFile(file); nextPlayer->load(); } } void MediaQtAV::clearQueue() { queue.clear(); } bool MediaQtAV::hasQueue() const { return !queue.isEmpty(); } qint64 MediaQtAV::position() const { return currentPlayer->position(); } qint64 MediaQtAV::duration() const { return currentPlayer->duration(); } qint64 MediaQtAV::remainingTime() const { return currentPlayer->duration() - currentPlayer->position(); } qreal MediaQtAV::volume() const { return currentPlayer->audio()->volume(); } void MediaQtAV::setVolume(qreal value) { auto audio = currentPlayer->audio(); if (!audio->isOpen()) audio->open(); audio->setVolume(value); } bool MediaQtAV::volumeMuted() const { return currentPlayer->audio()->isMute(); } void MediaQtAV::setVolumeMuted(bool value) { currentPlayer->audio()->setMute(value); } QString MediaQtAV::errorString() const { return lastErrorString; } void MediaQtAV::checkAboutToFinish(qint64 position) { if (!aboutToFinishEmitted && currentPlayer->isPlaying() && duration() - position < currentPlayer->bufferValue()) { aboutToFinishEmitted = true; emit aboutToFinish(); } } void MediaQtAV::onMediaStatusChange(QtAV::MediaStatus status) { qDebug() << QVariant(status).toString(); switch (status) { case QtAV::LoadingMedia: emit stateChanged(LoadingState); break; case QtAV::BufferedMedia: if (currentPlayer->state() == QtAV::AVPlayer::PlayingState) emit stateChanged(PlayingState); break; case QtAV::BufferingMedia: emit stateChanged(BufferingState); break; case QtAV::EndOfMedia: if (queue.isEmpty()) emit finished(); else { auto nextPlayer = currentPlayer == player1 ? player2 : player1; if (nextPlayer->isLoaded()) { qDebug() << "Preloaded"; setCurrentPlayer(nextPlayer); nextPlayer->play(); aboutToFinishEmitted = false; lastErrorString.clear(); emit sourceChanged(); queue.dequeue(); } else { qDebug() << "Not preloaded"; currentPlayer->play(queue.dequeue()); } } break; case QtAV::InvalidMedia: emit stateChanged(Media::ErrorState); break; default: qDebug() << "Unhandled" << QVariant(status).toString(); } } void MediaQtAV::onAVError(const QtAV::AVError &e) { lastErrorString = e.string(); qDebug() << lastErrorString; emit error(lastErrorString); } void MediaQtAV::pause() { currentPlayer->pause(); } void MediaQtAV::stop() { currentPlayer->stop(); } void MediaQtAV::seek(qint64 ms) { currentPlayer->setPosition(ms); } QtAV::AVPlayer *MediaQtAV::createPlayer(bool audioOnly) { QtAV::AVPlayer *p = new QtAV::AVPlayer(this); #ifndef MEDIA_AUDIOONLY if (!audioOnly) { if (currentPlayer) { p->setRenderer(currentPlayer->renderer()); p->setVideoDecoderPriority(currentPlayer->videoDecoderPriority()); } else { QtAV::VideoRenderer *renderer = QtAV::VideoRenderer::create(rendererId); if (!renderer || !renderer->isAvailable() || !renderer->widget()) { qFatal("No QtAV video renderer"); } p->setRenderer(renderer); p->setVideoDecoderPriority( {"CUDA", "D3D11", "DXVA", "VAAPI", "VideoToolbox", "FFmpeg"}); } } #endif p->setBufferMode(QtAV::BufferTime); if (currentPlayer) { p->setBufferValue(currentPlayer->bufferValue()); p->setOptionsForFormat(currentPlayer->optionsForFormat()); } return p; } void MediaQtAV::connectPlayer(QtAV::AVPlayer *player) { connect(player, &QtAV::AVPlayer::error, this, &MediaQtAV::onAVError); connect(player, &QtAV::AVPlayer::sourceChanged, this, &Media::sourceChanged); connect(player, &QtAV::AVPlayer::sourceChanged, this, [this] { aboutToFinishEmitted = false; }); connect(player, &QtAV::AVPlayer::bufferProgressChanged, this, &Media::bufferStatus); connect(player, &QtAV::AVPlayer::started, this, &Media::started); connect(player, &QtAV::AVPlayer::stopped, this, &Media::stopped); connect(player, &QtAV::AVPlayer::paused, this, &Media::paused); connect(player, &QtAV::AVPlayer::positionChanged, this, &Media::positionChanged); connect(player, &QtAV::AVPlayer::positionChanged, this, &MediaQtAV::checkAboutToFinish); connect(player, &QtAV::AVPlayer::stateChanged, this, [this](QtAV::AVPlayer::State state) { const State s = stateFor(state); if (s != PlayingState) { emit stateChanged(s); } else if (currentPlayer->mediaStatus() == QtAV::BufferedMedia) { // needed when resuming from pause emit stateChanged(s); } }); connect(player, &QtAV::AVPlayer::mediaStatusChanged, this, &MediaQtAV::onMediaStatusChange); connect(player->audio(), &QtAV::AudioOutput::volumeChanged, this, &Media::volumeChanged); connect(player->audio(), &QtAV::AudioOutput::muteChanged, this, &Media::volumeMutedChanged); } void MediaQtAV::setCurrentPlayer(QtAV::AVPlayer *player) { if (currentPlayer) { currentPlayer->disconnect(this); player->audio()->setVolume(currentPlayer->audio()->volume()); player->audio()->setMute(currentPlayer->audio()->isMute()); player->setBufferValue(currentPlayer->bufferValue()); } currentPlayer = player; connectPlayer(currentPlayer); } void MediaQtAV::smoothSourceChange(const QString &file, const QString &externalAudio) { qDebug() << "smoothSourceChange"; auto nextPlayer = player1; if (currentPlayer == player1) { if (player2 == nullptr) player2 = createPlayer(audioOnly); nextPlayer = player2; } QObject *context = new QObject(); connect(nextPlayer, &QtAV::AVPlayer::loaded, context, [this, nextPlayer, context] { qDebug() << "smoothSourceChange preloaded"; setCurrentPlayer(nextPlayer); aboutToFinishEmitted = false; lastErrorString.clear(); clearQueue(); emit sourceChanged(); context->deleteLater(); QObject *context2 = new QObject(); connect(nextPlayer, &QtAV::AVPlayer::mediaStatusChanged, context2, [this, context2](QtAV::MediaStatus mediaStatus) { if (mediaStatus == QtAV::BufferedMedia) { qDebug() << "smoothSourceChange playing"; auto oldPlayer = currentPlayer == player1 ? player2 : player1; oldPlayer->stop(); context2->deleteLater(); } }); currentPlayer->play(); }); nextPlayer->setExternalAudio(externalAudio); nextPlayer->setFile(file); nextPlayer->load(); } minitube-3.1/lib/media/src/mpv/0000755000175000017500000000000013500741171015730 5ustar flavioflaviominitube-3.1/lib/media/src/mpv/mediampv.h0000644000175000017500000000276513500741171017715 0ustar flavioflavio#ifndef MEDIAMPV_H #define MEDIAMPV_H #include #include "media.h" #include class MediaMPV : public Media { Q_OBJECT public: MediaMPV(QObject *parent = nullptr); void setAudioOnly(bool value); #ifndef MEDIA_AUDIOONLY void setRenderer(const QString &name); QWidget *videoWidget(); void playSeparateAudioAndVideo(const QString &video, const QString &audio); void snapshot(); #endif void init(); Media::State state() const; void play(const QString &file); void play(); void pause(); void stop(); void seek(qint64 ms); QString file() const; void setBufferMilliseconds(qint64 value); void setUserAgent(const QString &value); void enqueue(const QString &file); void clearQueue(); bool hasQueue() const; qint64 position() const; qint64 duration() const; qint64 remainingTime() const; qreal volume() const; void setVolume(qreal value); bool volumeMuted() const; void setVolumeMuted(bool value); QString errorString() const; private slots: void onMpvEvents(); void checkAboutToFinish(qint64 position); signals: void mpvEvents(); private: void handleMpvEvent(mpv_event *event); void sendCommand(const char *args[]); void setState(Media::State value); void clearTrackState(); QWidget *widget; mpv_handle *mpv; Media::State currentState = Media::StoppedState; bool aboutToFinishEmitted = false; QString lastErrorString; }; #endif // MEDIAMPV_H minitube-3.1/lib/media/src/mpv/mediampv.cpp0000644000175000017500000002746013500741171020247 0ustar flavioflavio#include "mediampv.h" #include #include #ifndef MEDIA_AUDIOONLY #include "mpvwidget.h" #endif namespace { void wakeup(void *ctx) { // This callback is invoked from any mpv thread (but possibly also // recursively from a thread that is calling the mpv API). Just notify // the Qt GUI thread to wake up (so that it can process events with // mpv_wait_event()), and return as quickly as possible. MediaMPV *mediaMPV = (MediaMPV *)ctx; emit mediaMPV->mpvEvents(); } } // namespace MediaMPV::MediaMPV(QObject *parent) : Media(parent), widget(nullptr) { QThread *thread = new QThread(this); thread->start(); moveToThread(thread); connect(this, &QObject::destroyed, thread, &QThread::quit); #ifndef Q_OS_WIN // Qt sets the locale in the QApplication constructor, but libmpv requires // the LC_NUMERIC category to be set to "C", so change it back. std::setlocale(LC_NUMERIC, "C"); #endif mpv = mpv_create(); if (!mpv) qFatal("Cannot create MPV instance"); mpv_set_option_string(mpv, "config", "no"); mpv_set_option_string(mpv, "audio-display", "no"); mpv_set_option_string(mpv, "gapless-audio", "weak"); mpv_set_option_string(mpv, "idle", "yes"); mpv_set_option_string(mpv, "input-default-bindings", "no"); mpv_set_option_string(mpv, "input-vo-keyboard", "no"); mpv_set_option_string(mpv, "input-cursor", "no"); mpv_set_option_string(mpv, "input-media-keys", "no"); mpv_set_option_string(mpv, "ytdl", "no"); mpv_set_option_string(mpv, "fs", "no"); mpv_set_option_string(mpv, "osd-level", "0"); mpv_set_option_string(mpv, "quiet", "yes"); mpv_set_option_string(mpv, "load-scripts", "no"); mpv_set_option_string(mpv, "audio-client-name", QCoreApplication::applicationName().toUtf8().data()); mpv_set_option_string(mpv, "hwdec", "auto"); mpv_set_option_string(mpv, "vo", "libmpv"); mpv_set_option_string(mpv, "cache", "no"); mpv_set_option_string(mpv, "demuxer-max-bytes", "10485760"); mpv_set_option_string(mpv, "demuxer-max-back-bytes", "10485760"); #ifdef MEDIA_MPV_WID widget = new QWidget(); widget->setAttribute(Qt::WA_DontCreateNativeAncestors); widget->setAttribute(Qt::WA_NativeWindow); // If you have a HWND, use: int64_t wid = (intptr_t)hwnd; int64_t wid = (intptr_t)widget->winId(); mpv_set_option(mpv, "wid", MPV_FORMAT_INT64, &wid); #endif #ifndef QT_NO_DEBUG_OUTPUT // Request log messages // They are received as MPV_EVENT_LOG_MESSAGE. mpv_request_log_messages(mpv, "info"); #endif // From this point on, the wakeup function will be called. The callback // can come from any thread, so we use the QueuedConnection mechanism to // relay the wakeup in a thread-safe way. connect(this, &MediaMPV::mpvEvents, this, &MediaMPV::onMpvEvents, Qt::QueuedConnection); mpv_set_wakeup_callback(mpv, wakeup, this); if (mpv_initialize(mpv) < 0) qFatal("mpv failed to initialize"); // Let us receive property change events with MPV_EVENT_PROPERTY_CHANGE if // this property changes. mpv_observe_property(mpv, 0, "time-pos", MPV_FORMAT_DOUBLE); mpv_observe_property(mpv, 0, "duration", MPV_FORMAT_DOUBLE); mpv_observe_property(mpv, 0, "volume", MPV_FORMAT_DOUBLE); mpv_observe_property(mpv, 0, "mute", MPV_FORMAT_FLAG); } // This slot is invoked by wakeup() (through the mpvEvents signal). void MediaMPV::onMpvEvents() { // Process all events, until the event queue is empty. while (mpv) { mpv_event *event = mpv_wait_event(mpv, 0); if (event->event_id == MPV_EVENT_NONE) break; handleMpvEvent(event); } } void MediaMPV::checkAboutToFinish(qint64 position) { if (!aboutToFinishEmitted && currentState == Media::PlayingState) { const qint64 dur = duration(); if (dur > 0 && dur - position < 5000) { aboutToFinishEmitted = true; qDebug() << "aboutToFinish" << position << dur; emit aboutToFinish(); } } } void MediaMPV::handleMpvEvent(mpv_event *event) { // qDebug() << event->data; switch (event->event_id) { case MPV_EVENT_START_FILE: clearTrackState(); emit sourceChanged(); setState(Media::LoadingState); break; case MPV_EVENT_SEEK: setState(Media::BufferingState); break; case MPV_EVENT_FILE_LOADED: setState(Media::PlayingState); break; case MPV_EVENT_PLAYBACK_RESTART: case MPV_EVENT_UNPAUSE: setState(Media::PlayingState); break; case MPV_EVENT_END_FILE: { struct mpv_event_end_file *eof_event = (struct mpv_event_end_file *)event->data; if (eof_event->reason == MPV_END_FILE_REASON_EOF || eof_event->reason == MPV_END_FILE_REASON_ERROR) { qDebug() << "Finished"; setState(Media::StoppedState); emit finished(); } break; } case MPV_EVENT_PAUSE: setState(Media::PausedState); break; case MPV_EVENT_PROPERTY_CHANGE: { mpv_event_property *prop = (mpv_event_property *)event->data; // qDebug() << prop->name << prop->data; if (strcmp(prop->name, "time-pos") == 0) { if (prop->format == MPV_FORMAT_DOUBLE) { double seconds = *(double *)prop->data; qint64 ms = seconds * 1000.; emit positionChanged(ms); checkAboutToFinish(ms); } } else if (strcmp(prop->name, "volume") == 0) { if (prop->format == MPV_FORMAT_DOUBLE) { double vol = *(double *)prop->data; emit volumeChanged(vol / 100.); } } else if (strcmp(prop->name, "mute") == 0) { if (prop->format == MPV_FORMAT_FLAG) { int mute = *(int *)prop->data; emit volumeMutedChanged(mute == 1); } } break; } case MPV_EVENT_LOG_MESSAGE: { struct mpv_event_log_message *msg = (struct mpv_event_log_message *)event->data; qDebug() << "[" << msg->prefix << "] " << msg->level << ": " << msg->text; if (msg->log_level == MPV_LOG_LEVEL_ERROR) { lastErrorString = QString::fromUtf8(msg->text); emit error(lastErrorString); } break; } case MPV_EVENT_SHUTDOWN: { mpv_terminate_destroy(mpv); mpv = nullptr; break; } default:; // Unhandled events } } void MediaMPV::sendCommand(const char *args[]) { // mpv_command_async(mpv, 0, args); mpv_command(mpv, args); } void MediaMPV::setState(Media::State value) { if (value != currentState) { currentState = value; emit stateChanged(currentState); } } void MediaMPV::clearTrackState() { lastErrorString.clear(); aboutToFinishEmitted = false; } void MediaMPV::setAudioOnly(bool value) { Q_UNUSED(value); } #ifndef MEDIA_AUDIOONLY void MediaMPV::setRenderer(const QString &name) { mpv_set_option_string(mpv, "vo", name.toUtf8().data()); } QWidget *MediaMPV::videoWidget() { if (!widget) { widget = new MpvWidget(mpv); } return widget; } void MediaMPV::playSeparateAudioAndVideo(const QString &video, const QString &audio) { const QByteArray fileUtf8 = video.toUtf8(); const char *args[] = {"loadfile", fileUtf8.constData(), nullptr}; sendCommand(args); qApp->processEvents(); const QByteArray audioUtf8 = audio.toUtf8(); const char *args2[] = {"audio-add", audioUtf8.constData(), nullptr}; sendCommand(args2); clearTrackState(); } void MediaMPV::snapshot() { if (currentState == State::StoppedState) return; const QVariantList args = {"screenshot-raw", "video"}; mpv::qt::node_builder nodeBuilder(args); mpv_node node; const int ret = mpv_command_node(mpv, nodeBuilder.node(), &node); if (ret < 0) { emit error("Cannot take snapshot"); return; } mpv::qt::node_autofree auto_free(&node); if (node.format != MPV_FORMAT_NODE_MAP) { emit error("Cannot take snapshot"); return; } int width = 0; int height = 0; int stride = 0; mpv_node_list *list = node.u.list; uchar *data = nullptr; for (int i = 0; i < list->num; ++i) { const char *key = list->keys[i]; if (strcmp(key, "w") == 0) { width = static_cast(list->values[i].u.int64); } else if (strcmp(key, "h") == 0) { height = static_cast(list->values[i].u.int64); } else if (strcmp(key, "stride") == 0) { stride = static_cast(list->values[i].u.int64); } else if (strcmp(key, "data") == 0) { data = static_cast(list->values[i].u.ba->data); } } if (data != nullptr) { QImage img = QImage(data, width, height, stride, QImage::Format_RGB32); img.bits(); emit snapshotReady(img); } } #endif void MediaMPV::init() {} Media::State MediaMPV::state() const { return currentState; } void MediaMPV::play(const QString &file) { const QByteArray fileUtf8 = file.toUtf8(); const char *args[] = {"loadfile", fileUtf8.constData(), nullptr}; sendCommand(args); clearTrackState(); if (currentState == Media::PausedState) play(); } void MediaMPV::play() { int flag = 0; mpv_set_property_async(mpv, 0, "pause", MPV_FORMAT_FLAG, &flag); } void MediaMPV::pause() { int flag = 1; mpv_set_property_async(mpv, 0, "pause", MPV_FORMAT_FLAG, &flag); } void MediaMPV::stop() { const char *args[] = {"stop", nullptr}; sendCommand(args); } void MediaMPV::seek(qint64 ms) { double seconds = ms / 1000.; QByteArray ba = QString::number(seconds).toUtf8(); const char *args[] = {"seek", ba.constData(), "absolute", nullptr}; sendCommand(args); } QString MediaMPV::file() const { char *path; mpv_get_property(mpv, "path", MPV_FORMAT_STRING, &path); return QString::fromUtf8(path); } void MediaMPV::setBufferMilliseconds(qint64 value) { Q_UNUSED(value); // Not implemented } void MediaMPV::setUserAgent(const QString &value) { mpv_set_option_string(mpv, "user-agent", value.toUtf8()); } void MediaMPV::enqueue(const QString &file) { const QByteArray fileUtf8 = file.toUtf8(); const char *args[] = {"loadfile", fileUtf8.constData(), "append", nullptr}; sendCommand(args); } void MediaMPV::clearQueue() { const char *args[] = {"playlist-clear", nullptr}; sendCommand(args); } bool MediaMPV::hasQueue() const { mpv_node node; int r = mpv_get_property(mpv, "playlist", MPV_FORMAT_NODE, &node); if (r < 0) return false; QVariant v = mpv::qt::node_to_variant(&node); mpv_free_node_contents(&node); QVariantList list = v.toList(); return list.count() > 1; } qint64 MediaMPV::position() const { double seconds; mpv_get_property(mpv, "time-pos", MPV_FORMAT_DOUBLE, &seconds); return seconds * 1000.; } qint64 MediaMPV::duration() const { double seconds; mpv_get_property(mpv, "duration", MPV_FORMAT_DOUBLE, &seconds); return seconds * 1000.; } qint64 MediaMPV::remainingTime() const { double seconds; mpv_get_property(mpv, "time-remaining", MPV_FORMAT_DOUBLE, &seconds); return seconds * 1000.; } qreal MediaMPV::volume() const { double vol; mpv_get_property(mpv, "volume", MPV_FORMAT_DOUBLE, &vol); return vol / 100.; } void MediaMPV::setVolume(qreal value) { double percent = value * 100.; mpv_set_property_async(mpv, 0, "volume", MPV_FORMAT_DOUBLE, &percent); } bool MediaMPV::volumeMuted() const { int mute; mpv_get_property(mpv, "mute", MPV_FORMAT_FLAG, &mute); return mute == 1; } void MediaMPV::setVolumeMuted(bool value) { int mute = value ? 1 : 0; mpv_set_property(mpv, "mute", MPV_FORMAT_FLAG, &mute); } QString MediaMPV::errorString() const { return lastErrorString; } minitube-3.1/lib/media/src/mpv/mpvwidget.h0000644000175000017500000000143013500741171020105 0ustar flavioflavio#ifndef PLAYERWINDOW_H #define PLAYERWINDOW_H #include #include #include #include class MpvWidget Q_DECL_FINAL : public QOpenGLWidget { Q_OBJECT public: MpvWidget(mpv_handle *mpv, QWidget *parent = nullptr, Qt::WindowFlags f = nullptr); ~MpvWidget() Q_DECL_OVERRIDE; QSize sizeHint() const Q_DECL_OVERRIDE { return QSize(480, 270); } protected: void initializeGL() Q_DECL_OVERRIDE; void resizeGL(int w, int h) Q_DECL_OVERRIDE; void paintGL() Q_DECL_OVERRIDE; private slots: void maybeUpdate(); void onFrameSwapped(); private: static void onUpdate(void *ctx); mpv_handle *mpv; mpv_render_context *mpvContext; int glWidth; int glHeight; }; #endif // PLAYERWINDOW_H minitube-3.1/lib/media/src/mpv/mpvwidget.cpp0000644000175000017500000000732713500741171020453 0ustar flavioflavio#include "mpvwidget.h" #include #if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN) #include #endif static void *get_proc_address(void *ctx, const char *name) { Q_UNUSED(ctx); QOpenGLContext *glctx = QOpenGLContext::currentContext(); if (!glctx) return nullptr; return reinterpret_cast(glctx->getProcAddress(QByteArray(name))); } MpvWidget::MpvWidget(mpv_handle *mpv, QWidget *parent, Qt::WindowFlags f) : QOpenGLWidget(parent, f), mpv(mpv), mpvContext(nullptr) { moveToThread(qApp->thread()); } MpvWidget::~MpvWidget() { makeCurrent(); if (mpvContext) mpv_render_context_free(mpvContext); mpv_terminate_destroy(mpv); } void MpvWidget::initializeGL() { if (mpvContext) qFatal("Already initialized"); QWidget *nativeParent = nativeParentWidget(); qDebug() << "initializeGL" << nativeParent; if (nativeParent == nullptr) qFatal("No native parent"); mpv_opengl_init_params gl_init_params{get_proc_address, this, nullptr}; mpv_render_param params[]{{MPV_RENDER_PARAM_API_TYPE, (void *)MPV_RENDER_API_TYPE_OPENGL}, {MPV_RENDER_PARAM_OPENGL_INIT_PARAMS, &gl_init_params}, {MPV_RENDER_PARAM_INVALID, nullptr}, {MPV_RENDER_PARAM_INVALID, nullptr}}; #if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN) const QString platformName = QGuiApplication::platformName(); if (platformName.contains("xcb")) { params[2].type = MPV_RENDER_PARAM_X11_DISPLAY; params[2].data = (void *)QX11Info::display(); qDebug() << platformName << params[2].data; } else if (platformName.contains("wayland")) { qWarning() << "Wayland not supported"; } #endif if (mpv_render_context_create(&mpvContext, mpv, params) < 0) qFatal("failed to initialize mpv GL context"); mpv_render_context_set_update_callback(mpvContext, MpvWidget::onUpdate, (void *)this); connect(this, &QOpenGLWidget::frameSwapped, this, &MpvWidget::onFrameSwapped); } void MpvWidget::resizeGL(int w, int h) { qreal r = devicePixelRatioF(); glWidth = int(w * r); glHeight = int(h * r); } void MpvWidget::paintGL() { mpv_opengl_fbo fbo{static_cast(defaultFramebufferObject()), glWidth, glHeight, 0}; static bool yes = true; mpv_render_param params[] = {{MPV_RENDER_PARAM_OPENGL_FBO, &fbo}, {MPV_RENDER_PARAM_FLIP_Y, &yes}, {MPV_RENDER_PARAM_INVALID, nullptr}}; // See render_gl.h on what OpenGL environment mpv expects, and // other API details. mpv_render_context_render(mpvContext, params); } // Make Qt invoke mpv_opengl_cb_draw() to draw a new/updated video frame. void MpvWidget::maybeUpdate() { // If the Qt window is not visible, Qt's update() will just skip rendering. // This confuses mpv's opengl-cb API, and may lead to small occasional // freezes due to video rendering timing out. // Handle this by manually redrawing. // Note: Qt doesn't seem to provide a way to query whether update() will // be skipped, and the following code still fails when e.g. switching // to a different workspace with a reparenting window manager. if (!updatesEnabled() || isHidden() || window()->isHidden() || window()->isMinimized()) { makeCurrent(); paintGL(); QOpenGLContext *c = context(); c->swapBuffers(c->surface()); doneCurrent(); mpv_render_context_report_swap(mpvContext); } else { update(); } } void MpvWidget::onFrameSwapped() { mpv_render_context_report_swap(mpvContext); } void MpvWidget::onUpdate(void *ctx) { QMetaObject::invokeMethod((MpvWidget *)ctx, "maybeUpdate"); } minitube-3.1/lib/media/media.pri0000644000175000017500000000150413500741171016132 0ustar flavioflavioINCLUDEPATH += $$PWD/src DEPENDPATH += $$PWD/src HEADERS += $$PWD/src/media.h contains(DEFINES, MEDIA_QTAV) { QT += avwidgets INCLUDEPATH += $$PWD/src/qtav DEPENDPATH += $$PWD/src/qtav HEADERS += $$PWD/src/mediaqtav.h SOURCES += $$PWD/src/mediaqtav.cpp } contains(DEFINES, MEDIA_MPV) { QT *= gui LIBS += -lmpv mac { # useful for homebrew: brew install mpv # LIBS += -L/usr/local/lib # INCLUDEPATH += /usr/local/include } INCLUDEPATH += $$PWD/src/mpv DEPENDPATH += $$PWD/src/mpv HEADERS += $$PWD/src/mpv/mediampv.h SOURCES += $$PWD/src/mpv/mediampv.cpp !contains(DEFINES, MEDIA_AUDIOONLY) { QT *= widgets unix:!mac { QT *= x11extras } HEADERS += $$PWD/src/mpv/mpvwidget.h SOURCES += $$PWD/src/mpv/mpvwidget.cpp } } minitube-3.1/CHANGES0000644000175000017500000003270613500741170013514 0ustar flavioflavio2.7 - Show toolbar only in "media view" - Don't draw channel in playlist when all videos from same channel - Use system proxies - Ability to hide menu on Windows and Linux - Use system icons on Linux - Remove slider custom style on Windows and Linux - Long press on stop toolbar button to show "Stop After This" menu on Windows and Linux - Style tweaks - Fix sidebar resizing on Mac - Fix floating garbage on fullscreen on Mac - Fix painting issues in "search view" on Linux - Updated translations 2.6 - Windows 10 style - Prevent sleep - Warn on GPL build without API key, messagebox to user at startup - Safe search - Custom icons on Linux - Drop QtScript - Move to Http lib - Fix GNOME media keys - Notification count style 2.5.2 - Fixed VEVO videos 2.5.1 - Fixed VEVO videos 2.5 - Upgraded to Qt 5 - HiDPI (aka Retina Display) support - Mac style overhaul: new toolbar, lighter fonts & tabs - Reworked icons on Mac & Windows - Status Bar hidden when not needed: less clutter, more room for videos - Clickable links in video description - Autoadjust window size (Bye, useless black bars!) - Smart date formatting: 3 hours ago, 1 month ago, etc. - When opening the YouTube webpage the video now starts from where it left in Minitube - Fixed videos restarting after long pause - Dropped support for OS X 10.6 - New and updated translations 2.4 - Now using YouTube APIs version 3 - Now using HTTPS everywhere for better privacy and security - Minitube now automatically loads more videos in the playlist for even less clicking - Updated media engine to LibVLC 2.2.0 on Mac & Windows - Fixed subscriptions sorting - Fixed toolbar style on Ubuntu - New and updated translations 2.3.1 - Fix playback problems with some videos 2.3 - Take video snapshots at full resolution - Faster and more reliable seeking - Faster video start with longer videos - Slide transition in playlist navigation - Make the volume handle red when volume is zero - Enhancements to the search suggestions - Style refresh to make Minitube feel at home on OS X Yosemite and Windows 8 - The Mac version is now 64bit and uses the VLC engine to play videos - Fixed minor style issues with Mac OS X Yosemite 10.10 - Restored compatibility with Mac OS X Snow Leopard 10.6 - The Windows version has been updated to the latest VLC - The Ubuntu & Debian version is now shipped as a .deb on the site. Goodbye Ubuntu Software Center! - New and updated translations 2.2 - Subscriptions context menu: Unsubscribe, Mark as Watched - Added --stop-after-this command line switch - Added Stop After This Video Unity & Gnome 3 action - Fixed painting errors when scrolling playlist on Linux - Fixed bug with dragging playlist items from the thumbnail - Fixed some videos not playing - Updated translations 2.1.6 - Fix some videos not playing - Remove obsolete categories in the Browse tab 2.1.5 - Fix some videos not playing - Show video title on hover when playlist is in minimode (thumbs only) - Lighter font for video title and description on Mac & Ubuntu 2.1.4 - Fixed fonts in Mac OS X Mavericks - Fixed "busy" mouse cursor at launch on Ubuntu - Updated translations 2.1.3 - Fixed video seeking - New and updated translations 2.1.2 - Downloads only enabled on Creative Commons licensed videos - Fixed playback of some videos 2.1.1 - Fixed VEVO videos playback - Fixed Ubuntu skin not being used 2.1 - Channel subscriptions - Move window by dragging from inside the video area - Faster startup - Optimizations and tweaks to the playlist - Float on top icon was missing on Mac & Windows - Compact mode window fixed aspect ratio on Mac - Ubuntu notifications - Fixed skipping to the next video - Fixed compact mode video cropped with very small window - Fixed long words or URLs in the video description causing a window resize - Fixed crash when resizing the playlist to a very small width 2.0 - February 1 2013 - YouTube categories and "standard feeds": "Most Popular", "Featured", etc - Country selection for YouTube categories and feeds - Autoupdate on Mac and Windows - Related videos - Related videos are now appended when pasting a YouTube link - Bigger and nicer 16:9 thumbnails - "Show 10 More" with a single click - Play video in the playlist with a single click on its thumbnail - Disk cache for video thumbnails - OS X Notification Center notifications on video start - Ubuntu Ambiance theme integration - Fixed some YouTube links not working when pasted in the searchbox - Fixed playlist drag'n'drop - Fixed system language settings detection - Fixed clicking on channel names not working in some cases - Fixed incorrect number of downloads in status bar - Fixed looping video with Phonon VLC backend on Linux - New and updated translations 1.9 - September 27, 2012 - Adapted to YouTube changes - New search filter UI. Filter results by publication date, video duration and video quality. - Sort by rating - Search spell suggestions: "Did you mean..." - New downloads are now added at the top of the list - Video definition indicator while downloading videos - Simple integration with Buffer app - Better fullscreen experience on the Mac: sidebar shows when the mouse hits the left side, mouse and playlist autohide - Compatible with OS X Mountain Lion Gatekeeper - Partial Retina Display support. Still using 1x bitmaps because of Qt not being ready - OS X Mountain Lion notifications when a download finishes - Fixed flickering in fullscreen controls on Linux, also playlist and toolbar now autohide - New and updated translations 1.8 - June 28, 2012 - Enhanced Compact Mode: window on top, can be made smaller and remembers its own position - Adaptive video title font size - Unity & GNOME 3 actions (aka Quicklists) - Mac Sandbox support - Added missing menu item to restore hidden window, as per the OS X HIG - Fixed duplicate channel names in suggestions popup - More responsive UI while loading videos on the Mac - Selecting a recent keyword now also sets the searchbox text - Selecting a suggestion now also sets the searchbox text on the Mac - Fixed search box being erroneously focused on the Mac - Fixed wrong localization of some menu items on the Mac - Fixed playback not starting or being interrupted on Linux - Seeking is now disabled on Linux until the video is completely downloaded - New and updated translations 1.7.1 - March 3, 2012 - Fixed searching YouTube videos ids containing the "-" sign - Fixed search auto-completion popup appearing when not needed - Fixed temporary files not being deleted on Windows - Fixed quitting from the Dock on the Mac - Fixed bug preventing system shutdown on the Mac - Fixed search box selecting text while typing and losing focus on ESC key on the Mac - On the Mac, "Quit" and other application menu items are now correctly localized - New and updated translations 1.7 - Jan 5, 2012 - Clickable usernames in the playlist - "Manually start playing" option - "Stop after this video" option - Window "Float on Top" option - Ability to skip to the previous video - You can now start Minitube from the command line passing a search query or url. (Go create browser extensions!) - on the Mac, showing downloaded video in finder now also selects the file - Don't quit app on window close on the Mac - UI style enhancements, mainly on the Mac 1.6 - Oct 28, 2011 - Find video parts - Mac OS X Lion fullscreen - Menu reorganization - Social sharing: Twitter, Facebook, Email - Fixed bug with very short videos not playing - Enable seekbar on Linux only when the video is fully loaded 1.5 - Aug 5, 2011 - Works again after YouTube changes - Drag'n'drop YouTube URLs to Minitube window - When pasting YouTube URLs, Minitube now correctly plays videos - New and updated translations 1.4.3 - May 15, 2011 - Really fixed some videos not playing - Hide toolbar and playlist in fullscreen on mouseleave (multiscreen) (Patch by Rob Halff) - Fixed volume level in the statusbar showing as a decimal (Patch by mru00) - Fixed disabled search box when in fullscreen on Linux - New and updated translations 1.4.2 - April 15, 2011 - Fix some videos not playing - Full length videos now start faster - Fix invalid download filenames on Windows - New Albanian translation 1.4.1 - March 15, 2011 - Many new and updated translations - Fix videos not auto advancing with the Xine Phonon backend on Linux - Fix dualscreen behaviour in fullscreen mode (by Georg Grabler) 1.4 - Feb 8, 2011 - YouTube channel search - Fixed many playback issues - Progress bar when loading a video - Command line search - Partially restored seeking on Linux 1.3 - Dec 10, 2010 - Minitube works again! - Big internal changes in how playback works, seeking is now disabled on Linux - Brand new icon designed by David Nel - New Macedonian translation by Veta Branislav - Updated Finnish translation - New german translation by Jakob Kramer 1.2 - Oct 11, 2010 - Ability to download videos - Support for media keys on GNOME - More style, especially on the Mac - Fixed crash when trying delete or move the the last playlist item 1.1 - Jul 27, 2010 - Minitube now correctly plays cat and mouse with YouTube - Toolbar restyling - Levente Polyak fixed moving more than one video down or up in the playlist - Simplified Chinese translation by Changtai Liang 1.0 - May 3, 2010 - Ability to play Full HD (1080p) videos - Ability to copy the YouTube link and the video stream URL to the clipboard - Fixed videos failing to play - Fixed missing caret in the search box - Better toolbar and icon theme integration on Linux with Qt >= 4.6 - Completely removed tooltips - Romanian translation by Ovidiu Niţan - Greek translation by Giorgos Skettos - Dutch translation by Brian Keetman - Arabic translation by Sderawi - Portuguese translation by Daniel Rodrigues - Finnish translation by Jesse Jaara - Bulgarian translation by Tsvyatko Makazchiev 0.9 - January 22, 2010 - Ability to clear recent keywords (by popular demand!) - Show the toolbar when mouse hits the top of the screen in Fullscreen mode (Linux only) - Show the playlist when mouse hits the left side of the screen in Fullscreen mode (Linux only) - Fixed toolbar search suggestions working just once (Thanks to Salvatore Benedetto) - Fixed toobar search incorrect handling of keys that also represent a shortcut (like Escape or Space) - Fixed time formatting bug with videos longer than an hour (Thanks to Rene Bogusch) - Fixed long queries in the recent keywords list (Thanks to Vadim P.) - Norwegian translation by Jan W. Skjoldal 0.8.1 - November 20, 2009 - Fix showstopper bug: Normal quality videos won't play when HD mode is enabled - Turkish translation by Ali E. İmrek 0.8 - November 16, 2009 - HD video support - Volume level and mute is restored accross sessions - No icons in menus on Linux (GNOME 2.28 style) - Select search box text on Ctrl+F - Handle HTTP_PROXY variable with trailing slash (Fix by Eduardo Suarez-Santana) - Croatian translation by Srecko Belaic - Latvian translation by Inga Muste - Galician and Neutral Spanish translations by Miguel Anxo Bouzada - Hungarian translation by Krisztián Horváth - French translation by Guillaume Betous 0.7 - October 12, 2009 - Fixed "embedding disabled by request" message. All videos now play. - Slightly faster playlist painting - Fixed overflowing text in the playlist - Fixed view crossfades on the Mac - Fixed FreeDesktop icons on Linux 0.6.1 - September 15, 2009 - Fixed showstopper bug caused by a change in the YouTube web service Thanks to Guillaume Girard for reporting it 0.6 - September 7, 2009 - New search view look - Hide idle mouse cursor when above the video (Linux only) - Volume keyboard shortcuts - Keyboard shortcuts appear in the status bar - Better error reporting - Playlist width is saved accross restarts - HTTP proxy support contributed by Kiwamu Okabe - Fixed Space key not pausing videos in fullscreen mode (Mac only) - Fixed window losing focus after exiting fullscreen (Mac only) - Spanish translation by Rafa - Japanese translation by Kiwamu Okabe - Czech translation by Dan Vrátil - Hebrew translation by Yaron Shahrabani 0.5 - July 31, 2009 - Search autocomplete - Skip to the next when a video cannot be loaded - Playlist items can now be dropped onto the video area - Fixed messages in the playlist not updating - Disabled view crossfade on Linux - Save keywords only when there are results - Fixed fullscreen keyboard shortcurt not working - Polish translation by Grzegorz Gibas 0.4 - July 2, 2009 - Finally fixed playback start problem on Mac OSX - Display title and description while video is loading - Compact mode, contributed by Stefan Brück - Current video position and total time in the status bar - Keyboard shortcuts now work when in full screen mode - Fixed crash occurring when pressing stop during a search - Argentin spanish translation by Sergio Tocalini Joerg - German translation by Stefan Brück 0.3 - June 15, 2009 - Can sort videos by relevance, date and popularity - Doubleclick on video goes full screen - Video context menu - Can remove videos using the Backspace key, Mac laptops lack a Delete key - Keyboard shortcut to give focus to the search box - Load thumbnails asynchronously - Fixed wrong (absurdly high) number views on some videos - Now Minitube is ready to be translated. Italian, Russian and Portuguese translations available - Cosmetics 0.2.1 - June 1, 2009 - Fixed showstopper bug on Linux: Minitube fails to automatically play the next video 0.2 - May 29, 2009 - Faster playlist results - Ability to (re)move selected playlist items - Drag'n'drop playlist items - Uses less memory - Basic fullscreen mode now works - Show the total number of views of a video - Video duration is now overlayed on the thumb - Update notifier 0.1 - May 15, 2009 First release minitube-3.1/images/0000755000175000017500000000000013500741170013756 5ustar flavioflaviominitube-3.1/images/app@2x.png0000644000175000017500000014277713500741170015640 0ustar flavioflavioPNG  IHDR\rfsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org< IDATxyeWu[{UJ%* 1H6d6M>1Ykȇ$M;#tچ4$v`4B *!UjTUWpy-^kְ!ffLٙwi3m^di3=&LY6fL6fzM6ӳ8m2ʹil,N `3mgqdi3=&LY6fL6fzM6ӳ8m2ʹil,N `3mgqdi3=&LYv֛~9㶁5-+קL#+Do^+{7@XcǍ,W[*/ . ;_};}~ᶉ8״+sW,#y sߗQFf 7÷f/|;}~{AgYV|ZbZ]J]]LrՖY)ߊ-] ;g4W3ݙդi ׉GKU!~UJ54R;ʵVUZt}>}Wozm{拷+ak%g׬SвݩkK:HM+ *U/X_fIlє+s+tỖ?x يʬ WK˵2U}`(ScsI 1,ݯ3ld^4w޽S[m=k~ ~zmmߐ$e[+kEZS۹z UcH[rZeԖ]<^c+"^z}l~M ;sDXomTޚ$*RO_/g>}{_5&ߧاoY|Wu cR?}BZauׄC.VHP 2٘ƻź;ڽ4!z^ۀY~wt Me^«Z~$ZC niJnU~մb=eW*}ruRřfїK',w4vV͉Jk0Kldx٫,՞T굨!if7k˯ IF-fſg_]OO0?z۳!Xb,э=K齩$]BQXqS@kxLI2Ka]gk|~Un,izux=+ uM!`z?zXkzF`w~,Yk}e,"DūpG+Ysuu%R[I<H?}B_+#8͈엳sUX* jUUVݢ3l|c1'o<,7%Ў0o+iT+%PTK;)J3 [ GQډ@HS\2{5 y>ڱg?fz)CGSg^vחz1RNt^2İ.NTz>r[VGW*&I5y)NJO` ⤾:8&Jj Z*,Re&1u.ؘZU`c(D4pc{Q<#W&:Vi|o#1~[B.6=m Eb?rk[OSW - ޳Hnz b'O!P9QܦglooMn^ k_+]IXJ,)4%#|2A/Z,uu*G>L իQpIy$;]߀AD]LF9\"amWp@nO衵X0>~*h:P>{STNpX+Q_8 ^ofoش!*cɬߺ|;3J +aYЖ'|a[G jPA SD lTUȌӥwC;*w%Fj ][㋠U%8ўQwtt0QJh21x $/b&90 ++`H\!@zA aӑ }pfETkBE#%&6j2 )13+JOBs=Dڶ1pkr)Fp!`h>1H} A[նowyͫRE 樓<߭ާoFqn)坺 '!'T+XPO_{͇'L$tEKxHc*P<#pTW#({hb9Zr=B \fy*E:wLk°kɿ*SGwSW a Ss"6"cT7D001,s2C E}6D6v.7﾿_n]F,^@0+LjDQ=dD\ I96EWXf`^FqO.Xa@bC`(9aV ~΀e됈L``˰\Z\w {YdX(E}gdLk ]qguhY)X)ݯ+']Sm 5o=*B,tL_FnR#ٳ gYF3ɀ<#dYBe( eRBf=6γ!X"̈Ƞ̀JL9P<&YR%y! 6BQ3- iٟ#a f?鸤F B&oU uF[A6py,:grBްg>Z`pia p(--ʒQ,߁d(K똂0|uu*W~W%ʺ|DY,,L%Tk>U0 90ArBdr ˅Ax/I}9aL.1:$}TI/0 &s@H0 }b$IGxFX<ވg\Q͝T=-qfaXV`V 2!NbPF ݱ-( } # l8q0>m-3EVEL, PXWqϛ-ȓ\0m._߀0,}q 7g@ȐF#CAs0``s9O'a0J$a= >e]с"#P7 5!z<u)wHv ]KR=j(;1k./8d8tDA&DeÀn"il\nDLlbe01c iøy㒁 **pVZX <@^ BQ2 lal\ߘa$=եe-N.1>S`5VM+53X>M&R;k9h4fӠghzer#ݡe8=iN0BvUn>D`}[P@1.?a= I: I)kٻʉ@ ![YC~ L[ہLy)?cQ)R2fggՐ-Ѣ =TEUذ"Xz<2&r 2 GyȳEM 8T9ӱq ,"pg]~Z\"1+4{|Hx4`Ų3@į@|ļzs B(N.+ `DMp}sF=fzXU=ҶxgH=?2Vm>WP:[2]nT0^z\Z'x,94㥻XWy-\~<=4ZbGqa/ X cFf͐d Y<IfrV4> GIIQt<c:#8F /=c:4X7U~@ږRҔ10* 'pܱd\oclIHBiEīUx`K(P ͧI]]cXM1ktmgff`àAE(sg+(+Ɉ%Q5"ΗV2r7jvqe5b.@ǰu̝}i.,l?3a$24k{q~WoH\X $P d,T x&!etaLDE݋6*PKI(l ?DUii,t׬z΢\nYXq1`K%ǰrV ]>mT^X`}xlA37عu/P29\Z;@QZ&jzJKy*k<`` 2@ƴ!`6`|~0ߵN ,Ňxw1&˜!KB̹g j<̼]!#E"C0b"!d5hO!YGj-[G^ڊDe\߽؅,0R -Age 5 *ADҏ&sCR, >6>6=pba09Bgm(W2unR B=U4r t8 k}iC a(lDhJvU$L|eğeb&a5@= \^F29LĈxȎуR!cufH %4nB%˲f[k}9N2;`EjtVz)m饽E~3fliam鑀5eA ČpvZ2]K'}sMEn 9:?Ŗ֤TD^ҍ\F<v 0h/]X_W/~1nvUU6˨ q>uӹ@W0n9! \|y~8v81?g ssp3-/ Oo VQX]Ydpn~YxG|qܹxсQd$@&d=KT }lK]Z:!5 863pao_^ Rۇ|=܃㘝1k_~A>_d"oTW W8Pؽ fF2R 1^I ՗ 7qd)@>5r@^MiJyQDsi +(-J2~l`UA~L/})w~||+m2zX˒a иxH|.u %WʗPMa cL6CYپn ˜tz|jގ;~_>i1 {؟ȲTp @`> =j=@{: @#^uweB,( }L@=yC9LT(`I8&}Ԗk,,Q\(z]t:E:.Qtbpc8~pY͑!+FS⏿1)OeYbnnb˳LFK#o oYKcǎ;3E(z4e =ĀWI9g2K߃={`ddqQ:t8s N>3pd2z,ѣ8r0==g&*#fffx; EעYzo5ԿXb]^|qM7aǎغu+&&&jn1??ybjj ǎWU?3 ^ᬎ|^{-FFFU݋믿_Wo|MvqZC+s-'ŋ(KuQe 9M߉277L3Y` Žm5ߊdFKc{=ὒX>)R4JzUR,kMMy:<_ XٛY[-,e4[Zt pYCpne@ml b`h[{>0n[`=+W0u".{NUdly݃yd1؂`5"V ]/_Ν;aK0::zB}t˰;_~|Irt8K^bz뭸馛o߾KCCCxŶmwO^mc*6i"" ( -4#>_%~0QP wH0C8zce6I>hŹ.څEgXh(PDG| !Y\؍ }#) `!\70&eɩ SAPb$;\;X׊B$ܵet Ս wP fdDl 6 s v\3vƛob˸t?y{Sρ2(aɈEԕ;B @b BN}Ą;naaÞ0c!0KbvIxKz+nf8֒&''qw sc~_j:h$'<=TzH uDO-"ެEZC_v;ٻ< Bt[>gA1(%ϝӉrrZƑ|O$(0t)֭Uu"$^hԛ;XRp`ܞ}^C3cSbф&aaa5`׮=l1}e'8܋߀^O<-b4B"`mn=&Je ( Q~{%.a^oٲn7pi0 ~Rk-qi{xxÁ}jpQLOO̙3ȯhNWήfQDUeKA :38 b__{C9\ȍs5ďoq9 }ofNPmE'*q}.H aĊr@ ZspL>a9 95f&푅(,{B: ̴KL/P\vHaah[{ 8'q'>pGU&I![~v)t2ێ|ؾ};FGGQKz8v._샒fc= .GqGGGqUz_7gF}ۍ~u o~p8y:8u< c # 4 ZsV#CK|" Dv@%OS_sj~W&rVBpRJ?Zl۞j ÚA;,؝HnG2Ynjn+X95ʙ̌S]mh /G|/OoÈzDEo,%F]KI5|{`4fffpAc/Ǐg>5߮]goǙӧ;66fi?ֹ|+!Gs5%v*vAzB0M2 4(2oQb#1yb7) Q"!D\JKزձTu #$PiB, <z`G|sC;|{t0 Y~gl m@Q2ENvi]pp< 7qaK^=ϝtHX&qu*e$j'l۠`CCCz~9s ;?8~8N>(- pكno?c011C̙38pp?Ȯo7gl:S݉oA]2\xjm! xFL1"Se" LÇ#9<|^wQ^?G~aJa?0ꐶ^a()h cFֱr11ۑ?z!Qy\>?'ΝÛ_2G@Dhn_hvX\\t&6`DKu6VrYs_|bמ,s`ux mhƽDRJqLhW?pr c>k^{:>WKS_} @lje){"uW̕$.tXS_).PH5kb|0www3zU A\$ʜsK뼝={W\-[ ExJHJnOCڐn|">?w6FL`ptvM4]Љ3!V؝NuWP$'`:ΜF "OLp.Aiq2Tir?8? 8}G}LZE`p,PBLѼ*ɿA{cW'\:F)QO|5mFzxro SF?0~ʼn*JulnÑ#G<Ncۏu?T5t:Ȉgݯ#9 0w9Aa Wr?\qannh8Q tI=8"7"`_~"]ߪ'$Rgbe(ʞfN(uL^Z~x58<K_UoPF!\ 5=rf3;4bC(Ylm"@<1= Gğ0pg< йuC^aY8q/~~;NfFjMj:*Pmr. ,,#Zu>dKh3ຝ5 D Y͉/b/@p ,`֤ڠP$DUYhe ޛՕЇ0 ^XCP{ o!-VinQTVDx2XP%[O~dA( :’M^ LY,p0{)hezC R|mzɓ'Q>}cxw}7^_"n6w: 7y a*055??կ~)XkG'ODİI_R4Ne @P1+ $fkpG_p.v15_ 3`Gv)p…W#{z$~Yݘ=3Z |HQ/G +6(ȌJRNjU-++Y8RG`VI]aO-Hg0iU?r* x,)lE&q.sbf.\زs/:D*!~B~'~f`נAkٳga'> 4M>|{޽{199|Ox)<8v1ڵ ^/9lzz.];=geG887:Lcf ^7gEnfFx4thX0{PG' XڈHT ]T/y"%QH$Mdzc>#xbu@$9x# cSV@G%R|6Ps~X"CS9PFHƇs\uyMwphn{ɫ垗$Զ٥e0ּ3|Au]ضm;Jk4O|ַo}Z׾> {ꩧя~g~ [%w* *ג8*8>ˤv"?jt_jcMO| _ٵpҳY`̾a!K9uW;S]J0W/öy!x9ykD3{nKV,GBYI:tẦdҩD'wJdL$CM*cHt/v ĄМ~TEsΈByRTeX# 2-Y\FhA`[FDYfխٿ5ρox:te E/EĐ?f/^ıc022s GQg笶L/0Y_20ǟZ}ZJ · Jb+2,4H7K/y.99rЧ090J?+%oZ0J8Tk>Xb!bJ_Ej鷾2[\ݨnzHhPVQmM w=>. 8ۘa:&/#^[^ #{v >E/xS cU"~f`aw` ρ8?&NNze._X|4"F&GJ'Ƣй ({"Cb1Ps0Ȓ(Z!|b(NJ_b91<0 |vB]V^E h%Oo0B;"%~%&, Үpu`''pȕle~ܧg` \:6n}7+<t䛷 0lq7}sxqw`ǎ(Ӫ `jj _077>KKfj.:+@/Z/Cr}d33p;`LK~@2`nW:l ӵZ`ؒEJVT } *e ذ*prpYz恮VQ0:U}^1}'ʋS ߸.oh@$l8Y1NUqX%9!"xC\=ܷ)a24sBԱNvHKPN8o] /`Fq|Ƕm۰~ݻccct:̙3Qd\bCȺ aK#MtnߤC(0H$o8Ӆe 0"uJ,jف4InB*բoo9|CT'N7nKI/ & 籲 #oTfvU*#܇Q]8 h|&a%-BϕPSTl0h?5WCC-⮍38xpȝ!`\+{r ZC-6G ^LPu m;L*zNs 333x衇wCN><188<4`0lo}-cT:2}-VMD}9(,czn9}!JI,eR/YKP$eI"{Ԫ_TS(ʛBx@TE E,j^W]k?W2cBW+ pRbɷlO-W=`ґc` ț8t3;]gd+..voOY IDATɇ;qpX!36v3ןᶝ8=éKE^cM\ ^F= {Gs5eK@ڶm`0,{0=s\Vff0pQ@CwDⵆ!M/8g,R_hjJ̺Z BJ Y}N !=#_Ob;aQTXIIP$*XVHur`|A0796 8ұ d'qC@d.}݄3's1q}Nr5º kCo9p]ݝwKH_3/2-#9vh醷5B+kJ }MțM\9@V@0BlI ^4o1uS;ɸ7y!rC$7zgԦ?"O yA6mBZ,%}ռ׏8תd}^xƠ?YB$D//Q7"跾Pݱ u!UdHO2>M=Pع8Hn@}Dʵ(O%~6 p` ,f薮t0 7LMѸ"O<?νܷNSbQn|!lg6ԒLzfg±`$$Dm~ n A@s(㶤*UJHo D]CtQ 9QTvxه소%L&b7Hp *Wͣ}gG㘎QX `Us[9Pǐk_c(qw_4K+Db FNtݛ{ضs9Ar`N2x*b?}M@2{=Z'J;K:aC~a$-㲆qvlKs]G ,d-;cfX2:-U7azVϐynه Ca,^= ECc$p7NF2@Q4XtI6=lDcPb1=cm(uH;ZY^x(`&Dq+}siqP\g`k)b 8bJԀVR7^ S7$"a ivqbwE^iK@еSOZ J#n6 n#Fki$%~RS߬ rO'yǒ%* }u_DTw\DJi/˽HJסm`lTT Eg;<Z؍#g*uE뺖9k@q|!ǯAI1A%cW[Zlv /b7wq@^Vi=i{K^z `S`VNY NG !ֽR(R|$n br2mЅM߁<Wt$єY),?}',3"Rb+ A> x쥼`t6aLkzH۲Ⴂ8<[>ʕ&N/fؾ};^`ll ;v^dnݚr ?>8x >ٳرvN?2>O %~`P!j)щmܦ iEJʰ+!:jҊR[0[/ڰWjSho-et;zj bĖ|7FbQ"E/ۉ'oGt|d<(WH [8c'|{j į+-VeX.Nz2Ws)ZwzuoqA+Ygi=#sLJ3Ւ=vjfRGAߚqz1þ}׿8|0]Bn''qww|W24 zdH@qG (閞R91UKE-Vٹ‰ Q yd( r9Ό'Lr EykZmY Hj͒rkG#`ɧa`)`S Q @~OA*M<^b2H_B,{+{ `UPf c6~Y6rh %cxlg>*86j;D{v=`qqy~ǰw^LLL`hh8v>_*:>|zx$vڅ©Spb~Z p5y<!H m`byl5`ڽOZ3W.:ǭ}ܻ," mty\Snיط{knvl^D, ٞx,#N&4yK1' 26ƀ_ cK`d}F#;w}߇O~_Uhx'pU| /F_W NN+6Neoh4N8\.l$:h]yiPJ,e}KZ%B#К,~d3Rr}l J褞%.<'Scy^~ X!4ji!LM* ە2D/e HwY=z2:R'e(ʄ倝3{w,]=7>?zuvvvl?}Ν;~oƝ+W?gx~?`>x饗|rx=<3H)rl8= f} 筫:8yQdzb% N䜲0wϑ+#S..Bnfv}%6CHPQG5N!'D .PzFNDd>D7/4K^ |s8)uUa|TC}<0lc4TL |}>˃/#=^|EL&\xD-O4~h2/%~h?K/ȏ)nܸag,K={/^x<Ɲd}? \XBa0Gb!Nj Y!}K<,FCDi%ȮˌȤL eYF&BdD5!3i?(X.^z CCFRJƒPKU?pՀR σ$v86J0?c ҷt 696'sT!.j|TVILY|C1HU* as%xؿzq7bւ^3S3cXHz?0 "}9?C^;w"k׮agg%y1flooc>~۸~ uc R7*ˈje17,m:!LS%G"APXF=O^8Pf"1Kd,Oq< 9N& !"mf8̌X,ٳX.soO^03X,ߴc`6k-|;}TfqHtҰqذ{Ne%eO{ia}HzXJ"P|R/2M7␨QE#F8`@do+GC*oPu=Xc_:nUCڦ {"f;C]qbu@9#0[20X>cV%nJxZc>c\})gqy͛7_hcm\'~'p||˗/c\bwwgۿAf<6ɉp~Xp4ĶɧG^Ԭ1lD*A[ $/W eܥ!Zwᄗ"ѵjJN?yPH@œTrKRJ*ѶoC] XUBMoɹtvN@pT ;m(a7>Owi Nk\/w#Vp5MǡUD iAD$v5ԛP,Ӏ&xUUT'^6mGwL B]4Pyppas&y*w]L-hwVh_*677n_ţO ã>{GYʷeѥK+`6akk 0M<Sh65agboO x&U\_*|zճF"US!5/o qO_xn nPBFz%jf֐mT^4W-"Q)qn ܰn`D;S f,يb9B^78:;!Fǟɟ_*Ο?mloo0N1KKlll7^hKqWjW0J ^ZRVjHC)v6kh(@!~̶^y@fxs<}8nqK\;ltK=h^';.1Nq-S RJx/~W^Ea9;à -Ex̌Ws(lD޶1STt:Vq^t ,q!LuB1h0ƊHA]u 䞨rN˭8ū *ɖL(0%E"T{;A9= @hc`)S UQi广%8pf2׎{[2GҢy_R^"<3ŝDߘTxAk' T^AQ*ޙ&\qdu+jo+|>Ӏg $(,D qph+$A] xeeL#&8QSiuSIC, #N&-un%DĸLr:xUJV H'}t`q{q3C~Qh{8F™Iripz cG$*Zāo;.b6D/ëHXBk~\ưuʧTk u "ܯy ' : ]~N} $b3 g `˛$^h|Pd o]7I؛4gޥ&<gf?,M,g#F*2 [g=K:1>J~$: o&E 8U r?DeV4˹VRVD26P (%xVk8s} X4!V %bt\$c90F `ꗫ `6IX&|i ~0G ^LFc0tKoBaq; Ǟt@6(STFOan9ăn27'px }Z:6W[z~7uM^獥 prb&&U#,aC MuD2 Àx8ދ[⑸&ى!Wo(4Ux f9W:/K'p,Tr^{F-rlH9mL m5i{]evW}VWL!51^}Ԗm*{l`@J0I9~Z P%8r ڧ%~`t$XO1qUue"gp8mx`i@$p,ϔ{_kܴ X1)y}z@ tk\I2ҪU+L;gp%Ĩ†C]=Ru_޸1cCCSH (f:-.:ׄ;nnFhNoWk&tb^wkFr|?%4#!ggI]{0aXQmDoU)nwRLyZg Y<K}#nhit7qjwC1594PJi4[5FO$ xU+1+"{ׂ@uZ!{!6I桗Ob8gUtua$u. u}gh:SMc,w',8>r;-. CjeFa'Ow/,b: h\Lȃuw Wn1P:Vۼ"* .3SzMʤg+ "щ:9x}%*|b*$PC&Bet[;a&-'jr(L_f DUJlt`2'.6sx (DmX. +:-P= G|R&j ."s`A]Q_[$&ZIӶ&o|AzЪYqLXi* QM<+t k\.m̟w>hYf@ԁù30d[3g6p[)b-iB$ > z%2peq ntW/-aL "QцY?N"־7JБ.+P8\y#``0Q(ɀY5,5h!?8NCEq.pJ #J1 ) ϲ4P \YWnZZ'#^ZK7 6.P$!^ h) @4HFL3J mAwEb>᝶maosT /WRwޭn^du>=,4J[Dّ^*Q`g kQ'hfO 5{1;*{CB$ʓU]*ҖF dRyVA#?zdEr  m/׸ufJeK}KqA3:W#%ҙ1 F5z.2!c4 [Y"Zr46Ϝ@Iۢ" j<‘V$Z'6 }nz94]`jˢnL2C|RAFGe/k 9nfbB '(&lA@^VCmVwfK}: (ԼC_]lュmWD~r=9<#B(yV)n:A[RUA v/B=䇀H)yJpmI73dG_&̥GfsF"0x`M4'^"0DC\mM,uHpġZ·?rm$93z)P%%֟;z"RU*lW/9<;擴scW+_x G +X, "4QPy䂁V \=rw e'*NJ.w2dn*>*s0P:~?८oV~e]7!*񴭕.iV1oDy)T/QѰTM27pt ?}~eT_'98y},mbP B-SL8 "9+zGSN7]5S>P$bLeP%6!z&vɀL@oEBJ2u `pzpP ߨB5p;iBƹX;aBt5ꭧm4dj\? Dcx7[Te yh<4T?^Q9Y$B̵jAHPr#@dm֨6Df. ~6C'^VJBy81v^>@N>P: 3ҁ#Ne~R6et#<ސ@@8`pW!*+[ebZ# ܛ~􁩠H^LjU,O6}7FaYt04r6~6OQq".j9UoW93c |"J{@`OX-Z\#4i0z10c" 5& `pVRL˥JB PX|(GQFa(52cP(Ra;qk#vf7λ)\q1ܡA(DUȎ7 F ^[/;IW`5PL h#SQNtP*s[:(`l1nDrX E:DiHlX a<")8́4n@U~:I!{W}ﻪ8=Ih_Rte{ ִ,S0Ĉ&D,ʝ30xM"L[0HW!'$Iw)" :vB/ dSyf Qw6$]`4ii)J34 #B8G4, {ZQ*JEs߷KtjQZbWz\v3]UM 5& Q mZ[NO6j P=^uEqCfiލ *hD̏oa0"UťWPY u:Bj-9j A(RQ IDAT"\ : fdyS\'M2хH".z5DqUo2 f"8;p)5nNLBpQΣ$rLiZQ)SXU W 9&l( ʌ% S%X Vqa;rhWM|@[hZ8|^l{>3ƣ&6J.Mک^AY?ObP Eؘ=B;BEٛsvMnG=;dvJAY`RdQP+UD^㨯D$l eQӕxeOH)Tp|p>`Abd7(ql.6:^D릾8qP|j*D5h cz=<TZ~}$˾ E1w&CRQH@ m=$_n\Etx.DLItI!)1!? e _+xu}g[_1E2z%X'88ZE+Ap v^ uAAXਂ`vuL @ 2kTyGRRO,Jh"Y%XɸYWtbx @.*]QrgYa6EZAfi=@Tµ^f䝊o_c2JX+P lX~ J2byP9Gc 0edNKj(feX> ] J/QSwq3]_ w8WͰdP+Ḃz@x[Vr\%<c!TMk?a1dkѸr~<,oUOHyn gE~cf<.DFw %K&9D5pfG#`>Ll!%@f7&0(%b 'XtΛk'1E L/rfT IJg|fy:c8**̈́Ȥեp,<]*3˷I碼/u^3 BT9K_їP"Y6WX gX8H r['Қ9A" ƶJ6G g7GF#8ȍ#xqfVm&Aúz&< LZ]~9s @-Gv?ƽIBKj;S*s%=RNd˸[D4Qjn.<*J(8?., k&vdxl4NVvy꣪W9> 鼳lj_W*WF|bO @(>V6d_ P)AVv }L1 SԱ"0:.i(Z3ᯱK(*7g&U Lwi!HgQBϳ5@NQ= 2O>B L&bѯIWQ5k&^y:g!`bHj-.@K@4t9XN,zsFYZ9;`w}t30^ a39| O$F/!fNE?=@S|T~K)aq|^kˁ(yHx1.Y1' ~ c²vicDq&nvƸ߆pZI>$g=|@ þ|2=͇e/D P;uRZmbV U9 m2X'k< +r)4 ’Z\:,\_,JXInz]1 + > RYTn-/xBjM&L+tq&&}t&1kё*@bȌMbl-Zjh[0`wcwƒZ/.Xu r5[(:<8xꔄ6YE4kpwnbk೥h~]YPbWd3JW#h62ۺ]d0'PDB3f=R† 6mҚO:+su|:оa~_ۭ!W_VHŁP{#om(P Y$g"[d/6'ek7$Q5RUC[cߞ7Za`EcíE~ n"4E?U?QemZ} ̏n }e1 ڦB $U])"È$IR)zTuuZiP;61%P,ei]"-ol{nWdNNt:{yWIM A(Q9qڨ;Lj3zU`6q2^lnv dܾFV RB$wdmoO[ C|\P3MUV@C?~f'nm'LnIJG ZZ%]\7,3Ѡ)6G*-D!%JpٱGcltg>`Ar iB5`C?VEԬ+M.ҀEݞ\r[}UXV]+`lLF8^.A{l(:g "1%s  H^2Xib DR6GQۃOx 1ʴp qZH,'r|bIA*:FS_63@ 7l(f׌3w,TS։mM5$cFglAG  tޛ䶹ֻPJ54^qZ"٭mV}M rgF`mѹK>à /!xP%6nUyGK~pUbkDsc-9"!)1̘h+gyiH`d*ׂ $[&J:dI Y2_q<`$P*#NOW`Y;r(:#O/:II(<_m/ SCVΧJM!  A;a2@޸TlPBqSR?BŹo?ť[r_ 㕿HXZIv檰f*ۃ/agJ-h@fFXI8gC_X_`&{4!Bz4&]\W$kt3/E~dU)$RA|JlzE,]' ;tXvGY*ɹ c(-6PV$2PUm"& ނ )ȒH ZTf"u1c{3pPlFa6 վ1+տ3(U~k;* xK|Pq}`{y77ki>NZ|k7ֻacs#aȹq'h>(:⿉_~4 E[v&C@*FĒ_a ' _׼G%WM}gFWV]H'X t3+L3ZpN6ݧ"/ Ll(aJ S>@exj̸k($4`lRյJ{n+㚝p.":L, `^lmɆ9'SHZ<`ȷ~cs2|x37C.X|? 3`ݶreUc,@P~N4SJ6.: *r޾:^8&)apco[=AcAj@l@u6dmTġ\K0u )|KwS¬%V^+k As{Ubn=۞*po !؄_fF(!qqa͛mJ2c@UjV* zޛ6  4CkU^q7op{jN[&)*hi=@PV6,9NX.2 %nOَH(e;moXm AJP[BЖqYTґ2.?rAbT%56UHa0( XQ<J!V[D$ӂ ߰ HY[-ʣՇ߫cѥ|ZAbd2Gy839)w_u_dBk()CuRD.$g<xQ"Eԗ Z:TfS%>?[XK-%x|oݬ@AMpSٵ_?I²/j:qaop H!dP,A6?.rt)qj'++/0EA STM™5jb  @6ox8  t%)?Хբy!gT=nMM;O (U w'K{`y9tV@l>rCV Y yĭK>zn mH>nj`L]*&<7~e4mjsPv}/5\qhϖMp@_=ќ"߭YK0BolQ{@ ^e誋sRLN^U *?-\GAZJT0FD706#?X}٬`Na=iNbJH 0Gt30`gsw*nМQW9خFǏ0gNR"(:TL"*]:0k:p6Xpg?a2o^}<]"9W8T2p"RK+''KrJĮ>XPU~E%S(bP]b5s.o=۪] ʕORi=X0շ lğ(_Rɷ!X˹O`cxe_,[ʘFWVkxƽ|My =|M+J@|m6 I L=DE2H{x;32i3jA(~xQ mGAḤ> l:*ܟdo,E*`.O6MLX2lo3o|Ðx΃AA]ЄΉzQʦΏS6q%v`/Hj$Vk p]^)$SƕWOpA?cw{?L \eKjb'n _P-Dau .xkU ѴbH(:m3;0Lnb%es^۲߯BW+tF{gۮpSiw67QST A!6b0ߚtuU߹!Q[CAԜ P*GuBnJm*u[[Ͳ`'f@y S-X"!g7? n(PLJkK$Clmnc(S:3<6u@W@27L6ȹ ke/0h` t1oR]Zy @B! T8bi* 9L֥F?IIcPdD$S'9:Gs{.ݞo~qig`|ΫM8~ Yu=`2{\=b H*7w>Ð7nm'>f@yDH-E&PXGPUR8J侔ӉZx2l ߭QKk8? E*T#|}L*2 y[Mוa3^*v~r6Dҍ'x_sxFQGBf5 X0>qa O_\_.WF QTiUVnjw[R)D% Wr:~>8JV*XJ (yʬ@À7-aF b1q2 <(plPKj?{֘cD?DbU=\CXU ! {]ѻNXQ1ؑ%̖L d @XpڗQ;7-LEY- Vx1NiWv'u.~1к qX:=3&/;eWFN"H6s2pQ[sB2)ztDhWV1bʢ_X 7` "ÇtM"3Tc 5YBC_ !g}8:{χ}9xOdNY3g5s.Bh*1]l-ݴe.! _FiI#Zjr^U0GRlBG.1 ._~_?WXp߹n|W\g*sD=CDeA8NwW YYq=0`;a@둸# IDAT (>IKۼ|k7')Ƚ@==m]y#JҾՔ,o=[nM5;~)0ȞzQ/u!Z m[*@C2*dΏbsc947HD;?X-/>po.`R@-׃7g\yOet&&#kx>ZZB x$@J|`>Qbxځg~REؾMui( *v |+8 '}EIf(i*J8/Xow7wp~o#ܸ 0,FQ/w U h+͉k9/Wzɮ"8$'\յ8mi^A[#̐s%R!gt7yllyGv3{;cݞ E}!;=mtL=A}NөQxZ(']8F&i7ᾱkH_{%DPh2R>Wv?ueqnΰD'F5מ/+,J'mگiDbD =c9@NLq>~kݭ6Gasҕ3`;u:Y*;az4_u"͗=}f 0 ٤&qWۿ7~\}RseJB\]nQoR%鈿7ON! BbAÅ=]~/_s=_ƫ} *}g mDǠ{/}Ug͛7裏8==U>@Pho!D⠁gpnUz5 ?x_p{>DӮj]=4ܬR:@*)B_A6W~FNX'CSxt+.W0 *͎fb00sy5ƉAGGGxv|m#tAҤv1A0ս3ɛٳgO>I}=>Tn4Qe\oK Lxg}8>> NNNs:K@(Ys`v r23Eղx{8E !=02+%ƴ<$ aQB(SO7A/NI ( :#<,ItO*6 `jjWe@z tNKxA N-Z3">-5p>gR*K3{x͛7X⏆{)uۿVh~NZs]*OT龅ի/r$mEE }///?}NNNpppioF6/-A3@p 8LC`v$#"Υ#fR5!sw5D8)HwV@  'Sٷ "ZQٳ-^i:$JKclhAdrtohHRk %ӊ*rLNܶ,Bv6̟{$S@4 3ggg_$Px-$_85b!!Sx+L*~ X XLy7.BWna@ʥkeh皬 0GhEj^I5@CI#L])L# dcl𣲼u@ ؗ&ps'UGTj @` Mw&)imy޿)/w .8 ΒMS=dU1גmOJC>SkV0] WO3]Ytq܇L-2ה8.K^ˡt%ݑW||.-r9B5; "+08f`8Po<%N}NP ΀ (2ݷ^mu(taZDu̕_vRgЛUl61wM=;I8ιdh2o)vrX{7aŠ': QMg3@bb3E,hfIr* VIƿomOKZ <ǻ:b+$f7GN*bR'2'+0Ka՞dA|ZG 1p/ XL@~P\K)&!c0vj(NN eH:k0VCu >6º'1}jw+ocCsW_oi(~n|@c=44#:dafGcتV<t| T~TP1_> .(PJ:$xXo)[`>P\l@1tЀb+IR;mWLb>}N?aaǤY9oym]Lr)5עD=z0KݤOa2=l@l;I+I:9?~ ՙۓ- zZ2[v _ @@!ӽP?թn XRݣ-}`?tj+?nY&97΃Q?KaQn Q["30`f1\F]ݜ{jvL^.iZ?)`@ys%Ɣsn7,?TP3$)C,d J8d1JnvFեQ3 |TK7=:N4H۳FT{ Q)h4xM3xLOT-8c;RI,XZ"C(o6EIJeؖN[#8 Dq>>@zED6cRL~ %UN<URJȭ4Ĩ~L\+?.}DvTD^tTW'ǵ,n^f͆;a1BToq ,kvHfF4Uq{rW_ퟞu 'N~"?~ra#GԳuR]*y FQ8;E+2Տ͎ =8{x2Y:U^Gڏ͑n~u|,bF%]]%""GMH4rrr~e䶷2o >==ׯ_{zuKFCry s6`ui6"r̎iWWW] gjo+W|qggg-3ȁ30׉_ܥF׀EY&1C6Q;0͘kmNU&l`Ll;~V*1]<"ua!)3,;g[vN_yg>p H!}a&fk۶ua_D9!)0] tJtYX ?eJ+N{e9*s E$ڹyh^6-$ lP 3do;\~Ij9}D$;f}ggg}? k꺎gssn%"{mm ^Wc8l"Jv./6|uircYv\Um4IDATS﷪'ɴ0@X)^`z{2߶p!=3!{Dnnn@ܡuiٰ8ᏝcW P3O4z,M3w3T $XlnWi2]~'ˢyS \?F}v&܁VDjjEiHc@B3U [JWL41e_y6;쾶sd[~K.-qôBOyo35D埈?94YY( k)rBҰw ꩼ񡡻REd^`Ac?SꛐS4IU:ȳڜ断sKۘ*[($2m7\{ўH4͗"ȗ<}!%Ρ9Bxg6DtEe]ic#&Lvּ}I#kv%M驠ّTB lB]4}w]绮an@zf\lsװ}^B^C$oZ:J0Ram; x9qH9wBx;fDDD,eI۶i/"~#"BD}EyA5W'}khP 3s]Vk:ODkqϲ})¬If+S̾wQBW"rju/_u8L>?jW9nݶmcx3O~Nh&PiQХ]u}۶7fs߽zGj x=:H!KKjF })973{?Z}m6wtt亮s{!p) ` \h֟j'nag?_\\ $E_hwL6+眓jg}f_kܳ@o\ĸiq /;i}w`zz$wb~*-KZ[Gwa|{B -_B }ghz´B =aZ`0-BOXh'L ,Z  -iz´B =aZ`0-BOXh'L ,Z  -iz´B =aZ`0W_)&IENDB`minitube-3.1/images/app.png0000644000175000017500000004170613500741170015254 0ustar flavioflavioPNG  IHDR>asBIT|d pHYsu85tEXtSoftwarewww.inkscape.org< IDATxyu;w}o޼AVaI@!ʢ”D-)⊬,R*Ue[b%QDUv%K-X""J@(4A ys9} f@*iͽ[ڧIDpvK[5^5^5^5^5^5^5^5^?쮅 ai@h<̼^PP]zk [n|Rro,O':n9,LgϽj.οߴ09LFXMQDyK\Dj&R0G? FT*pTUeN *=0(vb Ɉnb⬎D#":֠pIU5BQT$MX~gJcuyvjtS)έb+e D@ R@#@ z2. 8PhмjB! g/ԛ.X5o]g@0+qMʸa5Nt~J^ 6\cKHC?S,/گ5{?f d3UF D!R>"@ۃ] J@@ (A\bn!(YE9HBix^TF`\C  ~Z8,Yp{U $#A?7eĕxYF~~XlQۈBhآbc0n!b4N+B"@zPD ~`vFSG "BgnnT'D0a6_@L3Y0)Z`z{ pW4nmpy@0@HD99/v K9q?#iĈ#϶EM1!61 Q51`*#RD@_"pn ,`N=1'ps}JԣO\u=RGJzoJ JHa?[pNձ`ԋޛ l8kpe?j5M& ^ѯ#G0ár F !DĶA猨3w!D񵝠LZ ABcd(5gNR-&l)ܛep?%5Y'Fxf>EΝç?it]g˻Zav5`/~vW5 XD|U$ h> 7 bcۢ5iж5Ml44V2@#t` 0uP~n IUJ Cz] M&  Lpr]סO}ɀPKÇKKxxm<: ]6GJbԣ$܄p_ڭK82n8. }Kv|ę3g/~H)i4mp-,.b4Zh11E#vci0`aq EFh!A)i2ک Roh$sb=&ױKX2&-}J'1Od-lo11N1Nj߿O?4>aii xu"I!.=Gw8yIox|I|_#=zpxeCJ;>|?mb0mT7-nxí8zpQ,.-aAb5z^l&w@ &n1d \7mGGa8"a1 Q7)6q9{4^xqs+M`2qNI4`<c2`u`f/} ??__C7aLƌ * l>}CX^^jŋ|'pkPE*6#Cq؍=X:x=ELzƸxMhACFRuIc "ilhA@CqLG5HIЙ%gK' ,ctxI^N?GN1puCm>%p.RNTu ?}{1t  8|0>яĉ?2Z|W Y0Uknȏ ?r.m1X ۀa0XD,6m$ĨA" Lucbz$o^}t%gt=ckpy0N1>!En|oOO'lo=Aj$RHI9Գ}l2~u{ymxG(' n>|s[+S{ d[j)ZJO=|mL.aߨšKG-J&DA ( ~5~#hl'$ g!K%"Eh1 M@JaD.akXxiuVu GNoQBV~\t ?t:SO=A `epӟ4n68q{jP_Cye ;!6pbt|K-N]1D4A/r{>SzC5 Ր`d|2 10u C 8bipt_קxiu/nw]&K!q}2/4O- A4"r\U/5#d\j )@ vXVR HHx x*{ />$` NTTbLSt]/| { /ߏ_'KxMt]uL&]Ǐ\875w#pkX^l[B!G";E1Dr,$k{X(O(%cFey5l LNcdb - shi'`hgΜ>}}8ߍ}{?Q<8~x>]t b?v){AxN)Ë~#D2h"$PN 2t7WT@z^<,`/ JbY .͛K., RGق)XS4 Fঃ#׾5؏){~+C_0&Nۇ}Xb艁^G e̐KWɺ?5@h վ5C`/ɺ/z.-,5 = $b `+߂3O۬:E,eMh&vF½w݊5gg`xۿq7cRJL&xGp߈Oxf.n1*Ѿ[z!l8qdd/[/ژ"@8 AKՏŰ+U$uQcT{ U yZnx\QV08xV< ufpg̟8v!{|;h,:L&6[oͣ pwi0qe?kkHqdR*["J :BBY,GoxN=[¸hbY'AMMC$Y;r{!Wzhu)^Ag%/Yx "c7'd`FI-,c!L[Zj#" b <4Qsk/bClx Ln[z8T`0g#Qud! \.^)Ofqx0D|yoy-Mv죒a9V"ކ] 7ЌWq0&ܶa!̂h7`] W AJV,.ƅi61]@o~4/:@ s&ZTh >0S2:QUJrDm1SPiJ@( ?IJ+KHl9|9T{aqnmc̜'p$g͕I!I @mbRx^"!HC ~8u[/OD Wނ߬uR PϹu,^X1{j@fq1XQ?jraiAm~m;|#{plpyq$ $%S zmIa|(ځVBV@(3It.A?d @HmClLT1bVQ7Z⻾pI03z!<ؿ?B?'|1Fo}݇G6G &s^e|3ŤSb8R:%VsD-`9f!f|6D#xB$P< M"S!Z qs̞,KkO"SkD6JFЄC #':9ɓH)sΟ?X;u óg?X]]K/fwߍ7cudqV\5j p1X:r4 >(VA+OuȪ`ɟ@AS2 6aTIfO5mKvt:4IW\"*\ƐsJf쁐/uKDnc= }WFb0Ѓu8]CtQ4[>ld%]>8z\r.>u կ"msayy"CnqWbz ma[q:RI!@Wr^pL6DLJs..;8V2 8<("0cǼN>&ap-<H#/4AД0wI`.p&9:<-.L !QIYP/Ԯf=uBy߈#?x$|xGp)o#KYm 1Hr?hǪ 41ZoVS~(` X@JPE(Q9 fњ$-l00S@<.; '?I w}!w܁'x0_I}c0(jzS.2}E^%,Y<XҤOlq?6K>2kkiAru>C360<ʼnr&"Blg,,s@Jˎ~D8{,y4M~8x`V;g6~[UIFtGԆZ&ztQ_bYToIz ꣎J`BdՃ/OQX:NQR,.}<ۑRÇq1@J `y>޵_^@}xZضjmuF]fVj7*@h%}wi ,iEnԬ(UMti`QG&Hgj7f_3S.c4 K@-Σ^'G^w=8qOWƗKXX9AZ9n--~| Ƕjh^J!#tLG̗*` ,MQF6\fީ,}PPwRW4)]$`i}5MMAP}m񇿷 jGXZ>#󮿊#L/8*p)Su6"nec;_J.j\ F%lБ)g% 88 { 8uیu]O^xڀKA̾2"}wu0bNVɲ/96Jf ; { l:`w!5FT{ZT71wI@:&UGmhI& ғ7&p|1biWZ&1UyɡeFAV몠x؝ H= Ì-ƙepylgDswIan05I!PKfP$0tKd֓KZW ʬW'cyy3y&솔/s)wdyW]k#es2_!̊ VurЕ| fTh0+ٙWj|]_V;ݣ"eF? "_rCM\]myE>!byMPxr)Qs5H+dzʗ>ꋐMg ĤV*bF@qVݿ ۈw[D]7-*%D xf&[^S?[  ,zJ׵ Șۥ8} 3Bh>A6C3+\ǒ] eM8%0[n(F&3xR(S|HVqгKݍRmD)Pp bL=,=L29ƀϼaXlYtvHs(D,Q@RK [TkhTyQ",:j y亗'&ultl2CcAo&={: ]InM`u$qijc>4"B9m B]"u]0L| ulg%yIS")>fǡނ`~Rؚ)WJ&xf}\7d*VNXt54w0l^|r$eW}Jxp9 19e[P~ p 4[eč=$@-Yan;6wTV^p;MBӡ]\}sdJo{O'KcK/jo.a6vz1v%)m p*Zf>krn@B׶,Yq \mĖ\2}JevgA$Ojƿo UM;-|k;Э6&:%*7XNKddEp*U'(yY|UB=H&Ӝ*@^Fk2"Zd8grmpv%U.!',"AsdP, p8âit|f5x Y<u҉޻ cu:Ӿ,ͻܓAʮJ VX.@Lo wgfnsQ+k1 XMY{ fO{ϞLa!bkr`0[_Dd1bOFd!tkDAQ NJqg E{e4W^"Wd`Gro{@Ce{T07"%DS//MAyQW'({xKE4 hhs9 rE^"Ե։@ўQ u n;ĐQ%$.^Mj*\_.6.K[Mc@L MqPQ:KR:.d6qN*M*8u 9T;N;rw(RD]r2Mh`ˮp& @`b:Ī#f"R0 r$>Ŏ]e]n 3y6bo,:Ch%ϛǤ`$? u*m.tIpq9\ķ9&dƫQs916#@=鱴jf<"?YC7ay'p0BLu4 0oóq7(LPy TD-ۈN=SnTA~Y)m84POeJW Js.}X9bƐЫ6Conґ0lp4  }0$XB^Zl֏jZF^Gzs9-6"BI tw# (nLa|F&*vEXڼ<+@A2wl`v`Cȫ@U7_bqFluQB绕[yޛB^+m-AdiH[@y ڳ >XK6Fp~֋|u*죜HfC@ԷNv"qdu ɌP ILkWbdPU>_`{ïԶ:Q@H7#*(/gXv1dlG.Ro; )ܞbXv^X!hE94ߑD{t 'F E!pY]8ZDTW0 jV:GqpC8YW[s#O {GHmBc];L04Sg.A{Ud%;}|\Q*]1n4r=m}7P>od(Nud b>^C[TjG#$1^0h9"M BRcьES^P=K|\2Tb&7(@E) 0 mbJpo)[L@ fTR LO8~~( gZ%(#>Tw-6a}mN00Ar} *̳pPԓA ۅwy֐Sh )dN" =B$![\ m`m+24r$P$BGLcuO?GMl+qeؒs"eEl$-3w2h\PHg(Q;"}pa=ָ6 1wBhB|h`DϋHSDh],$q4Öt/?8 ƍ T$ r>b }(pi"zt=CkN*?9㉲ 3>e )/5!ڐ+Ϡ߾@q~u[Cv `ۨE?e#킼LTTdZsit d@ <-$d>H X /Oqp_ӏ|ۛfm l7'ǙSñR[#pcώb3.2vrSDg`iqqmj\cܰpEH`fDS"mPR`NzGy!Ns+6@9q[n\Bۘ: :vޱjG~B$]6p䚤REx\Q/SlTGfV1UtCH?3ϭl"0 >}7Roٺ ]4p-p׮V_ސQu6e(Ž!1`PuoO߃l}O=';捅$Rr@@`WK(ٷ60 !;5E Y@Ad.[7Ymؚ$>.lc[x#/h?dHÉDY=8Zl0z6Xkb~M ǒtm7/O/{?7{A'0cyiQ A-T69?9_r<d s>pq)i&v[],} _/ՠY#)_&TnС(.j6F(n&9dV0 / ů}/}]8~۱0<@imѶB i421|m?*+.ڪ=s Рc:~Hg't=c{ck0OGF 6ο_nGo}3~<6WNHqG fE !&N1d0$)G=f-`.u7zp{OVPoI7Pxne|g8gV^98ڀ/;cg GLS| _>Çc4p?'Oh4ʞQW W]Ǐx$r%CJ=Rc6X<|#`A4h0Pف[ ͌q8:21: 4pi 6x㵋^;K/b9Lclnnak{K3a^t8eK2U{\x$$~YL&\|8s :#11˹9VPQ z뭸馛p%$fsHlt}8i"BӘe/ .6iZfffqv؎)lSH 4cc*tW'hV8Y/)3t [跷M7O;'LSLtө]W;Q9 yUŌIٳN675tq}d 8&0Vc QC'owq?F1i,HM2t!41DĶ{1^FƈC-mŜMmx' ҁby4, RJ;l}! p=şR-uS2` 2y3hJxve*j@T Gf-rTpH@ ұx}{p;w,4fb1%PCKraDs|7h"%Cz5܈N$hPu3Ϫ\ }ɯFBLQEs_H)!cV=Z ɪ2oI"^.s.L'eǗOٹhbznмx_666ь0\Dy2{LbV"(1ә3gz,=lל{7>sFbuy>7c'<0u &f¹Vj%@HoO+IDAT. `!_'93/zi] a_E۶9uѣGoSv,JCDpxݮ pyH;OB&SϿz; t|JxDczۥŮэB]Oٖ!+k7٤UQey=ߗKNR;ŷ!0{Ƚ>Z9Ք]+^B8BIDxccc@7߮*`yy9L&aqC5JD=߲k9qIAdR x7Ο9{k֫)]wd-ŮFW3Z%.e.//_`f& "B$"/q_x%"TpJ܍n/;IgOnu|}p.'1v'nn^{1^qBNGf޵v_Bi8pnE"jGj7Ξ/o3$ݹL;.,"=3ovkfב!C7pèiC8RZ !D̺?HW=Ҝ\*0s1n|VVV"("BDrnsss:&As`oZ;v=03TD۶8x` ;SY]]mڔRY ˿ㅈ$݁'|ne {x|h4SNiz( +_\_^\k\k\k\k\k\k\k\ktӧIENDB`minitube-3.1/images/64x64/0000755000175000017500000000000013500741170014551 5ustar flavioflaviominitube-3.1/images/64x64/app@2x.png0000644000175000017500000004170613500741170016421 0ustar flavioflavioPNG  IHDR>asBIT|d pHYsu85tEXtSoftwarewww.inkscape.org< IDATxyu;w}o޼AVaI@!ʢ”D-)⊬,R*Ue[b%QDUv%K-X""J@(4A ys9} f@*iͽ[ڧIDpvK[5^5^5^5^5^5^5^5^?쮅 ai@h<̼^PP]zk [n|Rro,O':n9,LgϽj.οߴ09LFXMQDyK\Dj&R0G? FT*pTUeN *=0(vb Ɉnb⬎D#":֠pIU5BQT$MX~gJcuyvjtS)έb+e D@ R@#@ z2. 8PhмjB! g/ԛ.X5o]g@0+qMʸa5Nt~J^ 6\cKHC?S,/گ5{?f d3UF D!R>"@ۃ] J@@ (A\bn!(YE9HBix^TF`\C  ~Z8,Yp{U $#A?7eĕxYF~~XlQۈBhآbc0n!b4N+B"@zPD ~`vFSG "BgnnT'D0a6_@L3Y0)Z`z{ pW4nmpy@0@HD99/v K9q?#iĈ#϶EM1!61 Q51`*#RD@_"pn ,`N=1'ps}JԣO\u=RGJzoJ JHa?[pNձ`ԋޛ l8kpe?j5M& ^ѯ#G0ár F !DĶA猨3w!D񵝠LZ ABcd(5gNR-&l)ܛep?%5Y'Fxf>EΝç?it]g˻Zav5`/~vW5 XD|U$ h> 7 bcۢ5iж5Ml44V2@#t` 0uP~n IUJ Cz] M&  Lpr]סO}ɀPKÇKKxxm<: ]6GJbԣ$܄p_ڭK82n8. }Kv|ę3g/~H)i4mp-,.b4Zh11E#vci0`aq EFh!A)i2ک Roh$sb=&ױKX2&-}J'1Od-lo11N1Nj߿O?4>aii xu"I!.=Gw8yIox|I|_#=zpxeCJ;>|?mb0mT7-nxí8zpQ,.-aAb5z^l&w@ &n1d \7mGGa8"a1 Q7)6q9{4^xqs+M`2qNI4`<c2`u`f/} ??__C7aLƌ * l>}CX^^jŋ|'pkPE*6#Cq؍=X:x=ELzƸxMhACFRuIc "ilhA@CqLG5HIЙ%gK' ,ctxI^N?GN1puCm>%p.RNTu ?}{1t  8|0>яĉ?2Z|W Y0Uknȏ ?r.m1X ۀa0XD,6m$ĨA" Lucbz$o^}t%gt=ckpy0N1>!En|oOO'lo=Aj$RHI9Գ}l2~u{ymxG(' n>|s[+S{ d[j)ZJO=|mL.aߨšKG-J&DA ( ~5~#hl'$ g!K%"Eh1 M@JaD.akXxiuVu GNoQBV~\t ?t:SO=A `epӟ4n68q{jP_Cye ;!6pbt|K-N]1D4A/r{>SzC5 Ր`d|2 10u C 8bipt_קxiu/nw]&K!q}2/4O- A4"r\U/5#d\j )@ vXVR HHx x*{ />$` NTTbLSt]/| { /ߏ_'KxMt]uL&]Ǐ\875w#pkX^l[B!G";E1Dr,$k{X(O(%cFey5l LNcdb - shi'`hgΜ>}}8ߍ}{?Q<8~x>]t b?v){AxN)Ë~#D2h"$PN 2t7WT@z^<,`/ JbY .͛K., RGق)XS4 Fঃ#׾5؏){~+C_0&Nۇ}Xb艁^G e̐KWɺ?5@h վ5C`/ɺ/z.-,5 = $b `+߂3O۬:E,eMh&vF½w݊5gg`xۿq7cRJL&xGp߈Oxf.n1*Ѿ[z!l8qdd/[/ژ"@8 AKՏŰ+U$uQcT{ U yZnx\QV08xV< ufpg̟8v!{|;h,:L&6[oͣ pwi0qe?kkHqdR*["J :BBY,GoxN=[¸hbY'AMMC$Y;r{!Wzhu)^Ag%/Yx "c7'd`FI-,c!L[Zj#" b <4Qsk/bClx Ln[z8T`0g#Qud! \.^)Ofqx0D|yoy-Mv죒a9V"ކ] 7ЌWq0&ܶa!̂h7`] W AJV,.ƅi61]@o~4/:@ s&ZTh >0S2:QUJrDm1SPiJ@( ?IJ+KHl9|9T{aqnmc̜'p$g͕I!I @mbRx^"!HC ~8u[/OD Wނ߬uR PϹu,^X1{j@fq1XQ?jraiAm~m;|#{plpyq$ $%S zmIa|(ځVBV@(3It.A?d @HmClLT1bVQ7Z⻾pI03z!<ؿ?B?'|1Fo}݇G6G &s^e|3ŤSb8R:%VsD-`9f!f|6D#xB$P< M"S!Z qs̞,KkO"SkD6JFЄC #':9ɓH)sΟ?X;u óg?X]]K/fwߍ7cudqV\5j p1X:r4 >(VA+OuȪ`ɟ@AS2 6aTIfO5mKvt:4IW\"*\ƐsJf쁐/uKDnc= }WFb0Ѓu8]CtQ4[>ld%]>8z\r.>u կ"msayy"CnqWbz ma[q:RI!@Wr^pL6DLJs..;8V2 8<("0cǼN>&ap-<H#/4AД0wI`.p&9:<-.L !QIYP/Ԯf=uBy߈#?x$|xGp)o#KYm 1Hr?hǪ 41ZoVS~(` X@JPE(Q9 fњ$-l00S@<.; '?I w}!w܁'x0_I}c0(jzS.2}E^%,Y<XҤOlq?6K>2kkiAru>C360<ʼnr&"Blg,,s@Jˎ~D8{,y4M~8x`V;g6~[UIFtGԆZ&ztQ_bYToIz ꣎J`BdՃ/OQX:NQR,.}<ۑRÇq1@J `y>޵_^@}xZضjmuF]fVj7*@h%}wi ,iEnԬ(UMti`QG&Hgj7f_3S.c4 K@-Σ^'G^w=8qOWƗKXX9AZ9n--~| Ƕjh^J!#tLG̗*` ,MQF6\fީ,}PPwRW4)]$`i}5MMAP}m񇿷 jGXZ>#󮿊#L/8*p)Su6"nec;_J.j\ F%lБ)g% 88 { 8uیu]O^xڀKA̾2"}wu0bNVɲ/96Jf ; { l:`w!5FT{ZT71wI@:&UGmhI& ғ7&p|1biWZ&1UyɡeFAV몠x؝ H= Ì-ƙepylgDswIan05I!PKfP$0tKd֓KZW ʬW'cyy3y&솔/s)wdyW]k#es2_!̊ VurЕ| fTh0+ٙWj|]_V;ݣ"eF? "_rCM\]myE>!byMPxr)Qs5H+dzʗ>ꋐMg ĤV*bF@qVݿ ۈw[D]7-*%D xf&[^S?[  ,zJ׵ Șۥ8} 3Bh>A6C3+\ǒ] eM8%0[n(F&3xR(S|HVqгKݍRmD)Pp bL=,=L29ƀϼaXlYtvHs(D,Q@RK [TkhTyQ",:j y亗'&ultl2CcAo&={: ]InM`u$qijc>4"B9m B]"u]0L| ulg%yIS")>fǡނ`~Rؚ)WJ&xf}\7d*VNXt54w0l^|r$eW}Jxp9 19e[P~ p 4[eč=$@-Yan;6wTV^p;MBӡ]\}sdJo{O'KcK/jo.a6vz1v%)m p*Zf>krn@B׶,Yq \mĖ\2}JevgA$Ojƿo UM;-|k;Э6&:%*7XNKddEp*U'(yY|UB=H&Ӝ*@^Fk2"Zd8grmpv%U.!',"AsdP, p8âit|f5x Y<u҉޻ cu:Ӿ,ͻܓAʮJ VX.@Lo wgfnsQ+k1 XMY{ fO{ϞLa!bkr`0[_Dd1bOFd!tkDAQ NJqg E{e4W^"Wd`Gro{@Ce{T07"%DS//MAyQW'({xKE4 hhs9 rE^"Ե։@ўQ u n;ĐQ%$.^Mj*\_.6.K[Mc@L MqPQ:KR:.d6qN*M*8u 9T;N;rw(RD]r2Mh`ˮp& @`b:Ī#f"R0 r$>Ŏ]e]n 3y6bo,:Ch%ϛǤ`$? u*m.tIpq9\ķ9&dƫQs916#@=鱴jf<"?YC7ay'p0BLu4 0oóq7(LPy TD-ۈN=SnTA~Y)m84POeJW Js.}X9bƐЫ6Conґ0lp4  }0$XB^Zl֏jZF^Gzs9-6"BI tw# (nLa|F&*vEXڼ<+@A2wl`v`Cȫ@U7_bqFluQB绕[yޛB^+m-AdiH[@y ڳ >XK6Fp~֋|u*죜HfC@ԷNv"qdu ɌP ILkWbdPU>_`{ïԶ:Q@H7#*(/gXv1dlG.Ro; )ܞbXv^X!hE94ߑD{t 'F E!pY]8ZDTW0 jV:GqpC8YW[s#O {GHmBc];L04Sg.A{Ud%;}|\Q*]1n4r=m}7P>od(Nud b>^C[TjG#$1^0h9"M BRcьES^P=K|\2Tb&7(@E) 0 mbJpo)[L@ fTR LO8~~( gZ%(#>Tw-6a}mN00Ar} *̳pPԓA ۅwy֐Sh )dN" =B$![\ m`m+24r$P$BGLcuO?GMl+qeؒs"eEl$-3w2h\PHg(Q;"}pa=ָ6 1wBhB|h`DϋHSDh],$q4Öt/?8 ƍ T$ r>b }(pi"zt=CkN*?9㉲ 3>e )/5!ڐ+Ϡ߾@q~u[Cv `ۨE?e#킼LTTdZsit d@ <-$d>H X /Oqp_ӏ|ۛfm l7'ǙSñR[#pcώb3.2vrSDg`iqqmj\cܰpEH`fDS"mPR`NzGy!Ns+6@9q[n\Bۘ: :vޱjG~B$]6p䚤REx\Q/SlTGfV1UtCH?3ϭl"0 >}7Roٺ ]4p-p׮V_ސQu6e(Ž!1`PuoO߃l}O=';捅$Rr@@`WK(ٷ60 !;5E Y@Ad.[7Ymؚ$>.lc[x#/h?dHÉDY=8Zl0z6Xkb~M ǒtm7/O/{?7{A'0cyiQ A-T69?9_r<d s>pq)i&v[],} _/ՠY#)_&TnС(.j6F(n&9dV0 / ů}/}]8~۱0<@imѶB i421|m?*+.ڪ=s Рc:~Hg't=c{ck0OGF 6ο_nGo}3~<6WNHqG fE !&N1d0$)G=f-`.u7zp{OVPoI7Pxne|g8gV^98ڀ/;cg GLS| _>Çc4p?'Oh4ʞQW W]Ǐx$r%CJ=Rc6X<|#`A4h0Pف[ ͌q8:21: 4pi 6x㵋^;K/b9Lclnnak{K3a^t8eK2U{\x$$~YL&\|8s :#11˹9VPQ z뭸馛p%$fsHlt}8i"BӘe/ .6iZfffqv؎)lSH 4cc*tW'hV8Y/)3t [跷M7O;'LSLtө]W;Q9 yUŌIٳN675tq}d 8&0Vc QC'owq?F1i,HM2t!41DĶ{1^FƈC-mŜMmx' ҁby4, RJ;l}! p=şR-uS2` 2y3hJxve*j@T Gf-rTpH@ ұx}{p;w,4fb1%PCKraDs|7h"%Cz5܈N$hPu3Ϫ\ }ɯFBLQEs_H)!cV=Z ɪ2oI"^.s.L'eǗOٹhbznмx_666ь0\Dy2{LbV"(1ә3gz,=lל{7>sFbuy>7c'<0u &f¹Vj%@HoO+IDAT. `!_'93/zi] a_E۶9uѣGoSv,JCDpxݮ pyH;OB&SϿz; t|JxDczۥŮэB]Oٖ!+k7٤UQey=ߗKNR;ŷ!0{Ƚ>Z9Ք]+^B8BIDxccc@7߮*`yy9L&aqC5JD=߲k9qIAdR x7Ο9{k֫)]wd-ŮFW3Z%.e.//_`f& "B$"/q_x%"TpJ܍n/;IgOnu|}p.'1v'nn^{1^qBNGf޵v_Bi8pnE"jGj7Ξ/o3$ݹL;.,"=3ovkfב!C7pèiC8RZ !D̺?HW=Ҝ\*0s1n|VVV"("BDrnsss:&As`oZ;v=03TD۶8x` ;SY]]mڔRY ˿ㅈ$݁'|ne {x|h4SNiz( +_\_^\k\k\k\k\k\k\k\ktӧIENDB`minitube-3.1/images/64x64/app.png0000644000175000017500000001310413500741170016036 0ustar flavioflavioPNG  IHDR@@iqsBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<IDATxkeuk=rxnۍc;1nbYm#E@ M"-" @!B Ҫ*A uCSsqbvɌ;휳Ňwuj@w}g_k=;Mx?~{{Pzʃ?;Ggqlqh " EZ'?ʛx$E.99R~hpOFm`[HQ{]#`|c2̭t oß8 #?jl#D͸** J3䟹H>>q #M?f ͺ-v_kc?#xU"("APB  .AQATEdDO"LƂp#'K'w3.n}|[I$aWS??v`) o|T iDiTB(M#TUEU APUD "Bwx,Z59TA2X)̡wRtsa6>:1e 8k[{_~ ~.]|+d 9B8VQ5PQJ+*P 6 UאWxxDb<`nH*"X$ZqXq9N%qso֜=<'\s0Y|6v{v: 75l3g !P5mд-ɄihꚪiPUTMM*$BCȖCvG3YhL/Gbľk>o;[; H8nx!"tl?>?/_kVWY_`}} 7LZڕU7Yټuڕu&+ nPU Ŭϙfws-)}198gooݽ=vv;?~'g>> |mƙ}霭oW7sBĝ[ۘ=\:!8<'ĉ\zO_M#̌UẽO)dj[1Yk*mES u*ŒE19 4'ә3dFW'ԣ|0;_W?e뫿qppɓ'k/?7c9W^ƍyG.; cf˙8fAl~RҜ:H!=:1Ia[3^gF"J:+G8F7n$Ν#t:*/^dMIn SNs|*L;g.ΤUzs\h*ȘEB=2\(8h -NPB#OqxwH֮.Wy9{,.\K;\wj#9-|~)$iFVL@LEk)_ADTB),33w蓍;ΟHn8 @t6߾£=JF.K- ?TM<&̜D:@tAMY_/Bcn R)w҉{/ \ b\PV6iT#DR\ AU)mr\#_S3Oe.E' @1iTKF,&[{7|yů@@#6liGPH 8l@g@cRjpU** _J|%xec"E#Y"BohX6}bNgpO6777>˻)aZ ܭVr `"Lͽ<{BѷUL\p  2~*@iC m̍E0KXF>FV7Ofq =FDtS"l6C] mK/E5.SYS#8`@ J, ńAoi-lilv B)Un8yi1?#Ii^@H-EpCF{L<d-U!OvT8(nZb4_I=.hY~fb$ Dqȗ;qRHs|X _24ff)1=gⷹyqNт lVԪTU2.1t}()pqB&``H8al_Zf(u9^ ~S89Rb:qp}ӧuVPRTA fCa[`g[⪹W_Je* AsP}^y7X_iG*@7q/>6B렋BˏK1Sb6růp{+=gֹP Y\Bg* P$Y) |>e}+s_¹ںN}IkJ}Y? yglooVwy'/k[n9\ƒdƤmY]]n6eo\MC]TuEh&45f_UMY+TuwnJ7'=]79goo Nd}m;;;y >kدs0ͿMgt]+{`o +po\gVUESmN&4턶 *BM"cH)#}W7@a@^j,` =. uNvy_CC")!V*4Ve0r*kaFPP)=_M)RHJzzIDaR:RϽ27=?ɹޥRݳLBD"uБ! e ;:KɗjL(yXN7Nf/bzs9K~0.pׯ>5 !}vPPa!:gX(KCc-Rj΄dd1[J&ٸQn666>8Lz=s/gϞmRJm{O_QU(dpl4mVOi+VAWTUUUm={5`zfYն-0 h_ `"0j; C;ki=ƏQ ,Y~FUfN4ID;!Gw\Uj($' tT7[0w6Ҟ5M3P 8qFJ--K[!nmm1LT<,N7vox'ܲXIENDB`minitube-3.1/minitube.appdata.xml0000644000175000017500000000162113500741170016460 0ustar flavioflavio Minitube org.tordini.flavio.minitube CC0-1.0 GPL-3.0+ YouTube app

Minitube is a YouTube desktop application. It is written in C++ using the Qt framework.

http://flavio.tordini.org/minitube http://flavio.tordini.org/files/minitube/minitube-04.jpg http://flavio.tordini.org/files/minitube/minitube-03.jpg http://flavio.tordini.org/files/minitube/minitube-02.jpg http://flavio.tordini.org/files/minitube/minitube-01.jpg
minitube-3.1/style.css0000644000175000017500000000271013500741170014363 0ustar flavioflavioQMainWindow > QToolBar QToolButton::menu-indicator { image: none; } QStatusBar { border: 0; padding: 0; background: palette(base); color: palette(text); } QStatusBar QToolBar { padding:0; spacing:0; margin:0; border:0; } QStatusBar::item { border: 0; padding: 0; margin: 0; } QStatusBar QToolButton::menu-indicator { image: none; } AppsWidget { background-color: palette(window); border-top: 1px solid palette(mid); } RegionsView QPushButton[regionId] { margin: 5px; padding: 7px 10px; text-align: left; vertical-align: middle; background-color: transparent; border-radius: 3px; } RegionsView QPushButton[regionId]:hover, RegionsView QPushButton[regionId]:checked { background: palette(highlight); color: palette(highlighted-text); } RegionsView QPushButton[regionId]:focus { background: palette(mid); outline: 0; } SidebarHeader { padding: 0; margin: 0; spacing: 0; border: 0; } SidebarHeader QToolButton { border: 0; padding: 0; margin: 0; spacing: 0; height: 20; width: 24; } SidebarHeader QPushButton { background: transparent; text-align: center; } SidebarHeader QComboBox::drop-down { width: 0; border-style: none; } SearchView *[recentItem="true"], SearchView *[recentHeader="true"] { border: 0; padding: 4px 0; } SearchView *[recentItem="true"]:focus { outline: 1px solid palette(highlight); } minitube-3.1/icons/0000755000175000017500000000000013500741170013624 5ustar flavioflaviominitube-3.1/icons/light/0000755000175000017500000000000013500741170014733 5ustar flavioflaviominitube-3.1/icons/light/88/0000755000175000017500000000000013500741170015172 5ustar flavioflaviominitube-3.1/icons/light/88/channels@2x.png0000644000175000017500000000222013500741170020041 0ustar flavioflavioPNG  IHDR^bKGDEIDATx1NJᓙi/!D#p>`mjhQDh]E\8XﳀoNR%+I%=JO1nrλE_ HSҺi1G_ls%G_lT397n0h k k k k k k k k k k k k k k k k k k k k k kAO/g?H8 bI<-b9RJkIoWx UC۶_cb'$W5oJ79]Ȣ?$M}Ji4#/a˹t#/AsypM圛 7_~?k k k k k k k k k k k k k k k k k k k k k k kAO/g?H8 bI<-b9RJkIoWx UC۶_cb'$W5oJ79]Ȣ?$M}Ji4#/a˹t#/AsypM圛 7_~?k k k k k k k k k k k k k k k k k k k k k k kAO/g?H8 bI<-b9RJkIoWx UC۶_cb'$W5oJ79]Ȣ?$M}Ji4#/a˹t#/AsypM圛 7_~?k k k k k k k k k k k k k k k k k k k k k k kAO/g?H8 bI<-b9RJkIoWx UC۶_cb^5^IENDB`minitube-3.1/icons/light/88/unwatched.png0000644000175000017500000000416313500741170017666 0ustar flavioflavioPNG  IHDRXXq04bKGD(IDATxmTW3NT(-/VJմbUP EC}afaҵ$B,T)W+ZMe@*_u-3.,{̹5__f?<<9 bX,bX,bX,sD;0,PJZf7MUT-`R$R_Z|yyܯʄ/R(nn>z8H$~7ox6!~H$5: p.U.Wh}'~`𤈜jĀXD>N r;J9́B p6lR|>1 ȉ aasHdm2{ !ιQJco@MD|%@^e.l8CCC9VqS~.\p7J)_uq@n: H\>Nk=/f?vJj2K!SOWLY'hhHj'j+|%ZkŪ$nv:6~ >1Z^m6`~D4ׯ_w~o _@Kkk빑u?p( A3fp{C8Ndr/6wlڴ}@K*־m Ej)lܸRԢ{kd2ka nԋT-wvv-{!8RLuu'_T'ɗc"!8QJ"U . $"1)L4]1`X*^0Ͱ6w2ϦDˁD"qWrpݠR"gOR~~1S,) S yޮ)}'"pS\5xrqeac&P*4~Gd2K?UNou 5<tcRjU:]u/LqxiǺu>Z~whgzV;F^0LZ3Ly >:8Ωr|.R4 xt;n_Ѽn:U7L2@ԔnyoBDG`iV!:6 AE3 rc\{ɥRP%B?ff?YTpKD@DS5O<|Q^uҤI7lА2EsWDrw < hyZ1f1f]|>O0%@0iCNEH1Rkm:x1#"RJ-p4p0! 1&?~SNrC[]ҏ7e2Yb:=8F<\.$M7TϲjWy 1y%q%KaÆIsPIgKuj#ntH1Bkm1EMsq6N\,$׺wVUU]Dñ}c%|$X^*n!# 13鍈LaW׹AV$R"r 4O&q!=0UDu"}inn>t_~j@q) Yk[IG}RVG.ZnsĹ:O|3cDg̘u"!"z:~Lk%H,gE9T*=EGFN~:~ X,G"rp=_ p!c]ҏQÝm?*fx饗vN$ -\2 #)` (l 7"DT,'ƂӢطb---{܊ =o<X--- 7а"r8p/MD~>,"r/Adj!Eh`5)͕\'F]yS?>HDNVnsrܯ\'իW3iҤ*mb:iҤ׬Y3@> 3<r{ 555\1;wȠGu|R0~01yyuIYjնɓ'!;gajI&yk֬Y3 lDd10g(9֘1c8… wYh]1 fMNDb'Ɂ##" +-wo瓭'<ۛGV="r+pvljM{<Udx7;ܬ _ob1b4`a VͳjW ~ywMMYq=8'd9^ĽEkool/_ױj-ûQNGGH,~;AӀ 8J8$&+cً=HV3Gm~uPJ=g# ;}j5ꈬ.p?H &Ie?ĴtFQ;P(|=a?EבD#CimN>D>, unڅbR(P(JS#-3QbCLWưfDZ<:<1RUTZkΞ1uF1x7IZ1D3>Yk$EC[[[G|3?km&)0uq}?}O8z`cʵCL'1M|d6,NfRH6pI=R(fZkƅ{vYf:$=K9Ne0,P̋]|Zc@S}rӦMN"A-[0=tOUVV6̝;7ι 577k-0u.8EDa8=2<(b1:uuu]GvwyZ0ذm`JP{X9<?/ CD&x8ʂ(dG'gAr_OI|c,,#~NV,Yd'׉ V8 ;+-#xî7ǚ'Iӓ>i[$cwyDfHA3$7DSE${醽9Vt=J)I$r'"G\Ru#DLwx-I S&VJDn&]$vWj}pN7j}qدuR8h1&oE@tC;]Z(ε^C?jkktL\JsZm6tX˭[ZZ8u.xXy޲\.\(|ߟN j8"gI8/n"r*A=]2<c>ߺ FĚ~q[n 8և ecYk7zZ[k OxP3KE$#C")Ge c^*rGCZ޾8mcX3pO"2Ivn8jԨ˕&"Z6L)"t@d}ϑ,Yt,"Nd02WDP 1 KPONf(2!3HMi }I.{u2ÑV,}"t fඊ͛W˦H-p*niv1VWW/+ʪwpO"2h$V8_KEa;{XʺHp

hJzȑ$E}Uי9~zit轓nn#i|?dp1;n pcw7p1;n pcwv_Yut\y~\>͖7DIR "%83ڝ^YZ%4: )IENDB`minitube-3.1/icons/light/32/media-skip-forward@2x.png0000644000175000017500000000175113500741170021730 0ustar flavioflavioPNG  IHDR@@iqbKGDIDATxOhU?o'iR( bPAГ*iKCnRh)YkTx"%jPES* 53&vƝ͛F\}߼x<x>~♋`Ry(Mu~1Iil_PNJZʣӌv;{#7wT3;$9xVyRj>ǵ'kIw'I2/鰤\j4 8#iZl#;B%mqU/ I䢤ÓwUYk' qqW`B/Jhe3NKzؕ^Fׁ v|W4W+ `0 A"%y۠T$g'&&z7* @ thZkheyc^־E zuͳ4/- w:GA Pwǃ x) 38Km=oo:n#u@۸ 8YoPw;;;GGFF~qYCkC|f륝NJ}睻y`E `?O sSg H T*]Mp4E1` <x<x<#KPVtIENDB`minitube-3.1/icons/light/32/view-restore.png0000644000175000017500000000077013500741170020324 0ustar flavioflavioPNG  IHDR szzbKGDIDATX1O@;= zOCD:҄",a?QPФ@&ԁ@Uio(!l^eiٝY`wIr` yGMmlI8$G(7!,I}.@0ιkO,"p,)63[q_ö^ѿ@$gVk3Z T6&Ir`@T5I LNtS3(׫L!Ey(ɽL3=IENDB`minitube-3.1/icons/light/32/view-fullscreen@2x.png0000644000175000017500000000143713500741170021356 0ustar flavioflavioPNG  IHDR@@iqbKGDIDATx1o@DTT-L E!QSu(+ tc*)PA2 Ȗő@! PJsv|{(GΆ@ @࿤`Z̧UDNQkS&'oll\N[4($YR^"CdS*;7־871.tJzB@,"I nٜuWsB;>Jp/` ajZ 愶/I~2ڏL:TI'ZXd\`Y vȣs!|mrˤ 88,#Y`>v4:sK" J_+X7IV7#,V!= .` .` .` .` .` .` Xk.Z;`p#"mC[ M=%"m-_P zm}k?E5p."!٪z, [ s]4K{<)$\xP$E]xP$Dh!Pu" ` ICZBH%y,NC_lBH&oy F &@^CβLD-Re,ˮuqqq_fnIENDB`minitube-3.1/icons/light/32/view-restore@2x.png0000644000175000017500000000160313500741170020672 0ustar flavioflavioPNG  IHDR@@iqbKGD8IDATxMkAn]JA8 "D)Ş?-^ = UQ( x({Pƪ$·IV繵}v23;@ !IDdXټ."_|k(6w-3#BRv1`̓FX,j N_`n/mV. "i-eeRj㡞,~ S}zM._z :'|h}{| 8<4Mjeh-c?qq(Bހ\l$czqh4ͦMӔ$I.Ӧ8 h?-c|;bˠͣPsGQt\.?sM`Iȗ>eQ+k_ɲ(ʃV(Zg6&ʪ#ˋ,Z.|.`\kh+_Q@x`7^VLM@8:x$&}i:pLDu1Jq$#1p xEQ^D~-$Ԁ|TGRHKR7-yynT*L_΄XUBmxxKۼ/愷CF@j!Iq?,JK'@ (?(IENDB`minitube-3.1/icons/light/32/media-playback-pause.png0000644000175000017500000000027613500741170021650 0ustar flavioflavioPNG  IHDR szzbKGDsIDATX햱 @G(PpC^ @1Phancwhz4"inTSv ױ,` X ?-%.=2|oHQWIENDB`minitube-3.1/icons/light/32/open-menu.png0000644000175000017500000000046713500741170017577 0ustar flavioflavioPNG  IHDR szzbKGDIDATX1JPEwm`ɒKepE5ks܆i~΅ Ւp 6K*/0#NA[x$|>mژ$IdOI)Mç:; I:y?Ƙuzwh_x_=w4QBM(VTp~:P0d,,SC39*iE1IBnS`6?`hCRŎ^+i֨*XDnH o-f-Y?IENDB`minitube-3.1/icons/light/32/content-loading.png0000644000175000017500000000027313500741170020754 0ustar flavioflavioPNG  IHDR szzbKGDpIDATX1 0DѯBtѣ䖂hc!EyM0)"""?ށ$20^8V`x:΀;t#R.9,yIENDB`minitube-3.1/icons/light/32/media-playback-start@2x.png0000644000175000017500000000070613500741170022240 0ustar flavioflavioPNG  IHDR@@iqbKGD{IDATxڻM13#$1c<,"AT[@ E-?9s9"r5Iw2YD<Hq!*/kd0 [禔҇lbgFV?Λ6=SJSDDнՕ @/VB@fB @C@jC @B@jB @C@Bh @Ch @Bh @Ch@BX @CX @BX @ ,"9ͽzLcھH^syO3 G"VNNVNTNZTN4NZ4NtNtNNNNNNhjm)+,߿?پ}(s9܁?zrIENDB`minitube-3.1/icons/light/32/media-playback-stop.png0000644000175000017500000000025313500741170021513 0ustar flavioflavioPNG  IHDR szzbKGD`IDATXֱ 0 D;f1" (+&) 2Kڒ7R΃嵵d۾$uS7vYDm7 %A'IENDB`minitube-3.1/icons/light/32/media-playback-start_checked.png0000644000175000017500000000047113500741170023333 0ustar flavioflavioPNG  IHDR szzbKGDIDATX;AFsKL;p0(& f&!נQ>IAaAQ1#og&\w KDj?yܓJxhՀa *:D;&O$m\ik `I ddC"Ȃo# ~|38p 4=a^gdN N 885NF?gSx 1}y{7-)IENDB`minitube-3.1/icons/light/32/view-list@2x.png0000644000175000017500000000237413500741170020170 0ustar flavioflavioPNG  IHDR@@iqbKGDIDATx]TeuԒ2/I (좋J%/3ϙ۠ ()PK)(BCꢠ"4Luws.֙9gNj s9p8p8p8L!U]ffkEdD䠙V3ѹ|>p3"򊙭>3[=Ux흝n޼xokoBvk ^3b1P7Dd5=պ{K"̖EiHq*K05" 6}*).sD$ΊH`wfi冦#uyOűEQt0^e*to\-vQ18Baq_P.ۖU+ۀ |FTnKr wJ+}p4B0 2zl'_AU?ꎬ5 /hpSZ'~|DN U=NUիGM xx2>b\.Iʪ#"_EQ4&.?Eѭi@3;y[st >ɭ1@U{Y8Y)S9V3FFFڊ` pcE.Qt0+jiz\x X >Kj?d2F*;l6rryMfρι"Pabb"if@'AOs'<iX }7:ueI7%z13;%iP(Z@ޟΧdfHZdf}f{%i< ëI| {6sG4cfeUʚf6$HH^}*f3(5zu@+dy%ι355.I63Sz x Fq>I8xlllYTgffT3IsM#M4/8f%IENDB`minitube-3.1/icons/light/32/media-playback-start.png0000644000175000017500000000047113500741170021665 0ustar flavioflavioPNG  IHDR szzbKGDIDATX= @xoXl $XZAOULB]-e} !S5̲l[!]lՐ@$ɖ/"!MәO,ˣ&.)@ h "lhP;G1&֮(:bm@b-@⮀mjMuͨ` J1>}~|ihW/IENDB`minitube-3.1/icons/light/32/media-playback-start_checked@2x.png0000644000175000017500000000073313500741170023706 0ustar flavioflavioPNG  IHDR@@iqbKGDIDATx;N@3]Pb $( jJV` HlQޢv.P"HA87_¶e41c1_fW znq`9N-A~=_Pw#\tOI`?WbߙxŰe @p-!b 5!R !R !r q!r 1!J!Jb!!l!!d!!h! GݍP[GxH6H>6>J(6J(>r3r7R;R?bP3b4U45o`%1cYR_s3LJIENDB`minitube-3.1/icons/light/32/media-skip-forward.png0000644000175000017500000000112013500741170021344 0ustar flavioflavioPNG  IHDR szzbKGDIDATX1kSa&X*8 ( nҵCA(B&oR q`AtpTp"(*%Rtuh*i5M@\3}9|ӆcCj#;vmhH雵jzJRuJyCNz}wlvvv_$6#2pG:$w Hl훒kM`;E`/px]Nj]v#⽤?$7&N "s{m")09~&OK " X. J|6GDqZX.#rEL>,bGmHu>22rmbbg۷SSS:v`CpURMbj vDsತ^!+bZ}Av@$I$=`IIX㜜_J֗uugIENDB`minitube-3.1/icons/light/32/content-loading@2x.png0000644000175000017500000000056413500741170021331 0ustar flavioflavioPNG  IHDR@@iqbKGD)IDATx1J@@Zc dA  BHr46 67R7.Al6vf&]}2x""""""""""""rLs.VoƘMMsbꟓZES9xa:XrFl쯴XrFۀۥa\(\M[Z6? >pvi9@ƘXrF4m.XrFΎGqFP 6b-j9% ~Xqxff"籰 Π#ǏiRRLb_99|-hb`oA?uq>3+{P\.6gmW)"=%F#t,ƕ"u*,+EbU)e Evv"{Y@Yw"{ExGǻ:E#NV%%kdmNEq幜?-@NF"Rf}/~DcG) ; tgFƅJ+ Hf%MK,JT<MbMgbjo+4~ ¬"acZ^Mo۪g$)lb7>q~F ;$T*Nމ'-MZ]hB|^uZ3[k gJUm4y>n6J8ߎ5aKLؘUaf+8ѵ3Bc*Cl/ĸ6V*A4WI|C\b'ͳ$z~9(^P_aޱ@(OJwҥKhy IENDB`minitube-3.1/icons/light/24/refine-search.png0000644000175000017500000000060313500741170020400 0ustar flavioflavioPNG  IHDRw=bKGD8IDATHO+Daʟ΂XZFF=%)w0ُ`cHj,gJqL_n{=b'x rD_Ňp<.Ud#-0y;"|=mym%j!ciS1;Ū5.oT3POMY 駼DFbНPp~4a#H#zPRΎGqFP 6b-j9% ~Xqxff"籰 Π#ǏiRRLb_99|-hb`oA?uq>3+{P\.6gmW)"=%F#t,ƕ"u*,+EbU)e Evv"{Y@Yw"{ExGǻ:E#NV%%kdmNEq幜?-@NF"Rf}/~DcG) ; tgFƅJ+ Hf%MK,JT<MbMgbjo+4~ ¬"acZ^Mo۪g$)lb7>q~F ;$T*Nމ'-MZ]hB|^uZ3[k gJUm4y>n6J8ߎ5aKLؘUaf+8ѵ3Bc*Cl/ĸ6V*A4WI|C\b'ͳ$z~9(^P_aޱ@(OJwҥKhy IENDB`minitube-3.1/icons/light/24/edit-find.png0000644000175000017500000000060313500741170017530 0ustar flavioflavioPNG  IHDRw=bKGD8IDATHO+Daʟ΂XZFF=%)w0ُ`cHj,gJqL_n{=b'x rD_Ňp<.Ud#-0y;"|=mym%j!ciS1;Ū5.oT3POMY 駼DFbНPp~4a#H#zPR[!ԿĘj"J\0Jf?gB ;;+1dys7>!MR[+V1W+k0 833ӞVF~x|w ]vB뗧 6[_|Y055P(R8>H$7bF T*p*~mhڂt:X,~uKPjLNN/˻<%3`M% ^xRRۭ\.6-,=7 InEf;$8 6^8nBI ҤA#i~/txlQS zHz tZtsR{,Tٖ#!?H:%MLLiBSVϠ㵀k> pH:,{IZ.Kz]-8 }% czq mض{W~aIkb}v o 8 釛Fb |O1f8L>w JRO@2\ϨwD# 6ZkL&_E.!4\-d2l6K5$]$b\;f#^F";"IZIENDB`minitube-3.1/icons/light/16/email.png0000644000175000017500000000044613500741170016762 0ustar flavioflavioPNG  IHDRabKGDIDAT8=JA_A BA{PX hc5 "-|uM4 x;3vY=JVp}ha8n_8^x#`8臓8C )!q#0 L yAy  oh;xGInho=VRR/.}ϴ4i xAgF_;T3X*IENDB`minitube-3.1/icons/light/16/edit-find@2x.png0000644000175000017500000000102013500741170020075 0ustar flavioflavioPNG  IHDR szzbKGDIDATX͋MqOjK^k6BL$ejb7 +XF)+6ذ$1\Sm﹝륹cqu|<9ϡzMwLchqQ̲}8W) Db ;"f"T!/=opE"VvkD69/puʚ萻_8W2?kF$E`{&T,I% 2 1*p_ν54:i`wb=ip2*{yO $4 <@ŸnaE'"~P͍[ ,KwJ8|96WaboOpY8MTaFncxs~}jןbcU&&YbV+ߡ)m|&*,G'0XX0kC|OҪ|R٤lIENDB`minitube-3.1/icons/light/16/search-time@2x.png0000644000175000017500000000115113500741170020440 0ustar flavioflavioPNG  IHDR szzbKGDIDATXKKUQiDF]=DzHz' FE}A4hبH(*TD%AF֥2Klp^ :^9{ae{o6Y|J01 CoGOqK5>/r:),#p#m9)ZƟp!=_I gyмJ/H ޥe0l-8M\m*؇Qd6lGo]R[Up}>)bs~|np!%\[ا5ԫf2K7W8deyn, U g@_މ uu&*UGyw7(ƨbςVzq3qc qJ|ғwf0ceGi-v&>=8Gtd}`"*d`+E '݄}`k@,-8d`GN}'>_1Oò5oM*ty5=`FVp1vمu:VA+YKXH1cꬂ8mٍY9RKثO9bIENDB`minitube-3.1/icons/light/16/go-previous@2x.png0000644000175000017500000000035313500741170020521 0ustar flavioflavioPNG  IHDR szzbKGDIDATXM 0=kW  )yw ! B"rV8j໿@Kdko6 ߧ5ކ&vqYC!DX'%EHo`&"k4D7xTR0,GIENDB`minitube-3.1/icons/light/16/safesearch@2x.png0000644000175000017500000000062213500741170020345 0ustar flavioflavioPNG  IHDR szzbKGDGIDATXMK1zc`Pы֋zֳ[z5 }!Yfdf”yiKύ<%06>S\yڢ)cR>ԄQ?lQ'>ɧ}> ρR#l ž. hiKPwR;|)q 2B$KB<]mdT=koLk;K5DgG*^·|j/7|jHm? >lp+;'o;{1L]gpDIENDB`minitube-3.1/icons/light/16/twitter.png0000644000175000017500000000050213500741170017366 0ustar flavioflavioPNG  IHDRabKGDIDAT8ѱ+Q߇$LbIJ]L揸b0  R Bݒ9So}z *wHiquJN s8$w7}QddRxJ3|ȈWqhݴquxIENDB`minitube-3.1/icons/light/16/search-duration@2x.png0000644000175000017500000000132113500741170021326 0ustar flavioflavioPNG  IHDR szzbKGDIDATX׻NQKb%Im4Yxy;T'Ш`b!^%}b!1@}&gϜsf]?mkc`؇o 1[!w[Ccd cqږpK?mC%?$+E-&xшMP=+3Hl'^Gyn`9Q51^@~q )F^K~yIEyMkw<(Y@M~M<>n,2+8!(~G 5O…&% ׹1VHXiu`1u D/-Lon 2.Ql7S(KqģGQIwZPvFXp^u!Z+R!:K.B 2.୵V}(uֱI|RC2 ݢ^am>hcNV ?&?竂x|(bEF Jv]+Ŷ| _vr?4kQ{_)6 uCvmQXp/*wYaZ*bU6 =$\'>A6IENDB`minitube-3.1/icons/light/16/mark-watched@2x.png0000644000175000017500000000133713500741170020614 0ustar flavioflavioPNG  IHDR szzbKGDIDATX;MQ5{ƌ(4"1 d}`QBBCH4DBGF5\3gvn3Dna朥0W;07t_ֿ~@ -C!J$I6Tu0PI^o0 7Tu$r!"(W XE/'LU"Xy "G(zҔ~322rRDN ᗪ/Ysn\5gzzz $;l2IOy­31`aNz$a4mRՃycL97+Ws[DJR/ kR>A.𺠆Gι Dd_nXk;KT`p9;,7{*קhTOƘ`Eޏa|Cry,W㽀[`g$__Ǟm&UU4Imٗr5N7\x=::Z~̫^*fU?KI:^B 𸪞4^`pX8@YSl]~IU7_q{%8s;M#ϊzL3rmI䨈L|T8 ù Xts1[y FQ-|YIENDB`minitube-3.1/icons/light/16/search-quality@2x.png0000644000175000017500000000075313500741170021201 0ustar flavioflavioPNG  IHDR szzbKGDIDATXױNTQn(F I( &BiVHC VZ$0H0wN8{5Ƴ.NrL3s 7v&qYw< \c ZpBT`u!qX DŽ cHV>HZwlжq8.((>GhTz i&MIENDB`minitube-3.1/icons/light/16/worldwide@2x.png0000644000175000017500000000146513500741170020247 0ustar flavioflavioPNG  IHDR szzbKGDIDATX=lUb!%X`E&a5 27q$FјH~$m騃!|@P4u\n_޾/!?9νy9xKAlӘ/1#؂a3-daah_fyq;Cv-tGX|ƗkN:cxD'+`2p~b7f'zq`ԝ8Bt;q2F>  1xxx)ftW2U¯ZG,g`Ɖ>uocKK*O{m)\T)J>?l8YR*8s`$'+y͏_'ij }1_WoRXׂR暪ahZAv-Óȍ)kx$  ʂ&J.9׉^ -xNJ7p kp%V^WXQų|]s Õ<*cu'c8m~NDt$˰Nօ.Q+5LI;c(8۞>M1zQ #³WSލK꿍N κ.s'%x܆$w8+!9n͖N|/Y%mxbO6;Xzҷ4M!iJk禴f);mǰnLJ?&#RR 7.3]>? [9hIENDB`minitube-3.1/icons/light/16/go-previous.png0000644000175000017500000000024713500741170020151 0ustar flavioflavioPNG  IHDRabKGD\IDAT8л @Eу'#k5R 45aw 0 9p[H„0bG=ϐwJ/d Pbqywg`IENDB`minitube-3.1/icons/light/16/worldwide.png0000644000175000017500000000057113500741170017672 0ustar flavioflavioPNG  IHDRabKGD.IDAT8;/DQobHFJQx( Ũ ֣(u'3uU1|x ~F\>;6cԦ61A=C(F=ZqVЀ;lYw1!bcۣ./ Af01bxErTzڪKYBx ::vܠ{8BRQTz]df2beȅ$׾|5U)T~I"_ GܠIENDB`minitube-3.1/icons/light/16/safesearch.png0000644000175000017500000000037113500741170017774 0ustar flavioflavioPNG  IHDRabKGDIDAT8= @gbZ=v^DOer -lT [Y"cf ۷og(Daz 0~DYTρS p4ؾ!@>`-ꨯeŹo R]D ck`f.=\ \*+fpPk(h*^IENDB`minitube-3.1/icons/light/16/bookmark-new.png0000644000175000017500000000061013500741170020260 0ustar flavioflavioPNG  IHDRabKGD=IDAT81KAXp):66"bcXYh.&E 6r?@ bqE$mX$ 7`r{W8pޛoj*$NӬ#^eYT>F^5*E `}<TTu9Z&w@7lsWͤ xӪS=;.Hefv Ԏ 0`ܨl!,߷ 8W՗9Pn_06H3@+I^2H3ĕ 8|zX`!Um#Tշw`TQ A;`P"ha,Z?a(IENDB`minitube-3.1/icons/light/16/facebook.png0000644000175000017500000000034513500741170017442 0ustar flavioflavioPNG  IHDR&N:bKGDIDAT(c`\f``O"e PA!Y1000#Ճq_ a,4Z r؜xFʟƥ8\@* i P2Oȩ0\ U.GL)mIENDB`minitube-3.1/icons/light/16/audio-volume-high.png0000644000175000017500000000110113500741170021203 0ustar flavioflavioPNG  IHDRabKGDIDAT8=hSQz1pI#NB% A%?@$Ǎ@mtjCA`Qnr5&%V pޏRVǴsl6ذAxDDv3@D"r|VJ#R^7woB~c.iEպ π~ oR׀3PKJewEO}].)N:sR1f DdEDV(zg 2}RDEcy ,;(*pVmUJ=$nz<,waR["ck%VNgHuQòv;8άi1pŲF' m?f9 KZ0 /[ɿ:r-0ύ1mg<;\")6뺇Kҫ~&"`hv*˵6 /S"7&ɷJqD Ym_IENDB`minitube-3.1/icons/light/16/audio-volume-muted@2x.png0000644000175000017500000000060613500741170021765 0ustar flavioflavioPNG  IHDR szzbKGD;IDATX퓽JP@5( .:*J䠋3 CPMn*8 N&*m$?9ý|PSVk: r8za~0(=l. "|~S>UQj{4&-`GX,B>61pES,H ֞"iKkz>HDfV V,Ÿ&"1ڀ(u0Wt@$㴁JTEs%1m4z Z $ 0w9;^ahX~#ֺ?|EQ6IENDB`minitube-3.1/icons/light/16/twitter@2x.png0000644000175000017500000000105113500741170017740 0ustar flavioflavioPNG  IHDR szzbKGDIDATX=kQ_$P A, AQ,,4ZoXA/ o_B4i"HJ_@%dE Z$38,sg7%Ý=sϜwa#[w0[X b.t߂78!&8^*t x*7p5RO(Fp>Mr!h0\_/Mt;'*WO G"O` DI\ks+Ս*i` p{0c%7+!Cp0LaU"bS]L넣6]xDpxwϕ;R1IcYvَ7(`;؆BK&e;8lm/ꇋ}cEA_!Fᨌcy7 )X/+L.JT5/v@`$0 B$B;ư؋=a{^ 3aYlQIENDB`minitube-3.1/icons/light/16/media-playback-start_checked.png0000644000175000017500000000025213500741170023332 0ustar flavioflavioPNG  IHDRabKGD_IDAT8ѱ@` v˘DJK0(4%_~U `džEpzA, 8=LX^eF> FH:b/ u:X#^UIENDB`minitube-3.1/icons/light/16/mark-watched.png0000644000175000017500000000053613500741170020242 0ustar flavioflavioPNG  IHDRabKGDIDAT8푽JQbo>v B,n, ZkOag),|f [o ZeMȱB0o)0́HZͪ%n?%='Ir7 ~-P<5k` f&3HdYm3{N!I'ιGQ(j 9T$B(ιmG k/j` qY\Ney$u4MK{53Eq.<]U8v"+ kvIENDB`minitube-3.1/icons/light/16/bookmark-new_active.png0000644000175000017500000000044513500741170021621 0ustar flavioflavioPNG  IHDRabKGDIDAT81JAO`Rv"V`+ˠG.e$)XF62̼7]hn@!Vxnk WԦn^O8S1mh ~A ^I5*~qE@^5zbSQ>lWb"}eM'o(x͵Ӓ .=iQ28WUxAHIENDB`minitube-3.1/icons/light/16/go-next@2x.png0000644000175000017500000000034113500741170017620 0ustar flavioflavioPNG  IHDR szzbKGDIDATXM0/z++x]bBp$ҷkffڔL&\P]f("}@XD::bߋ-9"GDGZF\(X/Rʫ,{yg<5pța@cj9Oy&OrR3-O{IENDB`minitube-3.1/icons/light/16/bookmark-remove@2x.png0000644000175000017500000000130413500741170021337 0ustar flavioflavioPNG  IHDR szzbKGDyIDATXՖOSQOoQFqRLht2]F&' &BEc4(5dPKmoϽW>'{ι Zm8X8E3}q$qM b0UClIPQt3@ ЌU&3cF$mдiY v*͗Z* 8@(R TM6VK򁿏pI v+b$=bQb%cIGt FN-)X1Ⱥ39^@&Ty9npk~j-,p6U5e[=QX1`@iԚ{(sB<(z@ʱ4g? n1}k Uџ D7\:]6!g893x~4[[a[N=`v̻NU1ȥuf0l0 Xylbnhˏe2$ ajl1k_?cZ}m~2.W.+6[=Fp|zpcA"rK^++X{t! *pL0hPNw4…=%f=6l ]Bim$m6M{\u_pyIENDB`minitube-3.1/icons/light/16/bookmark-remove.png0000644000175000017500000000057713500741170021000 0ustar flavioflavioPNG  IHDRabKGD4IDAT8JQـQPbBSFD0X?aA"D.`'-b"HHbv,4`{Wq99)e 2 ӆ̱a@/87ڐ' PJ p`u,)9^sdW9z&Rn'¾ hj-^&BkpIci%'FϦ{, dwFz0K$j@ Axj{h1uUsP5P1@e:ʲ"]ډb>LVBnz1IENDB`minitube-3.1/icons/light/16/show-updated.png0000644000175000017500000000064713500741170020302 0ustar flavioflavioPNG  IHDRabKGD\IDAT8NPL;Ba!.M`҉0t188C||qmJ1ajtсAZ )v9;sυJdF.ۋhP=OӇp L<B Wb0eq@uJH;bH0MXq P(0 vMXjy^@g^tVYORܶ|4u]a4e= 4rj "6S*?i} &`BORʾk^l6iHwIENDB`minitube-3.1/icons/light/16/search-sortBy.png0000644000175000017500000000043613500741170020417 0ustar flavioflavioPNG  IHDRabKGDIDAT8c`@::: dFii gI1C3)0*++w?<ϟ?~Ipppebb%''=I&ɓPLNC]__ &ej!O\`Fܜ߿05ѣG%c0L= IIɥmPVVbȤօ2LtCHҌnYa4T_'IENDB`minitube-3.1/icons/light/16/unwatched.png0000644000175000017500000000043013500741170017646 0ustar flavioflavioPNG  IHDRabKGDIDAT8JBA_ AKAFBmD۹$p'nR"Dr sauP[\1 ^H0-5Ustp" aH`:heݭda*F>q\c3;jإrW! r:*~X1iratg8u8&PpcaZgdvEQ;bIENDB`minitube-3.1/icons/light/16/search-quality.png0000644000175000017500000000044113500741170020621 0ustar flavioflavioPNG  IHDRabKGDIDAT8ҡNQwٸ A 7c#hFh(pP||N|gx>uW˯b- /Xd,YQ]b)a xAa2]LLrXjG'l;!W0M3xI%7pqzF:00v"q+vopqi?Bmus:.eoދI[ƼŚlaHdO74&G8]y9ʦ-o;.IENDB`minitube-3.1/icons/light/16/search-duration.png0000644000175000017500000000056213500741170020762 0ustar flavioflavioPNG  IHDRabKGD'IDAT8ANAE'1. H2.L<½NbW\DFEѶ!ZTn}`LwDg2` |^! [# .; f"c%*0{.usHnG+DfUvhŹW"ЉwmM`X *{g! Oρ%|B+"bO:U ?Z8)JiAsqEZ' [OJr*07VaY3-xkz؆֍B^@cIENDB`minitube-3.1/icons/light/16/show-updated@2x.png0000644000175000017500000000132513500741170020646 0ustar flavioflavioPNG  IHDR szzbKGDIDATXKaƟ睚‚ CH7gt=H:I  HTHtPcH}]V۝ٙI|``>}>ySc1ٲAq}";"R^,˟N`xx0 Z̾օrXCCCg xn7@""/3%=d>a_+i~\=fkOryt@&A*ni=jrl۶IA5VWWQ(م8Z٨p0f8ji&pgu8<Ȥ1˲MQM((PMwXT9R)@.t"4ŨGdS :cr|t:ɦ+ +; @r)NțPuXT8bT "75L"'֑-PAN۶Iދ@K}`Lk=}ZaP!=4oX9e4'VC@Ȋ*ʏޗJ6/J5;kkkLZQJ=p=d͏8 522rYDDd\) N}+\OS4,/?IENDB`minitube-3.1/icons/light/16/link@2x.png0000644000175000017500000000107613500741170017202 0ustar flavioflavioPNG  IHDR szzbKGDIDATX;hTQ_P#XE$&bBbU%$b/b"D5B@ Y6"T8z@|pܙ̽Ú3>%q-JY uއ}yc+bL7O#nZ>n>Unb{Tz4".bC^8< rIa6gn-D9|p-i[aRKB'(EŢ>rdTSNZ*4a[%1-5v&p<ӹ%]{i:ʸ'4k71TȩIENDB`minitube-3.1/icons/light/16/sort@2x.png0000644000175000017500000000035613500741170017234 0ustar flavioflavioPNG  IHDR bXbKGDIDATH1@@яS/chU;dD=6K1Le4$]`kcTQ03L`̀͢g6M% {P6O[B5c_8ہ+) }o=1XJ{ 0u$ԍMCg}qDRF.IENDB`minitube-3.1/icons/light/16/audio-volume-muted.png0000644000175000017500000000040313500741170021406 0ustar flavioflavioPNG  IHDRabKGDIDAT8͐ PbT=B\!iz37"Fp[p\J;r8%+`-XqEV]* e{/ @ tMʵAߴ >  RT*xX8aeq64-/а25idE!?'3IENDB`minitube-3.1/icons/light/16/media-playback-start.png0000644000175000017500000000025213500741170021664 0ustar flavioflavioPNG  IHDRabKGD_IDAT8ѱ@` v˘DJK0(4%_~U `džEpzA, 8=LX^eF> FH:b/ u:X#^UIENDB`minitube-3.1/icons/light/16/video-display@2x.png0000644000175000017500000000036013500741170021011 0ustar flavioflavioPNG  IHDR szzbKGDIDATXK 0@iGZC`TzE7)q/Bd,e 7LSOE&. d A (G2X[dI`{ . <;Hde8-wOxr 85WY uLs~P\IENDB`minitube-3.1/icons/light/16/audio-volume-high@2x.png0000644000175000017500000000221413500741170021563 0ustar flavioflavioPNG  IHDR szzbKGDAIDATXŗohUu??6Y%LʰKۋRDRu.۞s`y`HRT?K 4ҥheŽvӋ;{wǸ~w;sP9ZL)*0tx!QRہgӦiO /p]lmy5CCCv!N&9H$>tC"dNz"r8%pO4A^Ms8@x 8FMR### z%.IR' "u &qU---918w˲Vw@Mc~ఈ<-Z1cinTJ}VhPDj}x+E ]gJX += =ktEr5!;~+{@ ȅ{:;;i版<Ԗrb` ^c.5$ɫ"rRD5_8˵/i1|JM2pV'&&z]A_1 x_>W\ t:] PWWwSu"PJ X0Yy8VNLL #@.XUa Fnߝs"ox;8c@-ްjhw[[ `Fi{FD@#x;(q`= n`ֿUC)-8'#"25i(07R Xlk2 `Yr&M˅G|% }V"r?>p4c_z{{#":f-k: df\(ęga6$^P^$/"2^ E4 k/%;::~,oge/@o'(&ہ*j:9N+R{ o+u#n. BM@}WW7b[G<7WJ)mIENDB`minitube-3.1/icons/light/16/sort.png0000644000175000017500000000026013500741170016654 0ustar flavioflavioPNG  IHDR /@bKGDeIDAT(ҽ 0@#&:kDcAH7鈑S)+HL }w߆Ƃ㎙a<'zGND1aIENDB`minitube-3.1/icons/light/16/edit-find.png0000644000175000017500000000041613500741170017533 0ustar flavioflavioPNG  IHDRabKGDIDAT8СjQp&k"l8@ӂX"vceb1Z݀ rpao<}[r?|%\;OPHe 2F/CʘE8(F"V1`rwF(cNB X,0Ϙk4 yt{- ,HZio ; u IENDB`minitube-3.1/icons/light/16/unwatched@2x.png0000644000175000017500000000100113500741170020213 0ustar flavioflavioPNG  IHDR szzbKGDIDATXjA:Y%`Lf 'p/ӕnąDѧqBPp DCv>fA]x0.v/4?4w:}f& Ո=X̡>ckxhRXq/ +xM簌.a&bBuo{"tKLhz)j⃜Sg]Iq2@s9FC[}LFR~m(^q,EE ō Zq-}"B,$Rmq. a<."Oo:l澀IENDB`minitube-3.1/icons/light/16/bookmark-new_active@2x.png0000644000175000017500000000075713500741170022201 0ustar flavioflavioPNG  IHDR szzbKGDIDATX=OA"%rbLX $&XX_†B co0MZ pٙ$'<33;3#3ֱp##IX8,Y&Z&)K08hD֎W)-.m(p++J쌾 f3[WV?a>/֊5|wT݊︾;KxG7-'9_ŏ.kj]xA,%_a8^&덊Vk$$jb:E1Mg`)EOU7mzB`Zv+Óvdib~cU |TxK\eUk RS2̀>Z73;St䳑i,|+$>ߩ5ثIENDB`minitube-3.1/icons/light/16/email@2x.png0000644000175000017500000000071713500741170017335 0ustar flavioflavioPNG  IHDR szzbKGDIDATXKq) @S$E&Q> $)"""*?n_A]^!ONӲ;놇>}LRNzCk &\3' 5uM_vq3f>X&@q|4 ^Fl{-vxZk O8}V8rwcpoGbB!E~9!H!U3  |B.b&\13.70U/RfЃ@?R{KqTqTACzVb ~C7>g ov}YE]4R3'hhmdLEA'od*U1~ 45IENDB`minitube-3.1/icons/dark/0000755000175000017500000000000013500741170014545 5ustar flavioflaviominitube-3.1/icons/dark/88/0000755000175000017500000000000013500741170015004 5ustar flavioflaviominitube-3.1/icons/dark/88/channels@2x.png0000644000175000017500000000155013500741170017660 0ustar flavioflavioPNG  IHDR,gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME {^pIDATxܱmQFѷ AL dZ q@P{ u eaǶf+sO&wOrcqxq~=p'ʗ}8s6/~}OG_cw'6o׫_:S 8&pL1c 8&pL1c 8&pL2_ճOx1n~f|=t|w__fm}M8&pL1c 8&pL1c^}߽"{߽x߽xWDL1c 8&pL1c 8&pL1c s/"w/"w/"w/"w/"+"&pL1c 8&pL1c^q 8&pL1c 8&pL1c 8&pL1cEEEEE|E 8&pL1c 8&pL1"}"܋8}"}"}_1c 8&pL1c 8&pL1c 8&p̽x߽x߽x߽x&2/0%tEXtdate:create2019-02-12T16:19:26+01:009j]%tEXtdate:modify2019-02-12T16:19:26+01:00HIENDB`minitube-3.1/icons/dark/88/unwatched.png0000644000175000017500000000335213500741170017477 0ustar flavioflavioPNG  IHDRXXۜgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME {^IDAThklUwvK@f@'5@"BԀڔ*YFJĤ "hDKkXQ`)]sgɜOg7;{0K~6M`6MJL`a& "AX<p 0Wpn%pPdb,)Hd<nq s+x1Bұm]QlC* 2.br̟Z ډb~vȲrPNd?8,ĸrkejCs2 lxֆP3OEJێrqUXX$)wX$pk>fҝVSk/䄇`&|&(P\ udO{!PxzRתGWXYmw5#^)CDk-nqM|VIT瑸A.`Z b)\ܣЫH gٶ,R?IF'{y4*;pBOQg%k[g+8V)р;Tn F=]5\gVgUxU9uToF2Ǩ:S>+&VbJVfuɋ;l+d9y':U+}erk=X;5n]THIo]*_nJ߰)zv)z ((seaWtj%qI=9Wggz0 qur<KkQx?DVNW䏰ڙM԰_;3rn^R+zmQA Q58]q+j$VZUy9c i'tWEGiH\$ˣqEڃ4Bkf|MWd܊2L% lP7]?}^:|Bΰg2$ⶋShq(ӤH)gƗĖǴ FYb:)b>k+\X=&9ͤf`Hs}9@F搞J(!R*L E9ؑ!t]o0΍ UQi`֡E"9^:2"aK1֘6|v!CqpN\t7R^Wp:$ẑEMO:qHlv*dGl  l gYlIH254GDQKqX ??2 *ILc0)`k&N8*p =ql!UqY԰qg 16M`6(1M`/jjD3O%tEXtdate:create2019-02-12T16:19:26+01:009j]%tEXtdate:modify2019-02-12T16:19:26+01:00HIENDB`minitube-3.1/icons/dark/88/channels.png0000644000175000017500000000070113500741170017303 0ustar flavioflavioPNG  IHDRXXۜgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME {^IDAThر0D; ]`* "Մ#肂>Dʎ ?پgo4N5%#p#ojaO`&5ޣڀxʇCAbxG>}J0ϳxk znCa` :7  >XOz%,$ e{FTFddQQh,1|Id"OyxNo9w~33ً(#kk&Hû&^Xfs8% $Z(SȇC+x6%xbDH%ldOzس_vN^޾vv8<1#H_S\\Br-<fNOqkt# ),:z{b>x Vg/"rlƣHaP~L5Aiŧ^0 |ZTx"W6$!&_ UA??O} W |1!7*Uh~|BcEݍ6݅J3SU1WrM|&K+&oeZ{xU.ӕ\ xDKȵCLZ'4J3V b=r4.vBW;nQ-(q-K0LKMqĈ ʓÓ<^mu ]=.jSE&'kSV,f'b;,N &ܲ%x_92mbDw!ӹγ/NGP@^mTEy Q5R~Fб >EᚁؖZ`s|\#~d+Kpo:ӰwgXT2JE^ݤ 7kg$[rE~9(J ᬙ=ĮXBuH@W{ E3`Y#_ߝ'b)xsxծdpTF3JBY9P])dD+.0,F؃xjTtºw?\;$n &=X!`%յ2Wxa"ɛY5hw~HX~\e  KR_+i _cqNt\o U`!ҲX+.1+^lEoN79qpjL*Wۋ۰VĝУX =bǘ._P5Pt["z7^vޘcP8wXTvΞ{x: 8@b9e2Cw`6EB/lPnx֮B\e4WHҿ ȷ]9FǡI 7B).ʠwJ0RĘ_ m1༨YH'q []DZZ]НR"O_M2IMl ؆CS 8 #q NqH>T"Z d|q92J9j2vɿ3$]-tt&4qg;lFIt)]uãMLSh+qIl,T_bq͋.tԱ{hc̯y%.+zc!JOso"usp8>1]\zY~ iZ&FgHr={'rYI{D5:>Ԟ\34'Yxq&_`Kp] |'7>l.G<#cqqŕ߹uӥO۠)>Hg%tEXtdate:create2019-02-12T16:19:26+01:009j]%tEXtdate:modify2019-02-12T16:19:26+01:00HIENDB`minitube-3.1/icons/dark/32/0000755000175000017500000000000013500741170014771 5ustar flavioflaviominitube-3.1/icons/dark/32/media-playback-pause@2x.png0000644000175000017500000000066113500741170022032 0ustar flavioflavioPNG  IHDR@@`UgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATh;0 au@Лp. %`܅ C`]2wJu^z0'9OP^ 4Nz3*WwcB,d'VdmU,~DӢiCgEɭ {!N޼%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/32/media-skip-forward@2x.png0000644000175000017500000000164213500741170021541 0ustar flavioflavioPNG  IHDR@@`UgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME trAIDAThOHQ7K C$"@Sf6e/ExY]Iy2f23"P.Ram3]Ysow` 6>fgxo†V Px~AD@u*xi1WH+>B}zR n z<he; P?_=fU*G߁)vg4=rV#1\rS; D4B^⼮.x] F;>-bC)E'pIp? Q7t-Lݴ +~P33uߕY&:0eC1GCWȕ9$ p=(hnqT1.:*Ye"?X9ya6 ux:M8L 4;kԬ/]k>},ӄ;&}x4`C7gŬvѓёZn[FZ ݺVOzp;fÿ% W=QVs`>Vd; fE? ѯqtC}b6O܌w^^a5Ob0ZEnV-d| y/es{xl-)f`.YkG3ChX~G3aK |8-LPPPp$ =GZ%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/view-restore.png0000644000175000017500000000107513500741170020135 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME {^EIDATH!O@JI1@~c c f`HȾ 000h–!ֻBMkz^Kr)/o _ϲa=j0A+^GMl@ 10[hNDtA5/hadA6%罌tº!NaѢ+TS$v޲pc}gzΓ! v 3Rt kvO'}n3 =b 0\a$)kSxGaWLHaDn@ǣnrTf|5ׁwDoz`%tEXtdate:create2019-02-12T16:19:26+01:009j]%tEXtdate:modify2019-02-12T16:19:26+01:00HIENDB`minitube-3.1/icons/dark/32/view-fullscreen@2x.png0000644000175000017500000000142313500741170021163 0ustar flavioflavioPNG  IHDR@@`UgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME trAIDATh=/A QPd\BShI6[8P(Zxvs٧23;FzIs~H 4G5y/J  '0oc똣D &^(u0(bԽpB/ٶ 2&AndY,fAe3"!qC7}q+=<ƻwR B `yQ)/|5' ~fA@ Mx!(b/:n.JA@t6 aO} O[rG@_P/@~ &o3Wal(r |92' {YG72M6 <>@Ke=` fW|d)W>P/`n(iF Yr%LbO#p0-G ;%O|F] =b)jmF]Kw]xX >jdKYqH h>]> $%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/document-save@2x.png0000644000175000017500000000114413500741170020623 0ustar flavioflavioPNG  IHDR@@`UgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?lIDAThJ@XS=A|K]K#У/ >ЃI&A?:{K2mv3$)io&`&`ؕGϙ(;3DN+UC 1 N MLLZXӐd#ard'To64%b֗V-hQ )'o^;?+/TM@੯@@P@s@@@A/< !^\  bQPUհFAWc?կJYk~Lꆤ;(^#J csR00ZA6%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/32/view-restore@2x.png0000644000175000017500000000151013500741170020501 0ustar flavioflavioPNG  IHDR@@`UgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME {^PIDAThAKA#i*mnEۓ %PO%(ԭ"1I"Ȟa"5to%=8^ X=ňlwNˍ'әnJ=( SdDrj"/ s:bҾ#|W@泝p7u{~+n.`,J/!χҋt"̔ cBK;J+绖㖤&[`7/{9cKMaO2ث92lJ}1?SJϿоKgƼ0?e H5ìU%tEXtdate:create2019-02-12T16:19:26+01:009j]%tEXtdate:modify2019-02-12T16:19:26+01:00HIENDB`minitube-3.1/icons/dark/32/media-playback-pause.png0000644000175000017500000000053413500741170021457 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?dIDATHc@`P0aaC)<01X ,100Xg@1``ԀQF &F$ (yE `Xcq%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/32/open-menu.png0000644000175000017500000000065413500741170017407 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME trAIDATH!Pu`5&&#m$- o@112׷e&#{`x5^yTAk"TtV&MINCC`" Su2E(I m!X0 S>&B @L !?gޠG;%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/view-fullscreen.png0000644000175000017500000000111713500741170020611 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME trAWIDATH?H@] uB;)$.;;8tt,4;wiutY6!ymhhrf(~p.HV"RAEGoP hX{@)N3>.5)-x9m4r >AYtBl+z|@PmtA|38pVz g#)0 +^A 𫮨m2FDFRTeTd?]<,5t Di-@/rA/.&!4ϡ$Rq4)Y`LbT-Dz|n)-=%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/content-loading.png0000644000175000017500000000054313500741170020566 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?kIDATH1 0 E_Ee-ԩDrKA\Z$y]n}/ [NJ'!İ%`a`lN  t[dX5Vs2O U֝PP`@|> pوD;g+A !u:#$c'<`` $VDd`dFL0N/t3HqwJtaaϱdx,Pg,qK9.>+@,6J@*o ^E('t/{oW@U/ 摆w3%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/32/media-playback-stop.png0000644000175000017500000000050513500741170021325 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME trAMIDATHc@`P0 ! 3_ ( |0jT22"V"*4V ם9wp۹y9c}W kC B Bh鐳X6,f^nstwM܉iH3ږVfo3+ @监lz#5CU?aLc 'G5ծz<],>#kM:ҟ7o skErѩg'@+f&hLbEipJd>S'9AL23Stӏ:R;9D8EsqiO`X\\-OPm*mDuEJNRV)jTuq0T+0JI v:g[4O`3\/E{$~f^A&'%Lnݿ` .rO4ogpc{ iM%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/view-list.png0000644000175000017500000000126613500741170017427 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME {^IDATH1Hq?2+ JAӡA$* 8T Q` -- ES$Y\Ayw;[dro텳7HoHR>2}x0_8<7@Fp?t_͵d:ظ崻Eq7j{k MZR3^Tkث"F+6Sw6Sm 6yY$JZ25AH_ Imj.KlSsRV% 3>#cB]޲s:M{mol_ސa%tEXtdate:create2019-02-12T16:19:26+01:009j]%tEXtdate:modify2019-02-12T16:19:26+01:00HIENDB`minitube-3.1/icons/dark/32/media-playback-start.png0000644000175000017500000000067313500741170021503 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATHձ 0wH4L 6!K0s(b q4(`lws}IP6\`"`?vv  RT`ZٳY/ : j$*$QDHAD^$e+05N,N6%78D}: `9v}#qg]vL-H=ʁ'Hloh%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/32/media-playback-start_checked@2x.png0000644000175000017500000000074413500741170023522 0ustar flavioflavioPNG  IHDR@@XGlgAMA V1 cHRMz&u0`:pQ<0PLTEEFDDCCEDEEDDDDdQ* tRNS@)B-]2,30bKGDHtIME trAIDATHԹ 0 a$ GfL)(gqpH6~]תn N@8qYg8%.`%.Bh"H@.R "'-?mAkCSgwSPQRSPAa bP;{%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/media-skip-forward.png0000644000175000017500000000120013500741170021155 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME trAIDATH1A%B-l,B v6ER&(r ^K-," Ql&ʝKDdw"fA"3̈2p_o =`bVV\@"+,% ru6fe l~ujV.E;%|)DΎi>>2i{j'fI+k| 'p_qsdQJ~n*JG )֞MDg*ǺC~S PsϽǰ!"ݮ=:suVHcوo^%@E+~ǒ+luj=nHP_0V%7RZfڮ,3s%tEXtdate:create2019-02-12T16:19:25+01:00pp%tEXtdate:modify2019-02-12T16:19:25+01:00y-|IENDB`minitube-3.1/icons/dark/32/content-loading@2x.png0000644000175000017500000000075213500741170021142 0ustar flavioflavioPNG  IHDR@@`UgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATh1j`Z1 d nXA;tȋCߐ˓/  :Y s2=\$v[DhOcQz5YWW=nLӕGc(¥1s41{51l.hјkMfڣ1 oB YS'ީYMd   =}v<%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/24/0000755000175000017500000000000013500741170014772 5ustar flavioflaviominitube-3.1/icons/dark/24/edit-find@2x.png0000644000175000017500000000160313500741170017715 0ustar flavioflavioPNG  IHDR00 1 gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATXMHTQofDkPmr٦hEhjѾEh#}A!Ҫ*h"P$KhS bY2Xk1W7 xf;{{޹D*b%:kwc6PL~pn)j``+zviPi jBͪ^JFӯS7)J5LӾJ8~*E.mA\u@Wc^8K}1 .1{H3&5ۭ"3n,ËIh2_R!2մ$`"It4+,M/m-Fj$U$l7;+&fx+ii/وg߮1s/jmf8a xK-1kai ->Agv_uyݢ:4|᳔ 9;k65s\"ye_#wQ]ֹM(oELzC1 .ٝҴq<=bKFZ~3̾0oG^NRک)^)n$iX]wInV1ZlkLTD9"mg3Yp (Wr*1z`_c%7x>5t%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/24/refine-search.png0000644000175000017500000000104213500741170020210 0ustar flavioflavioPNG  IHDRJ~sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?*IDAT8͔JAϬB --ElDWTAPAbV|>"6M !>nrl[ݙιwfnx] kKO.4m4cP C,UjxD߼0GΒ!J-:.؄gx&b΄U7k[eP`|h|IV 3pELE$# "oa<(G#&gUfV;qd¿t8Nz%C|=qd%*z)%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/24/refine-search@2x.png0000644000175000017500000000160313500741170020565 0ustar flavioflavioPNG  IHDR00 1 gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATXMHTQofDkPmr٦hEhjѾEh#}A!Ҫ*h"P$KhS bY2Xk1W7 xf;{{޹D*b%:kwc6PL~pn)j``+zviPi jBͪ^JFӯS7)J5LӾJ8~*E.mA\u@Wc^8K}1 .1{H3&5ۭ"3n,ËIh2_R!2մ$`"It4+,M/m-Fj$U$l7;+&fx+ii/وg߮1s/jmf8a xK-1kai ->Agv_uyݢ:4|᳔ 9;k65s\"ye_#wQ]ֹM(oELzC1 .ٝҴq<=bKFZ~3̾0oG^NRک)^)n$iX]wInV1ZlkLTD9"mg3Yp (Wr*1z`_c%7x>5t%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/24/edit-find.png0000644000175000017500000000104213500741170017340 0ustar flavioflavioPNG  IHDRJ~sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?*IDAT8͔JAϬB --ElDWTAPAbV|>"6M !>nrl[ݙιwfnx] kKO.4m4cP C,UjxD߼0GΒ!J-:.؄gx&b΄U7k[eP`|h|IV 3pELE$# "oa<(G#&gUfV;qd¿t8Nz%C|=qd%*z)%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/0000755000175000017500000000000013500741170014773 5ustar flavioflaviominitube-3.1/icons/dark/16/bookmark-new@2x.png0000644000175000017500000000134013500741170020445 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDATHǥOA?%j0QGԈRHgaa,x&sCml)ND*`B((,4(A( Wvowv{y77Bӝ$/w@pHMDR r{[)9{4'#^{h4N`qRI'0w,4ieX(&B4ٜ\@9Pk*T"/mքij\aMQַd_;WjOwC9'.x 2/8'Jo|2CLb(7pE`?pS#w  IN%#ŎV(M`X@c4gd\3<"FG:?Ȳ,E$T>{P'0B  rl`C;8my_Y=,a 5Ka׻T gc&uMp+iG$l-|qm~m_<7E%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/email.png0000644000175000017500000000066413500741170016576 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDAT(ϵ MiRŝpt )$'xx ^$j8Xbuff3w*-bc9SWU-lj }24^$Mk6M-eA!\sΌ-I}SOڨwoq!NJT0H$>ćLn NUޑ G%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/edit-find@2x.png0000644000175000017500000000121613500741170017716 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDATHKTQ3#%E H?Puh&VhӾ/M, 0 *ޯC2Ӽ,7-:g.ι$6m<q>&]|ZLŅN %Kcńmu6~xs@aݔ=@I,8մiDsXŶ^s-d]ZIp7TS%QIo?td655R9">$[|R;cDt'$܊ LDO^2GrJ"Fӝ8WZZypiӠ)pxbUu l>֯.vEb󆊀*{/*V] +e3\*WAoBwiTADW3P(g#ű )I٥l%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/facebook@2x.png0000644000175000017500000000074213500741170017627 0ustar flavioflavioPNG  IHDR gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDAT8=n0*%, ]= R;2q^-!i `>W~zOe'1@c M_/Bn͔O"|4饽&f&8Zξ;/] ,# g;[TU)4XY?b@ 8ߓ/-2֤Vs~5CUݷ_NÛp#iWtaYPAͯrt%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/search-duration@2x.png0000644000175000017500000000150113500741170021140 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IIDATHǕNSQ^)H@m3I`::51gygDO ā`mRM҄{z{z >{~ZgCL`oL9+wiYEYEkJHYMK$ү6xI%՜݂F&uh! 빮+&bJ腾a5 BocZx׶{I^$N /yKґYb 0fܙttU7}e{x_H/V2iЌ$I2aiI8<xGz}cL=  $uJ= 4zhppوuS7~Sw uD9%I;Ĺv<5|w(2@e0Gv1"zl\3GhPe5} :w-X1eۮACY eLSP)[Z!Шmlv$}.C R ㋧^k}/ NUR$mӶ]4EUuU0=Z>E>dH3I>ɶ>A$D.%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/mark-watched@2x.png0000644000175000017500000000132413500741170020422 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDATH?LAw$ D= ,{#$5'B(@  +,ihNQ#ܰ)Pܹ;qK(h,n7BqcP_1/ yh j[XvS/R6qVSKsSiȜI=sϩ 8 ^zy+3ت.Nү6nt[/cu/l(r@V&]u0)0: ?>MLELT/Lpj^U>MLEG}Y ,)z>{ſ46Y.[,jyKLoVozn?ML\iF];_2FNzJ! %9LbI 9}Uvۼ ѩCI˺yL1z/^93"~Fs8bjlGST os1%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/search-quality@2x.png0000644000175000017500000000113513500741170021006 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME eIDATH=NAi05Ki4hg H V(w8 */`bD   F gX0T7~df޼1 O<3,GEQXbtrԢa8aIuQ=dP;D{o<~[i;EIU!HXIH PU2}|b!7q>G, +Vc}PK([I(%]SE+.  < N>bh>ؠv*p:Ԍ$PrbP" C 'T` ȑsw-Gd6] $r΢H $yc==ļ_v^0DcB¹c}˃W+/?a%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/worldwide@2x.png0000644000175000017500000000160313500741170020053 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATHՕ?LSaOIJ4BȟbAp "nFF &@դ-q  CCρ׾A&|r;<_xթ˪ oZQH/؉3nXd#L;,,'A,, g!b/PU (0J5fcPZ`L=A9pI!v,& s)R2\b+,@mQO q~!lC&?D~$h[ai'eI&oV%mjVi5it JrRCVҒqK"IQm ШmFR4IԂvR󺼊aUkUiIReIR)5s\:`:ϴAo]&% \{fs~eRyδG\oٌO'`6@H ƀp[Zn`x ,S@ʽLK&"w_з6Bm=9wԩ5NhE kT_ 5z_ͧ,biF'%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/go-previous.png0000644000175000017500000000053213500741170017760 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjbIDAT(cπ01A?).?#q)FUEU Žj.BVt$dO)`_c86-+%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/worldwide.png0000644000175000017500000000101013500741170017471 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDAT(υ=KBe&(4'h h6XS7hudKЬpKYxG +! &xd_=0H.d;`-`x8d"\0 g'SM۵u5CqHZ-ʔ1K @, (1PN⪡Xqf% hȆ]S|p2K Br h }C, Ucv|W?Z/wR4%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/safesearch.png0000644000175000017500000000062513500741170017610 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDAT(} @D!]?_eZрUHaga;F=gݙ ?*3%zzRY!YNy%tU̹ - wC'g!s"$5 ?2vTJwB05~8~Z^;Ia 9Ma\`f6<$x*p.l(̾%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/bookmark-new.png0000644000175000017500000000075313500741170020102 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDAT(}!OA6CSS! A5mI!%HT5s U]Ոb*j/W춄fwޗ%PoW){{j"L-@'z.-M"*ѥgaWa{Z%S! =ok~fl2i^c9fF&?[5?ni&2睁NI8HZ g:3%+OBYT@N-%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/facebook.png0000644000175000017500000000060113500741170017247 0ustar flavioflavioPNG  IHDRgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDATӍ1PDA4&NceL(O 8*\?VdvfcGy9)r qW"*I*ތ!'$z>'gyYhgAi] e3Zr^6rfG%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/video-display.png0000644000175000017500000000054013500741170020251 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?hIDAT(͑@ C!XY`  p,+@\C%&/:pfԆYdf{_BI5/j[b!> -96$kywO1 c'%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/search-time.png0000644000175000017500000000102413500741170017677 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDAT(}ϱjq_4!D d B7' .NκuW5t젣s""v}G60onr(&*d/ 5$BIeVx$NvoOlrdҿٗQV))AJNs\dQQaoTz8ܑoFUkCߕ u#l-'ߌ05f(zbn#m>22"Fs<"ˌvG <1Gm[;׍dW%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/media-playback-start@2x.png0000644000175000017500000000061213500741170022050 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDATHձ @ @'ih& XI-hd $>JdPݾOe"wdmB ڈar6pP[ UdfxtGg%$X6HH˔\ԃ:b&ׯjAB%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/audio-volume-high.png0000644000175000017500000000111413500741170021021 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjTIDAT(mK+akl)MY0X<;l(Cjǰ 2Ť,d&b61HcF6ӹtN4c6lJ k,U@rfnr<jW19z7|hX/vTOmV xK=*vD@O KzPg:=rq4䑇=qI%3ȅ\}HqEi7 D%Ro%I4X,H2ܷkN;(E`w5By9xo~1ob]^4>c>Aیgs)PuS%yC' )qu%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/audio-volume-muted@2x.png0000644000175000017500000000101313500741170021570 0ustar flavioflavioPNG  IHDR DgAMA V1 cHRMz&u0`:pQ<oPLTEooiieeddccbbddbbddddddddddddddeeddddddddddddddccddeedd``ddeeccddeedd#tRNS F*9Qn㪳UB,B2bKGDHtIME }CjjIDAT8ѹPC 8"-+rK]%Jf PUMnR;,\כig2f s/%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/twitter@2x.png0000644000175000017500000000130013500741170017547 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATHՕK[QǿiZSTA. T:ҡ(ENBqj18v`*Xb+58<_b{c {}|w9Aw{G} ؠgjWBV@'m}WL_*^ӹ%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/media-playback-start_checked.png0000644000175000017500000000053013500741170023143 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME `IDAT(ϵ1 P Dh6 PĈ Bcj) mKzU;`S`Fw_BeL3(t!,~D*7w&7_.w9m5 4i TXjdF&{? ȧ./LFr4D s:ǧd|U3ti%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/bookmark-new_active.png0000644000175000017500000000066413500741170021436 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDAT(u1QED+UV@tTS FV M(Z&^s Bkї0 g10Ybg$Is͖+?aaײIU'IɫC5q,ȁ}˸C>B8Rе’5u[ĊbkC?~%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/go-next@2x.png0000644000175000017500000000066413500741170017442 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDATH 0DǴ@  J}H $ʾ!Ki;JujR1#ّ HXAd_k{FfNe7"Gw!:VLDL8 9;r ǒZn90yC뀗2yVWY#Oyˆ}'*fu%pk#҅VnFb/& *c$7= ~{*:ˆD][bakb+m;2NJkkAsyC^a.4Rt%%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/search-quality.png0000644000175000017500000000065113500741170020436 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDAT(ϥ!@En IzLM/C4!($ `iM (&q3flfJu^9]DjVOF+==;KD#FDS&hѨPgɹJNm cf0dċ# 8oʍ3Oc}37)6-k%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/link.png0000644000175000017500000000074513500741170016444 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDAT(υ=N?6XKN,ąbA*46LlMHw#@v5:SL̫V%I r =vcEL=RÎ]:@oN:rĦ]'Vm3ZDlɲef,>ygl/FkN7ǎ Ԉެ]r @Yyk|&Nm35*nNrY*jq>T Rp%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/search-duration.png0000644000175000017500000000076013500741170020574 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDAT(mM.QCD Hwf $ Q`ʨY(~]U>KSzjkqy k"q3.QZmͦPsS^tA-"}-wc60r&y>Ef2|T9cb42R)!2ns*[( P4X߆Mqe;sU+ubŋc[=o:N%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/show-updated@2x.png0000644000175000017500000000124713500741170020463 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATHՕOKAƟY܋H:1P)G VA}B:DPx[^riCZ쬺xjN}gB1ڐFԏOW40u@뤁zJHb:w$6@LRKntRNSH ! 7KqbKGDHtIME }CjEIDATc` 02YXQl(\\ܢ(`OUMA@MAHMAH?J %tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/media-playback-start.png0000644000175000017500000000053013500741170021475 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME `IDAT(ϵ1 P Dh6 PĈ Bcj) mKzU;`S`Fw_BeL3 Y.8[ta|36ryMJnHĕCҚb50KؐͿeO; #;ZoF&Yo%qr-Ӄ=9tCI@6n뵣ʮ8pC:$>-N>T5;TGl"@|<٪+gsX/@:]Xo$Y/W7XE,{m"B΢4ͩ.rjM4LZf}=m}Wt&?^C+0m_9@6Vr3`ȓy>f/*G'pN'\aB7m" CflO^vu> VkSlY3pDp*rq%kLWC(x`-MZ*ϿKWciI=z.f l}v^1M@ jǕ9ol#w:QGIeh E&C|;(}/MYVMV+H\e XD9HJdPݾOe"wdmB ڈar6pP[ UdfxtGg%$X6HH˔\ԃ:b&ׯjAB%tEXtdate:create2019-02-12T16:19:22+01:00NN%tEXtdate:modify2019-02-12T16:19:22+01:00IENDB`minitube-3.1/icons/dark/16/sort.png0000644000175000017500000000053413500741170016472 0ustar flavioflavioPNG  IHDR v&gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?dIDAT}  &߀ ̙y |f)bKWUU$)םv_1{!D(MUOCK( 2%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/edit-find.png0000644000175000017500000000067113500741170017350 0ustar flavioflavioPNG  IHDR7gAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjIDAT(ϥ?A-N-$b*hpH4(AYP辊oyLf>/L }_~z覓!,&8d1B=#z_M$My \s؃-ϨUiu4sJu)lδUSXD%,1fǜZ#To@"7i@Qd'%tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/unwatched@2x.png0000644000175000017500000000121713500741170020036 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME u?IDATH+QƟ1)3SJ(H K>B,\z{1dC9wuy{sA?| Z ֨KTZ)IWTAZ}2#a,AM3Nj/g9J s烞0B-B1ʩ/rːKg*wzV|j?AVӛ$gfw6N5IC&cZh"(Rg7X7I紈Cg\bx.A"P2"m16X#ZY!rŘ)9F/y.&3BIg)-.Y+>o m rcU1fYϸ%kJ]3VxQ<Ӷ\:?H. qկJғ1D4eJgre+hE%tEXtdate:create2019-02-12T16:19:24+01:00{t%tEXtdate:modify2019-02-12T16:19:24+01:00ZIENDB`minitube-3.1/icons/dark/16/search-sortBy@2x.png0000644000175000017500000000075513500741170020607 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME IDATHcπ /L (2׳H(s|O!_XҨB 7!<^KHsv5cV.$+u.Lr^bm *U6WHEGJ0 wGiŁ #TUlvf۴zt "D܉DAV2qkB &"ܒ3?,7tgL)w[Rޚ^w8]k7`U %tEXtdate:create2019-02-12T16:19:21+01:00?T%tEXtdate:modify2019-02-12T16:19:21+01:00boIENDB`minitube-3.1/icons/dark/16/email@2x.png0000644000175000017500000000111613500741170017141 0ustar flavioflavioPNG  IHDR sgAMA V1 cHRMz&u0`:pQ<bKGD̿tIME }CjVIDATH+aߓXXDmqisY%VDA$ _&av`%l{9nw߭99}<.T_4 ~SЦ

# Minitube Minitube is a YouTube desktop application. It is written in C++ using the Qt framework. Contributing is welcome, especially in the Linux desktop integration area. ## Translating to your language Translations are done at https://www.transifex.com/flaviotordini/minitube/ Just register and apply for a language team. Please don't request translation merges on GitHub. ## Google API Key Google is now requiring an API key in order to access YouTube Data web services. Create a "Browser Key" at https://console.developers.google.com and enable the Youtube Data API. The key must be specified at compile time as shown below. Alternatively Minitube can read an API key from the GOOGLE_API_KEY environment variable. ## Build instructions Clone from Github: git clone --recursive https://github.com/flaviotordini/minitube.git You need Qt >= 5.6 and MPV >= 0.29.0. The following Qt modules are needed: core, gui, widgets, network, sql (using the Sqlite plugin), declarative, dbus, x11extras. To be able to build on a Debian (or derivative) system: sudo apt install build-essential qt5-default qttools5-dev-tools qt5-qmake qtdeclarative5-dev libqt5sql5-sqlite libqt5x11extras5-dev libmpv-dev Compiling: qmake "DEFINES += APP_GOOGLE_API_KEY=YourAPIKeyHere" make Running: build/target/minitube Installing on Linux: This is for packagers. End users should not install applications in this way. sudo make install ## Legal Stuff Copyright (C) Flavio Tordini This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . minitube-3.1/COPYING0000644000175000017500000010451313500741170013550 0ustar flavioflavio GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . minitube-3.1/src/0000755000175000017500000000000013500741170013300 5ustar flavioflaviominitube-3.1/src/mainwindow.h0000644000175000017500000001422413500741170015630 0ustar flavioflavio/* $BEGIN_LICENSE This file is part of Minitube. Copyright 2009, Flavio Tordini Minitube is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Minitube is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Minitube. If not, see . $END_LICENSE */ #ifndef MAINWINDOW_H #define MAINWINDOW_H #include #include "media.h" class View; class HomeView; class MediaView; class DownloadView; class SearchLineEdit; class SearchParams; class VideoSource; class Suggestion; class ToolbarMenu; class MainWindow : public QMainWindow { Q_OBJECT public: static MainWindow *instance(); MainWindow(); QSlider *getSeekSlider() { return seekSlider; } QSlider *getVolumeSlider() { return volumeSlider; } QLabel *getCurrentTimeLabel() { return currentTimeLabel; } void readSettings(); void writeSettings(); static void printHelp(); QStackedWidget *getViews() { return views; } MediaView *getMediaView() { return mediaView; } HomeView *getHomeView() { return homeView; } QAction *getRegionAction() { return regionAction; } SearchLineEdit *getToolbarSearch() { return toolbarSearch; } void setupAction(QAction *action); QAction *getAction(const char *name); void addNamedAction(const QByteArray &name, QAction *action); QMenu *getMenu(const char *name); void showActionsInStatusBar(const QVector &actions, bool show); void setStatusBarVisibility(bool show); void adjustStatusBarVisibility(); void hideToolbar(); void showToolbar(); #ifdef APP_ACTIVATION void showActivationView(); #endif public slots: void showHome(); void showMedia(SearchParams *params); void showMedia(VideoSource *videoSource); void showRegionsView(); void restore(); void messageReceived(const QString &message); void quit(); void suggestionAccepted(Suggestion *suggestion); void search(const QString &query); bool canGoBack() { return history.size() > 1; } void goBack(); void showMessage(const QString &message); void hideMessage(); void handleError(const QString &message); bool isReallyFullScreen(); bool isCompact() { return compactModeActive; } void missingKeyWarning(); void visitSite(); void setDefinitionMode(const QString &definitionName); signals: void currentTimeChanged(const QString &s); void viewChanged(); protected: void changeEvent(QEvent *e); void closeEvent(QCloseEvent *e); void showEvent(QShowEvent *e); bool eventFilter(QObject *obj, QEvent *e); void dragEnterEvent(QDragEnterEvent *e); void dropEvent(QDropEvent *e); void resizeEvent(QResizeEvent *e); void leaveEvent(QEvent *e); void enterEvent(QEvent *e); private slots: void lazyInit(); void checkForUpdate(); void donate(); void reportIssue(); void about(); void toggleFullscreen(); void updateUIForFullscreen(); void compactView(bool enable); void stop(); void searchFocus(); void toggleDefinitionMode(); void clearRecentKeywords(); // media void stateChanged(Media::State state); void tick(qint64 time); void volumeUp(); void volumeDown(); void toggleVolumeMute(); void volumeChanged(qreal newVolume); void volumeMutedChanged(bool muted); void updateDownloadMessage(const QString &); void downloadsFinished(); void toggleDownloads(bool show); void setManualPlay(bool enabled); void floatOnTop(bool, bool showAction = true); void showStopAfterThisInStatusBar(bool show); void hideFullscreenUI(); void toggleMenuVisibility(); void toggleMenuVisibilityWithMessage(); void toggleToolbarMenu(); #ifdef APP_MAC_STORE void rateOnAppStore(); #endif private: void initMedia(); void createActions(); void createMenus(); void createToolBar(); void createStatusBar(); void showView(View *view, bool transition = false); static QString formatTime(qint64 duration); bool confirmQuit(); void simpleUpdateDialog(const QString &version); bool needStatusBar(); void adjustMessageLabelPosition(); QHash actionMap; QHash menuMap; // view mechanism QStackedWidget *views; QStack history; // view widgets HomeView *homeView; MediaView *mediaView; View *aboutView; View *downloadView; View *regionsView; // actions QAction *backAct; QAction *quitAct; QAction *siteAct; QAction *donateAct; QAction *aboutAct; QAction *searchFocusAct; // media actions QAction *skipBackwardAct; QAction *skipAct; QAction *pauseAct; QAction *stopAct; QAction *fullscreenAct; QAction *compactViewAct; QAction *webPageAct; QAction *copyPageAct; QAction *copyLinkAct; QAction *volumeUpAct; QAction *volumeDownAct; QAction *volumeMuteAct; QAction *findVideoPartsAct; // playlist actions QAction *removeAct; QAction *moveDownAct; QAction *moveUpAct; QAction *fetchMoreAct; QAction *clearAct; // menus QMenu *fileMenu; QMenu *viewMenu; QMenu *playlistMenu; QMenu *helpMenu; // toolbar & statusbar QToolBar *mainToolBar; SearchLineEdit *toolbarSearch; QToolBar *statusToolBar; QAction *regionAction; QSlider *seekSlider; QSlider *volumeSlider; QLabel *currentTimeLabel; bool fullScreenActive; bool maximizedBeforeFullScreen; bool menuVisibleBeforeFullScreen; QTimer *fullscreenTimer; bool compactModeActive; bool menuVisibleBeforeCompactMode; bool initialized; QLabel *messageLabel; QTimer *messageTimer; ToolbarMenu *toolbarMenu; QToolButton *toolbarMenuButton; Media *media; }; #endif minitube-3.1/src/channelsuggest.cpp0000644000175000017500000000411413500741170017016 0ustar flavioflavio/* $BEGIN_LICENSE This file is part of Minitube. Copyright 2009, Flavio Tordini Minitube is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Minitube is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Minitube. If not, see . $END_LICENSE */ #include "channelsuggest.h" #include "http.h" #include "httputils.h" ChannelSuggest::ChannelSuggest(QObject *parent) : Suggester(parent) { } void ChannelSuggest::suggest(const QString &query) { QUrl url("https://www.youtube.com/results"); QUrlQuery q; q.addQueryItem("search_type", "search_users"); q.addQueryItem("search_query", query); url.setQuery(q); QObject *reply = HttpUtils::yt().get(url); connect(reply, SIGNAL(data(QByteArray)), SLOT(handleNetworkData(QByteArray))); } void ChannelSuggest::handleNetworkData(QByteArray data) { const int maxSuggestions = 10; QStringList choices; choices.reserve(maxSuggestions); QVector suggestions; suggestions.reserve(maxSuggestions); QString html = QString::fromUtf8(data); QRegExp re("/(?:user|channel)/[a-zA-Z0-9]+[^>]+data-ytid=[\"']([^\"']+)[\"'][^>]+>([a-zA-Z0-9 ]+)"); int pos = 0; while ((pos = re.indexIn(html, pos)) != -1) { QString choice = re.cap(2); if (!choices.contains(choice, Qt::CaseInsensitive)) { qDebug() << re.capturedTexts(); QString channelId = re.cap(1); suggestions << new Suggestion(choice, "channel", channelId); choices << choice; if (choices.size() == maxSuggestions) break; } pos += re.matchedLength(); } emit ready(suggestions); } minitube-3.1/src/toolbarmenu.h0000644000175000017500000000044413500741170016002 0ustar flavioflavio#ifndef TOOLBARMENU_H #define TOOLBARMENU_H #include class ToolbarMenu : public QMenu { Q_OBJECT public: ToolbarMenu(QWidget *parent = nullptr); signals: void leftMarginChanged(int value); protected: void showEvent(QShowEvent *e); }; #endif // TOOLBARMENU_H minitube-3.1/src/downloadsettings.cpp0000644000175000017500000000700713500741170017400 0ustar flavioflavio/* $BEGIN_LICENSE This file is part of Minitube. Copyright 2009, Flavio Tordini Minitube is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Minitube is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Minitube. If not, see . $END_LICENSE */ #include "downloadsettings.h" #include "downloadmanager.h" #include "mainwindow.h" DownloadSettings::DownloadSettings(QWidget *parent) : QWidget(parent) { QBoxLayout *layout = new QHBoxLayout(this); layout->setMargin(10); message = new QLabel(this); message->setOpenExternalLinks(true); layout->addWidget(message); changeFolderButton = new QPushButton(this); changeFolderButton->setText(tr("Change location...")); changeFolderButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); connect(changeFolderButton, SIGNAL(clicked()), SLOT(changeFolder())); layout->addWidget(changeFolderButton); updateMessage(); } void DownloadSettings::paintEvent(QPaintEvent * /*event*/) { QPainter painter(this); #ifdef APP_MAC QBrush brush; if (window()->isActiveWindow()) { brush = QBrush(QColor(0xdd, 0xe4, 0xeb)); } else { brush = palette().window(); } painter.fillRect(0, 0, width(), height(), brush); #endif painter.setPen(palette().color(QPalette::Mid)); painter.drawLine(0, 0, width(), 0); } void DownloadSettings::changeFolder() { const QString path = QStandardPaths::writableLocation(QStandardPaths::HomeLocation); #ifdef APP_MAC QFileDialog* dialog = new QFileDialog(this); dialog->setFileMode(QFileDialog::Directory); dialog->setOptions(QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks | QFileDialog::ReadOnly); dialog->setDirectory(path); dialog->open(this, SLOT(folderChosen(const QString &))); #else QString folder = QFileDialog::getExistingDirectory(window(), tr("Choose the download location"), path, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks | QFileDialog::ReadOnly); folderChosen(folder); #endif } void DownloadSettings::folderChosen(const QString &dir) { if (!dir.isEmpty()) { QSettings settings; settings.setValue("downloadFolder", dir); updateMessage(); QString status = tr("Download location changed."); if (DownloadManager::instance()->activeItems() > 0) status += " " + tr("Current downloads will still go in the previous location."); MainWindow::instance()->showMessage(status); } } void DownloadSettings::updateMessage() { const QString path = DownloadManager::instance()->currentDownloadFolder(); const QString home = QStandardPaths::writableLocation(QStandardPaths::HomeLocation); QString displayPath = path; displayPath = displayPath.remove(home + "/"); message->setText( tr("Downloading to: %1") .arg("%2") .arg(path, displayPath)); } minitube-3.1/src/minisplitter.cpp0000644000175000017500000000221113500741170016523 0ustar flavioflavio#include "minisplitter.h" class MiniSplitterHandle : public QSplitterHandle { public: MiniSplitterHandle(Qt::Orientation orientation, QSplitter *parent); protected: void resizeEvent(QResizeEvent *event); void paintEvent(QPaintEvent *event); }; MiniSplitterHandle::MiniSplitterHandle(Qt::Orientation orientation, QSplitter *parent) : QSplitterHandle(orientation, parent) { setMask(QRegion(contentsRect())); setAttribute(Qt::WA_MouseNoMask, true); } void MiniSplitterHandle::resizeEvent(QResizeEvent *event) { if (orientation() == Qt::Horizontal) setContentsMargins(2, 0, 2, 0); else setContentsMargins(0, 2, 0, 2); setMask(QRegion(contentsRect())); QSplitterHandle::resizeEvent(event); } void MiniSplitterHandle::paintEvent(QPaintEvent *event) { QPainter painter(this); painter.fillRect(event->rect(), Qt::black); } QSplitterHandle *MiniSplitter::createHandle() { return new MiniSplitterHandle(orientation(), this); } MiniSplitter::MiniSplitter(Qt::Orientation orientation, QWidget *parent) : QSplitter(orientation, parent) { setHandleWidth(1); setChildrenCollapsible(false); } minitube-3.1/src/playlistview.cpp0000644000175000017500000001245313500741170016545 0ustar flavioflavio/* $BEGIN_LICENSE This file is part of Minitube. Copyright 2009, Flavio Tordini Minitube is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Minitube is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Minitube. If not, see . $END_LICENSE */ #include "playlistview.h" #include "painterutils.h" #include "playlistitemdelegate.h" #include "playlistmodel.h" PlaylistView::PlaylistView(QWidget *parent) : QListView(parent), clickableAuthors(true) { setItemDelegate(new PlaylistItemDelegate(this)); setSelectionMode(QAbstractItemView::ExtendedSelection); setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Expanding); // dragndrop setDragEnabled(true); setAcceptDrops(true); setDropIndicatorShown(true); setDragDropMode(QAbstractItemView::DragDrop); // cosmetics setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); setFrameShape(QFrame::NoFrame); setAttribute(Qt::WA_MacShowFocusRect, false); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setUniformItemSizes(true); connect(this, SIGNAL(entered(const QModelIndex &)), SLOT(itemEntered(const QModelIndex &))); setMouseTracking(true); QScrollBar *vScrollbar = verticalScrollBar(); connect(vScrollbar, &QAbstractSlider::valueChanged, this, [this, vScrollbar](int value) { if (isVisible() && value == vScrollbar->maximum()) { PlaylistModel *listModel = qobject_cast(model()); listModel->searchMore(); } }); setMinimumHeight(PlaylistItemDelegate::thumbHeight * 4); setMinimumWidth(PlaylistItemDelegate::thumbWidth); #ifndef APP_MAC setMinimumWidth(minimumWidth() + vScrollbar->width()); #endif } void PlaylistView::itemEntered(const QModelIndex &index) { PlaylistModel *listModel = qobject_cast(model()); if (listModel) listModel->setHoveredRow(index.row()); } void PlaylistView::leaveEvent(QEvent *event) { QListView::leaveEvent(event); PlaylistModel *listModel = qobject_cast(model()); if (listModel) listModel->clearHover(); } void PlaylistView::mouseMoveEvent(QMouseEvent *event) { if (isHoveringThumbnail(event)) { setCursor(Qt::PointingHandCursor); } else if (isShowMoreItem(indexAt(event->pos()))) { setCursor(Qt::PointingHandCursor); } else if (isHoveringAuthor(event)) { QMetaObject::invokeMethod(model(), "enterAuthorHover"); setCursor(Qt::PointingHandCursor); } else { QMetaObject::invokeMethod(model(), "exitAuthorHover"); unsetCursor(); } QListView::mouseMoveEvent(event); } void PlaylistView::mousePressEvent(QMouseEvent *event) { if (event->button() == Qt::LeftButton) { if (isHoveringAuthor(event)) { QMetaObject::invokeMethod(model(), "enterAuthorPressed"); } else if (isHoveringThumbnail(event)) { const QModelIndex index = indexAt(event->pos()); emit activated(index); unsetCursor(); return; } QListView::mousePressEvent(event); } } void PlaylistView::mouseReleaseEvent(QMouseEvent *event) { if (event->button() == Qt::LeftButton) { QMetaObject::invokeMethod(model(), "exitAuthorPressed"); const QModelIndex index = indexAt(event->pos()); if (isHoveringAuthor(event)) { emit authorPushed(index); } else if (isShowMoreItem(index)) { PlaylistModel *listModel = qobject_cast(model()); listModel->searchMore(); unsetCursor(); } } QListView::mouseReleaseEvent(event); } bool PlaylistView::isHoveringAuthor(QMouseEvent *event) { if (!clickableAuthors) return false; const QModelIndex itemIndex = indexAt(event->pos()); const QRect itemRect = visualRect(itemIndex); // qDebug() << " itemRect.x()" << itemRect.x(); PlaylistItemDelegate *delegate = qobject_cast(itemDelegate()); if (!delegate) return false; QRect rect = delegate->authorRect(itemIndex); const int x = event->x() - itemRect.x() - rect.x(); const int y = event->y() - itemRect.y() - rect.y(); bool ret = x > 0 && x < rect.width() && y > 0 && y < rect.height(); return ret; } bool PlaylistView::isHoveringThumbnail(QMouseEvent *event) { const QModelIndex index = indexAt(event->pos()); const QRect itemRect = visualRect(index); static const QRect thumbRect(0, 0, PlaylistItemDelegate::thumbWidth, PlaylistItemDelegate::thumbHeight); const int x = event->x() - itemRect.x() - thumbRect.x(); const int y = event->y() - itemRect.y() - thumbRect.y(); return x > 0 && x < thumbRect.width() && y > 0 && y < thumbRect.height(); } bool PlaylistView::isShowMoreItem(const QModelIndex &index) { return model()->rowCount() > 1 && model()->rowCount() == index.row() + 1; } minitube-3.1/src/mediaview.h0000644000175000017500000001031013500741170015416 0ustar flavioflavio/* $BEGIN_LICENSE This file is part of Minitube. Copyright 2009, Flavio Tordini Minitube is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Minitube is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Minitube. If not, see . $END_LICENSE */ #ifndef MEDIAVIEW_H #define MEDIAVIEW_H #include #include #include "media.h" #include "view.h" class Video; class PlaylistModel; class SearchParams; class LoadingWidget; class VideoArea; class PlaylistView; class SidebarWidget; class VideoSource; #ifdef APP_SNAPSHOT class SnapshotSettings; #endif class MediaView : public View { Q_OBJECT public: static MediaView *instance(); void initialize(); void appear(); void disappear(); void setMedia(Media *media); const QVector &getHistory() { return history; } int getHistoryIndex(); PlaylistModel *getPlaylistModel() { return playlistModel; } const QString &getCurrentVideoId(); void updateSubscriptionActionForVideo(Video *video, bool subscribed); void updateSubscriptionActionForChannel(const QString & channelId); VideoArea *getVideoArea() { return videoAreaWidget; } void reloadCurrentVideo(); public slots: void search(SearchParams *searchParams); void setVideoSource(VideoSource *videoSource, bool addToHistory = true, bool back = false); void pause(); void stop(); void skip(); void skipBackward(); void skipVideo(); void openWebPage(); void copyWebPage(); void copyVideoLink(); void openInBrowser(); void shareViaTwitter(); void shareViaFacebook(); void shareViaEmail(); void removeSelected(); void moveUpSelected(); void moveDownSelected(); bool isSidebarVisible(); void setSidebarVisibility(bool visible); SidebarWidget *getSidebar() { return sidebar; } void removeSidebar(); void restoreSidebar(); void saveSplitterState(); void downloadVideo(); #ifdef APP_SNAPSHOT void snapshot(); #endif void fullscreen(); void findVideoParts(); void relatedVideos(); bool canGoBack(); void goBack(); bool canGoForward(); void goForward(); void toggleSubscription(); void adjustWindowSize(); void updateSubscriptionAction(bool subscribed); private slots: void onItemActivated(const QModelIndex &index); void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); void activeVideoChanged(Video *video, Video *previousVideo); void selectVideos(const QVector