All Versions
13
Latest Version
Avg Release Cycle
76 days
Latest Release
-
Changelog History
Page 2
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
inviewDidLoad
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 withcanShowTypingIndicator
- ๐ Renamed
editortLeftButton
witheditorLeftButton
, andeditortRightButton
witheditorRightButton
๐ 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
- โ Removed
-
v1.6 Changes
๐ Features:
- โ Added support for custom typing indicator, following the same pattern of registering a class using
registerClassForTypingIndicatorView:
, while this class conforms toSLKTypingIndicatorProtocol
. 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
orUIActionSheet
) in iOS8
- โ Added support for custom typing indicator, following the same pattern of registering a class using