Skip to content

Commit

Permalink
Merge branch 'master' into release/4.3.0
Browse files Browse the repository at this point in the history
# Conflicts:
#	Cartfile.resolved
#	SmartDeviceLink-iOS.podspec
#	SmartDeviceLink-iOS.xcodeproj/project.pbxproj
#	SmartDeviceLink/Info.plist
#	SmartDeviceLink/SDLProxy.m
  • Loading branch information
joeljfischer committed Sep 15, 2016
2 parents 2d199a5 + e7845f4 commit 2062b30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@
* Particular RPCs can now have an additional block used with them that can be called under certain conditions. For example, RPCs that create buttons (such as soft buttons) can have a block handler that will be called when an event occurs on the button.
* Underlying the new high-level API are a few dispatchers, particularly the Notification Dispatcher which sends many notifications when new RPC notifications and responses are sent from the remote head unit. This may be used by the developer now, but will become less useful as more managers are released.

# 4.2.4 Release Notes
### Bug Fixes
* Fixed Touch Manager not always firing single touches.

### Other
* Updated testing frameworks to support Xcode 8.
* Updated example app to support Xcode 8.

# 4.2.3 Release Notes
### Bug Fixes
* Fixed HTTPS URL schemes not properly uploading data (#432, #438).
Expand Down
1 change: 1 addition & 0 deletions SmartDeviceLink/SDLTouchManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ - (void)sdl_initializeSingleTapTimerAtPoint:(CGPoint)point {
self.singleTapTimer = dispatch_create_timer(self.tapTimeThreshold, NO, ^{
typeof(weakSelf) strongSelf = weakSelf;
strongSelf.singleTapTouch = nil;
[strongSelf sdl_cancelSingleTapTimer];
if ([strongSelf.touchEventDelegate respondsToSelector:@selector(touchManager:didReceiveSingleTapAtPoint:)]) {
[strongSelf.touchEventDelegate touchManager:strongSelf
didReceiveSingleTapAtPoint:point];
Expand Down

0 comments on commit 2062b30

Please sign in to comment.