Skip to content

Latest commit

 

History

History
143 lines (97 loc) · 3.18 KB

CHANGELOG.md

File metadata and controls

143 lines (97 loc) · 3.18 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

Changed (v2.2.10)

2018-09-19

Changed

  • Update Image picker library to support Swift 4.2 and XCode 10
  • Remove obsolette file path in the asset class

Changed (v2.1.26)

2018-09-10

Fixed

  • Fixed path not passed to the Asset class #7

Changed (v2.1.25)

2018-09-07

Added

  • Add Real file path and allow to refresh image gallery #6 (thanks CircleCurve)

Changed (v2.1.23)

2018-08-31

Added

  • Improved the docs

Changed (v2.1.22)

2018-08-28

Added

  • Add originalWidth, originalHeight, isPortrait and isLandscape getters for the Asset class

Changed (v2.1.21)

2018-08-24

Added

  • Add release(), releaseOriginal() and releaseThumb() methods to help clean up the image data when it is no longer needed

Changed (v2.1.02)

2018-08-20

Fix

  • Fix null pointer exception on Android when finishing from another activity (thanks to xia-weiyang)

Changed (v2.1.01)

2018-08-16

Change

  • Add getters to Asset class

Changed (v2.1.00)

2018-08-16

BREAKING CHANGE

  • Asset's requestThumbnail and requestOriginal methods now will return Future. Removed the method callbacks.

Changed (v2.0.04)

2018-08-16

Fixed

  • Correctly crop the thumb on iOS

Changed (v2.0.03)

2018-08-16

Added

  • Allow network access to download images present only in iCloud

Changed (v2.0.02)

2018-08-16

Fixed

  • Improve thumbs quality on iOS to always deliver best of it

Changed (v2.0.01)

2018-08-16

Fixed

  • Fix picking original image on Android was not triggering properly the callback

Changed (v2.0.0)

2018-08-15

BREAKING CHANGE

  • The plugin have been redesigned to be more responsive and flexible.
  • pickImages method will no longer return List, instead it will return List
  • You can then request asset thumbnails or the original image, which will load asyncrhoniously without blocking the main UI thred. For more info see the examples directory.

Added

  • Asset class, with methods requestThumbnail(int width, int height, callback) and requestOriginal(callback)

Changed (v1.0.53)

2018-08-13

Fixed

  • Fix crash on iOS when picking a lot of images.

Changed (v1.0.52)

2018-08-12

Fixed

  • Picking images on iOS now will properly handle PHAssets

Changed (v1.0.51)

2018-08-07

Changed

  • Fix a crash on Android caused by closing and reopening the gallery

Changed (v1.0.5)

2018-08-07

Add

  • Support iOS and Android customizations

Changed (v1.0.4)

2018-08-06

Changed

  • iOS: Add missing super.init() call in the class constructor

Changed (v1.0.3)

2018-08-05

Changed

  • Changed sdk: ">=2.0.0-dev.28.0 <3.0.0"

Changed (v1.0.2)

2018-08-05

Added

  • Add Support for Dart 2 in pubspec.yaml file

Changed (v1.0.1)

2018-08-05

Added

  • Initial release with basic support for iOS and Android