All Versions
13
Latest Version
Avg Release Cycle
76 days
Latest Release
-

Changelog History
Page 2

  • v1.7.1 Changes

    December 15, 2015
    ๐Ÿ”‹ Features & Enhancements:
    • โšก๏ธ Changed how the auto-completion API worked: it now allows asynch auto-completion! Have a look at how to set it up / update it](https://github.com/slackhq/SlackTextViewController#autocompletion)
    • โž• Added keyboard trackpad detection for iOS 9. Used internally for disables auto-completion while its detected, so we avoid crazy things! ๐Ÿ‘ป
    • ๐Ÿ‘Œ Improved the magnifying glass detection.
    • โš  Gonna get a nice warning to remind you to super in viewDidLoad now. Fancy!
    • Slowed down bouncy animation by 0.15 seconds
    • Disabled cellLayoutMarginsFollowReadableWidth on iOS 9 for the auto-completion view. No need for large margins, come on!
    ๐Ÿ›  Fixes:
    • ๐Ÿ›  Fixed compatibility issues with Cocoapods 0.39.0 new requirements. All sources are now in the same root level.
    • ๐Ÿ›  Fixed keyboard presentation when pushing a view controller instance. Thanks @fastred!
    • ๐Ÿ›  Fixed auto-layout issues on the Edit Mode.
    • ๐Ÿ›  Fixed maximumHeightForAutoCompletionView calculations. Maths!
    • ๐Ÿ›  Fixed crash caused by calling layoutIfNeeded too early
    • ๐Ÿšš Removed duplicated declarations, specially causing nightmares to Swifters.
    • โœ‚ Removed unused internal methods.
    • ๐Ÿ‘ Better Carthage support ๐Ÿ™
  • v1.7 Changes

    ๐Ÿ—„ Deprecations:
    • โœ‚ Removed shouldForceTextInputbarAdjustment and replace it with -forceTextInputbarAdjustmentForResponder:
    • ๐Ÿ“‡ Renamed canShowTypeIndicator and replace it with canShowTypingIndicator
    • ๐Ÿ“‡ Renamed editortLeftButton with editorLeftButton, and editortRightButton with editorRightButton
    ๐Ÿ”‹ Features & enhancements:
    • โž• Added iOS 9 (beta 5) support, with fixes for multi-tasking on iPad and external keyboard shortcut hud support, and many small layout tweaks.
    • โž• Added the ability to show/hide the text input bar, with animation support, using setTextInputbarHidden:animated:. Thanks @aryaxt!
    • โž• Added better Accessibility support with Dynamic Type
    • ๐Ÿฑ Improved the keyboard panning gesture by dragging the text input bar from the bottom (feature flagged as it needs more testing)
    • โž• Added 2 more UIScrollViewDelegate method declarations to SLKTextViewController's header. super is required!
    ๐Ÿ›  Hot Fixes:
    • ๐Ÿ›  Fixed wrong auto-completion view height calculations.
    • ๐Ÿ›  Fixed a very bad retain cycle reported in #234
    • ๐Ÿ›  Fixed the keyboard view detection on iOS 9
    • ๐Ÿ›  Fixed swift compiler warning. Thanks @csjones
  • v1.6 Changes

    ๐Ÿ”‹ Features:
    • โž• Added support for custom typing indicator, following the same pattern of registering a class using registerClassForTypingIndicatorView:, while this class conforms to SLKTypingIndicatorProtocol. Please refer to the documentation for more details about the feature. Thanks @sveinhal! (#207)
    • โž• Added support for registering longer auto-completion prefixes
    • ๐Ÿ‘Œ Improved drastically the keyboard panning experience, making it much more smooth now. Awesome stuff @camitox!
    • โž• Added the ability to ignore the text inputbar adjustment when the keyboard is presented, using ignoreTextInputbarAdjustment. This is generally useful when SLKTVC is used in a custom modal presentation and when you want to manipulate the view's alignment yourself.
    ๐Ÿ›  Hot Fixes:
    • 0๏ธโƒฃ No longer overriding the default background color of UITableView. Oupsi! (#205)
    • Made sure not to register the same notifications twice.
    • ๐Ÿ›  Fixes issue where the text input would not adjust on top of the keyboard when presenting an UIAlertViewController (UIAlertView or UIActionSheet) in iOS8