Skip to content

Commit

Permalink
Merge pull request #65 from hellohaptik/develop
Browse files Browse the repository at this point in the history
Develop into Master
  • Loading branch information
iamsimranjot authored Jul 18, 2018
2 parents 7393ac1 + f085226 commit 3dbbeb6
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 7 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.6.2] - (17/07/18) - Vicky Donor

### Bugs
- Share & Rate not taking Client Applications Name is Fixed


---

## [0.6.1] - (04/07/18) - Udta Punjab

### Enhancements
- Implementation of Configuring Navigation Bar for SDK ViewControllers is enhanced to accomodate more configurations and will now not affect the configurations globally across the client application.


### Bugs
- Taskbox not showing-up on launching a channel directly is fixed.
- ChatForm Getting Updated even on Form-Field type Search is fixed.


---

## [0.6.0] - (06/06/18) - Raabta

### Features
Expand All @@ -14,7 +35,6 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

---


## [0.5.1] - (16/05/18) - Oh My God!

### Bugs
Expand Down
Binary file modified Framework/HaptikLib.framework/Assets.car
Binary file not shown.
4 changes: 2 additions & 2 deletions Framework/HaptikLib.framework/HaptikLib
Git LFS file not shown
26 changes: 23 additions & 3 deletions Framework/HaptikLib.framework/Headers/Haptik.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@ UIKIT_EXTERN NSNotificationName const HPOffersUpdatedNotification;
@property (nullable, nonatomic) NSString *loadingSubtitleText;


/*!
Sets the application group identifier of the form of "group.com.mycompanyname". If not provided, default will be nil.
Used for saving the SQLite Persistent Store in a shared app folder which can be accessed by multiple targets & extensions.
*/
@property (nullable, nonatomic) NSString *appGroupIdentifier;


/*!
Gets the navigation bar tint color used for tinting on individual screens.
To set a tint color, use as -
Expand Down Expand Up @@ -603,16 +610,29 @@ UIKIT_EXTERN NSNotificationName const HPOffersUpdatedNotification;
#pragma mark -

/*!
Allows SDK Clients to modify tint color of navigation bar of the SDK View Controllers
@abstract
Allows SDK Clients to modify tint color and barTintColor of navigation bar of the SDK View Controllers
@param tintColor Color to be used for tinting navigation bar items. Defaults to [UIColor blackColor].
@param barTintColor Color to be used for tinting the navigation bar. Defaults to default navigation bar tint of iOS
@param translucent BOOL value to set the translucent property of navigation bar.
@param navigationController Instance of the navigationController for which the configurations are to be done
@discussion
The params tintColor & barTintColor are nullable, i.e. you can pass nil for the respective param which you want to set to default (don't want to set).
@code
[[Haptik sharedSDK] configureNavigationBarWithTintColor:[UIColor colorWithRed:(165.0/255.0) green:(35.0/255.0) blue:(41.0/255.0) alpha:1.0]];
[[Haptik sharedSDK] configureNavigationBarWithTintColor:[UIColor redColor]
barTintColor:[UIColor whiteColor]
forNavigationController:navController];
@endcode
*/
- (void)configureNavigationBarWithTintColor:(UIColor *)tintColor;
- (void)configureNavigationBarWithTintColor:(nullable UIColor *)tintColor
barTintColor:(nullable UIColor *)barTintColor
makeTranslucent:(BOOL)translucent
forNavigationController:(UINavigationController *)navigationController;

/*!
Allows SDK clients to take user to a specific channel.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Framework/HaptikLib.framework/Info.plist
Binary file not shown.
Binary file modified Framework/HaptikLib.framework/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion HaptikLib.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = "HaptikLib"
s.version = "0.6.0"
s.version = "0.6.2"
s.summary = "Say goodbye to App Fatigue. Instantly enable 100+ chatbots across various daily tasks"
s.description = <<-DESC
The mobile app industry is about a decade old but publishers are still trying to figure out hacks to improve user retention. App fatigue is not just a theory any more: 60% of apps are uninstalled within the first week. The Haptik Assistant SDK enables a layer of daily use chatbots in any mobile app. Instantly provide a lot more reasons for users to keep using your app. You can also monetize through transactions and the Haptik ads platform.
Expand Down

0 comments on commit 3dbbeb6

Please sign in to comment.