V3.0.0
- 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;