Skip to content

Latest commit

 

History

History
executable file
·
117 lines (82 loc) · 5.07 KB

RELEASE NOTES.md

File metadata and controls

executable file
·
117 lines (82 loc) · 5.07 KB

Version 1.5.2

  • Added bounceDistance property for finer control over bounce behaviour.
  • Added carousel:shouldSelectItemAtIndex: delegate method to allow carousel to selectively ignore taps.
  • Added stopAtItemBoundary and scrollToItemBoundary properties.
  • Fixed issue with carousel wrapping unexpectedly when wrapping and bouncing are disabled.
  • Fixed issue with rightmost visible view sometimes not loading.
  • Improved the iCarouselTypeCoverFlow2 implementation.
  • Tweaked acceleration parameters for smoother scrolling behaviour.
  • Improved loading sequence to reduce repeated calls to dataSource methods during startup.
  • Added No-nib example for iPhone to demonstrate setting up the carousel in code.

Version 1.5.1

  • Fixed issue with item button events being blocked by gesture recogniser.
  • Tweaked bounce and acceleration parameters for smoother scrolling.
  • Made toggle property public (used to implement CoverFlow2 carousel style).

Version 1.5

  • Added a new carousel type, iCarouselTypeCoverflow2, which more closely matches the appearance of the standard Apple CoverFlow implementation.
  • iCarousel now always stops exactly on an item boundary when decelerating, instead of over or under-shooting and scrolling to the correct position.
  • Added carouselScrollSpeed delegate method and increased default scrolling speed for CoverFlow carousel types.
  • Animation now uses CADisplayLink on iOS for better performance.
  • Animation is now paused when carousel is not moving.
  • Reduced default deceleration rate so carousel can be 'flicked' further.
  • Added insert/remove carousel item support for Mac OS.

Version 1.4

  • Added a new dynamic loading system to load and release views as needed. The carousel can now contain hundreds of thousands of items but only display a subset of them.
  • Added numberOfVisibleItems property to control the number of views to be loaded concurrently.
  • Added visibleViews property, containing a set of all visible item views.
  • Removed the itemViews and placeholderViews properties, as these no longer work with the new loading system.

Version 1.3.4

  • Changed order of execution for when carouselDidEndScrollingAnimation is called to prevent animation glitches when making changes to carousel in the callback.
  • Fixed glitch where didSelectItemAtIndex method would never fire for the currently centered view.

Version 1.3.3

  • Added several additional delegate methods for tracking when the carousel scrolls and decelerates.
  • Fixed some glitches when using the scrollwheel/trackpad on a Mac.

Version 1.3.2

  • Fixed additional scrolling bug introduced by 1.3.1 fix.
  • Improved deceleration logic on non-wrapped carousels.

Version 1.3.1

  • Fixed scrolling bug on wrapped carousels when scrolling from item at index zero back to the last item.

Version 1.3

  • Added Mac OS support. Most - but not all - features from the iOS version are supported (see readme.md for details. Thanks go to Sushant Prakash for proving the concept).
  • Added centerItemWhenSelected property to disable the auto-centering behaviour when tapping on item views.
  • Added carousel:didSelectItemAtIndex: delegate method which is called when a user taps any item view in the carousel.
  • Changed placeholder view behaviour slightly to be more flexible and intuitive.
  • Bug and performance fixes to the depth sorting and positioning logic.
  • Extended the example project to demonstrate the use of placeholder views and the new delegate method.
  • Converted documentation and license files to markdown format.

Version 1.2.4

  • Added ability to specify scroll animation duration.
  • Added scrollByNumberOfItems method to programmatically scroll the carousel by a specified distance in either direction.
  • Fixed retain cycle that prevented carousel from being deallocated properly.

Version 1.2.3

  • Added contentOffset and viewpointOffset properties for adjusting layout and perspective.
  • Made contentView property public.
  • Fixed issue when inserting items into an empty carousel.
  • Fixed issue when scrolling more than one step in a wrapped carousel.

Version 1.2.2

  • Removed an iOS 4-specific API so that iCarousel will work on iOS 3.2.
  • Fixed crash when removing last item in a carousel or inserting items into an empty carousel.

Version 1.2.1

  • Fixed scrolling issue with carousel when last item is removed.
  • Added insert/delete buttons to example project.

Version 1.2

  • Smooth scrolling and acceleration, no longer based on UIScrollView.
  • Added decelerationRate and bounces properties.
  • Tap any visible item in the carousel to center it.
  • Fixed crash on memory warning.
  • Added wrap on/off selector to example.
  • Example project is now a universal app.

Version 1.1.2

  • Smoother animation when inserting items into carousel.
  • iCarousel no longer modifies item view alpha when adding/removing items.

Version 1.1.1

  • Fixed bug when inserting items into the carousel without animation.
  • Fixed page scrolling bug on iOS 4.2 and earlier.

Version 1.1

  • Added itemViews property.
  • Added perspective property.
  • Added scrollEnabled property.
  • Added placeholder views feature.
  • Fixed vanishing views bug in example project.

Version 1.0

  • Initial release.