Cleanup some settings. No longer offer to save lyrics, artist images,

and backdrops in MPD folder, just save in cache dir. Move cover setting
into interface settings - in a new 'Covers' tab.
This commit is contained in:
Craig Drummond
2018-02-15 20:18:08 +00:00
committed by Craig Drummond
parent 7f8d3f38da
commit ff48cfa0c0
32 changed files with 210 additions and 477 deletions

View File

@@ -1241,8 +1241,6 @@ void StreamsModel::favouriteStreams(const QList<Stream> &streams)
}
}
importOldFavourites();
if (CategoryItem::Fetched!=favourites->state) {
favourites->state=CategoryItem::Fetched;
emit dataChanged(idx, idx);
@@ -1733,24 +1731,6 @@ StreamsModel::Item * StreamsModel::parseSomaFmEntry(QXmlStreamReader &doc, Categ
return name.isEmpty() || url.isEmpty() ? nullptr : new Item(url, name, parent);
}
void StreamsModel::importOldFavourites()
{
if (!favourites->importedOld) {
if (Settings::self()->version()<CANTATA_MAKE_VERSION(1,3,54)) {
QString prevFile=Settings::self()->storeStreamsInMpdDir()
? MPDConnection::self()->getDetails().dir : Utils::dataDir(QString(), false);
if (!prevFile.isEmpty()) {
prevFile+="streams.xml.gz";
if (QFile::exists(prevFile)) {
importIntoFavourites(prevFile);
}
}
}
favourites->importedOld=true;
}
}
void StreamsModel::loadInstalledProviders()
{
QSet<QString> added;