Releases: DamienDennehy/Imgur.API
Releases · DamienDennehy/Imgur.API
v5.0.0
- Added stream upload support for images up to 10MB.
- Added stream upload support for videos up to 200MB.
- Added stream progress reporting support for both images and video.
- Rebuilt ImageEndpoint and OAuth2Endpoint.
- Switched Json Converter to System.Text.Json.
- Fixed a number of Serialization bugs.
- Removed all other Endpoints until they can be rebuilt.
- Removed Mashape support.
v4.0.1
- Removed NetStandard library requirement for Net45.
v4.0.0
- Added .NET Platform Standard 1.1 support, built using .NET Core 1.0.
- Added "AccountUrl" to AccountSettings model.
- Added "TopPost", "HeroImage" and "IsHero" property to Topics model.
- Added "WebmSize and "Mp4Size" to Gallery Image and Image models.
- Added additional constructors for ImgurClient and MashapeClient to allow anonymous actions without a client secret.
- Added README.txt on package install instead of loading external site.
- Upgraded Portable Class Library to NETStandard Class Library Package.
- Fixed bug with authorization url being case sensitive.
- Fixed bug with favoriting Images and Albums crashing due to Mashape API changes.
- Fixed bug with Adding and Removing CustomGalleryTags due to Mashape API changes.
- Removed inheritance of IImage/IGalleryImage & IAlbum/IGalleryAlbum due to increasingly diverse changes in the official model definitions.
- Removed "CommentPreview" from the GalleryImage and GalleryAlbum models.
v4.0.0-beta1
- Added .NET Platform Standard 1.1 support, built using .NET Core RC1.
- Added "AccountUrl" to AccountSettings model.
- Added "TopPost", "HeroImage" and "IsHero" property to Topics model.
- Added "WebmSize and "Mp4Size" to Gallery Image and Image models.
- Added additional constructors for ImgurClient and MashapeClient to allow anonymous actions without a client secret.
- Added README.txt on package install instead of loading external site.
- Upgraded Portable Class Library to NETStandard Class Library Package.
- Fixed bug with authorization url being case sensitive.
- Fixed bug with favoriting Images and Albums crashing due to Mashape API changes.
- Fixed bug with Adding and Removing CustomGalleryTags due to Mashape API changes.
- Removed inheritance of IImage/IGalleryImage & IAlbum/IGalleryAlbum due to increasingly diverse changes in the official model definitions.
- Removed "CommentPreview" from the GalleryImage and GalleryAlbum models.
v3.7.0-beta3
- Added AccountUrl to AccountSettings model.
- Fixed bug with authorization url.
- Fixed bug with favoriting Images and Albums due to Mashape API changes.
- Fixed bug with Adding and Removing CustomGalleryTags due to API changes.
v3.7.0-beta2 (2016-02-01)
- Built using DNX 1.0.0-rc1.
- Added additional constructors for ImgurClient and MashapeClient to allow anonymous actions without a client secret.
- Fix for .NET Platform Standard 1.1 support - corrected dependencies.
- Fix for “TopPost” property on Topics model - made nullable.
v3.7.0-beta1 (2016-01-14)
- Added .NET Platform Standard 1.1 support.
- Added "TopPost" property to Topics model.
- Added README.txt on package install instead of loading external site.
- Upgraded Portable Class Library to Class Library Package.
- Removed Portable Class Library support - will be added by a NuGet update by Q1 2016.
v3.6.0
- Added Gallery endpoint. All endpoints now completed and at feature parity with the official API.
- Added Notoriety property to Account model, calculated from the Reputation property.
- Updated several enums to prevent name clashes with models.
- Updated all async methods to use ConfigureAwait(false) as per recommended async standards for libraries.
- Updated library to use Json.NET 8.
- Updated library to use PCL Profile111 from PCL Profile7.
- Removed protected internal constructor for abstract classes.
- Fix for incorrect type on Topic model - Ephemeral is now boolean not string.
- Fix for GetCommentIdsAsync method on AlbumEndpoint - return type is now IEnumerable int not IEnumerable string.
- Fix for CreateComment methods on Comment and GalleryEndpoint - return type is now int not IComment.
- Fix for GetComment methods on Comment and GalleryEndpoint - commentId is now int not string.
v3.5.0 (2015-12-29)
- Added MemeGen endpoint.
- Added Topic endpoint.
- Refactored inheritance on Image <> GalleryImage and Album <> GalleryAlbum.
- Removed AccountId and AccountUrl from Image model as no longer supported by official Imgur API.
- Removed MemeMetaData model as no longer supported by official Imgur API.
v3.4.0 (2015-12-26)
- Added Custom Gallery endpoint.
- Added Conversation endpoint.
- Added Notification endpoint.
- Updated UpdateRateLimit method to prevent OverflowExceptions.
- Updated comments on all exceptions thrown.
- Moved exceptions to base namespace.