Skip to content

Commit

Permalink
Mob-4785 iOS UISDK 1.12.2 release (#572)
Browse files Browse the repository at this point in the history
* disable badge

* badge assets update

* version bump
  • Loading branch information
AleksanderWedrychowskiKarhoo authored Apr 27, 2023
1 parent 59ccfcc commit 22f33c0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion KarhooUISDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "KarhooUISDK"
s.version = "1.12.1"
s.version = "1.12.2"
s.summary = "Karhoo UI SDK"
s.homepage = "https://developer.karhoo.com/docs/build-apps-using-sdks"
s.license = 'BSD 2-Clause'
Expand Down
4 changes: 2 additions & 2 deletions KarhooUISDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -5443,7 +5443,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.12.1;
MARKETING_VERSION = 1.12.2;
PRODUCT_BUNDLE_IDENTIFIER = com.karhoo.KarhooUISDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -5486,7 +5486,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.12.1;
MARKETING_VERSION = 1.12.2;
PRODUCT_BUNDLE_IDENTIFIER = com.karhoo.KarhooUISDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion KarhooUISDK/API/KarhooUISDKConfiguration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Foundation
import KarhooSDK
import UIKit

public let karhooUiSdkVersion = "1.12.1"
public let karhooUiSdkVersion = "1.12.2"

public protocol KarhooUISDKConfiguration: KarhooSDKConfiguration {
func logo() -> UIImage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
{
"filename" : "Eco (4).svg",
"idiom" : "universal"
},
{
"idiom" : "universal"
}
],
"info" : {
Expand Down
3 changes: 2 additions & 1 deletion KarhooUISDK/Screens/QuoteList/QuoteCell/QuoteView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,8 @@ class QuoteView: UIView {
self?.badgeImageView.isHidden = false
}
)
badgeImageView.image = viewModel.vehicleBadgeImage
// remove comment to enable showing vehicle badge
// badgeImageView.image = viewModel.vehicleBadgeImage
fareTypeLabel.text = viewModel.fareType
vehicleCapacityView.setPassengerCapacity(viewModel.passengerCapacity)
vehicleCapacityView.setBaggageCapacity(viewModel.luggageCapacity)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ You can use [CocoaPods](http://cocoapods.org/) to install `KarhooUISDK` by addin

use_frameworks!
pod 'KarhooSDK', '1.8.0'
pod 'KarhooUISDK', :git => 'git@github.com:karhoo/karhoo-ios-ui-sdk.git', :tag => '1.12.1'
pod 'KarhooUISDK', :git => 'git@github.com:karhoo/karhoo-ios-ui-sdk.git', :tag => '1.12.2'
```
Depending on payment provider you want to use in your integration add:
```ruby
pod 'KarhooUISDK/Adyen', :git => 'git@github.com:karhoo/karhoo-ios-ui-sdk.git', :tag => '1.12.1'
pod 'KarhooUISDK/Adyen', :git => 'git@github.com:karhoo/karhoo-ios-ui-sdk.git', :tag => '1.12.2'
```
or
```ruby
pod 'KarhooUISDK/Braintree', :git => 'git@github.com:karhoo/karhoo-ios-ui-sdk.git', :tag => '1.12.1'
pod 'KarhooUISDK/Braintree', :git => 'git@github.com:karhoo/karhoo-ios-ui-sdk.git', :tag => '1.12.2'
```

then import `KarhooUISDK` wherever you want to access Karhoo services
Expand Down

0 comments on commit 22f33c0

Please sign in to comment.