- Updated
moa
image loader to support images withapplication/octet-stream
MIME type in iOS 13 (see iOS 13 Release Notes).
- Update to Swift 5.0.
- Update to Swift 4.2.
- Update to Swift 4.0.
- Update to Xcode 8 GM version of Swift.
- Update to Xcode 8 Beta 6 version of Swift.
- Update to Xcode 8 Beta 5 version of Swift.
-
Update to Xcode 8 Beta 2 version of Swift.
-
Valpertui added
removePage
andremoveCurrentPage
methods. -
API change: method
scrollTo(2, animated: true)
was renamed toscrollToPage(atIndex: 2, animated: true)
. -
API change: method
updateAt(0, url: "https://bit.ly/auk_image")
was renamed toupdatePage(atIndex: 0, url: "https://bit.ly/auk_image")
. -
API change: method
updateAt(1, image: image)
was renamed toupdatePage(atIndex: 1, image: image)
.
- Update to Swift 3.0
- Added support for loading remote images in GIF format and files with non-standard mime-type image/jpg.
- Added
settings.preloadRemoteImagesAround
property that controls the loading of remote images.
- Fixed the crash occured when the scroll view had zero bounds width.
- When updating an image with a remote image the current image is replaced only after the new image has finished downloading. This creates a smoother transition from the current image to the new image.
- Fixed: fade-in animation was not used when showing remote images without placeholders.
- eyaldar added
updateAt
method that allows to update an existing image with a new one. - Fixed a bug in
currentPageIndex
property that returned page indexes less than zero or greater than the largest page index. - Property
currentPageIndex
is optional and returns nil if there are no images. - Add new buttons to the demo app to test update of images.
- Fixed
images
property. Now it returns both local and remote images.