Git commit e02088ee9128f8eb19ac2094b180c5e36caaa0da by Robby Stephenson. Committed on 28/03/2020 at 17:54. Pushed by rstephenson into branch 'master'.
Add changelog for previous bug fix and doc update. M +5 -0 ChangeLog M +3 -3 doc/configuration.docbook M +1 -0 src/tests/discogsfetchertest.cpp https://commits.kde.org/tellico/e02088ee9128f8eb19ac2094b180c5e36caaa0da diff --git a/ChangeLog b/ChangeLog index 1eb0c0cd..bae2338c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2020-03-28 Robby Stephenson <[email protected]> + + * Added notification if user agent is diabled and data source + requires it (Bug 419319). + 2020-02-28 Robby Stephenson <[email protected]> * Updated data source endpoint for TheGamesDB.net. diff --git a/doc/configuration.docbook b/doc/configuration.docbook index 4ffd2ad0..d4f4f89b 100644 --- a/doc/configuration.docbook +++ b/doc/configuration.docbook @@ -361,7 +361,7 @@ The <ulink url="http://www.imdb.com">Internet Movie Database</ulink> provides in <sect3 id="allocine"> <title>AlloCiné</title> <para> -<ulink url="http://allocine.fr">AlloCiné</ulink> is an online movie information service, based in France. +<ulink url="http://allocine.fr">AlloCiné</ulink> is an online movie information service, based in France. Browser Identification must be enabled in &systemsettings; </para> </sect3> @@ -380,14 +380,14 @@ The <ulink url="http://www.imdb.com">Internet Movie Database</ulink> provides in <sect3 id="discogs"> <title>Discogs.com</title> <para> -<ulink url="http://discogs.com">Discogs.com</ulink> is a user-built music database containing information on artists, labels, and their recordings. Registration for a free account is required. +<ulink url="http://discogs.com">Discogs.com</ulink> is a user-built music database containing information on artists, labels, and their recordings. Registration for a free account is required. Browser Identification must be enabled in &systemsettings; </para> </sect3> <sect3 id="musicbrainz"> <title>MusicBrainz.org</title> <para> -<ulink url="http://musicbrainz.org">MusicBrainz.org</ulink> is a community music metadatabase that attempts to create a comprehensive music information site. +<ulink url="http://musicbrainz.org">MusicBrainz.org</ulink> is a community music metadatabase that attempts to create a comprehensive music information site. Browser Identification must be enabled in &systemsettings; </para> </sect3> diff --git a/src/tests/discogsfetchertest.cpp b/src/tests/discogsfetchertest.cpp index 3627d6a0..fd1f2476 100644 --- a/src/tests/discogsfetchertest.cpp +++ b/src/tests/discogsfetchertest.cpp @@ -57,6 +57,7 @@ void DiscogsFetcherTest::testTitle() { QStringLiteral("Anywhere But Home")); Tellico::Fetch::Fetcher::Ptr fetcher(new Tellico::Fetch::DiscogsFetcher(this)); fetcher->readConfig(cg, cg.name()); + QVERIFY(fetcher->needsUserAgent()); Tellico::Data::EntryList results = DO_FETCH(fetcher, request);
