Skip to content

V3.0.0

Compare
Choose a tag to compare
@projectgoav projectgoav released this 27 Dec 21:27
· 81 commits to master since this release
f20d831
  • Retarget to .Net 4.5 and support PCL Profile 111
  • Drop RestSharp in favour of System.Net.Http & Json.NET
  • Added GetChart() method to fetch all available charts for a given genre
  • Improved performance when fetching album tracklist
  • Added support for the XL image size
  • Fixed a rare 'TimeAdd' parsing issue

Breaking API Changes:

Function overloads for custom start index and count are now optional parameters.

Count overload no longer available

//V2
var something = await Deezer.[Endpoint].[Method](10); //Fetch the first 10 items

//V3+
var something = await Deezer.[Endpoint].[Method](aCount: 10); //Fetch the first 10 items

PictureSize Enum is now PascalCase

//V2
PictureSize.SMALL | MEDIUM | LARGE;

//V3+
PictureSize.Small | Medium | Large | ExtraLarge;