Skip to content
This repository has been archived by the owner on Aug 14, 2019. It is now read-only.

Release 5.1.0

Compare
Choose a tag to compare
@jessesquires jessesquires released this 22 Jul 06:40
· 702 commits to master since this release

What's new

  • Springiness is now disabled by default, and labeled as an experimental feature in the docs. It is mostly stable, but not quite perfected. In order to opt-in, set this property to YES:
- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    self.collectionView.collectionViewLayout.springinessEnabled = YES;
}
  • Better KVO handling, no longer hits the exception breakpoint. (#285)
  • Showing the typingIndicator footer and loadEarlierMessages header now display reliably. However, some minor UI issues still sometimes occur if springiness is enabled.
  • When setting self.showTypingIndicator = YES, you now need to scroll to the bottom yourself, using scrollToBottomAnimated:
  • Lots of other bug fixes and improvements! (see below)
  • Docs updated for changes

Issues closed