Skip to content

Commit

Permalink
Update to Ignite 1.10.3 (Tickets 3.8.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbackertm committed Sep 30, 2024
1 parent 4ef78e6 commit e201e83
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
6 changes: 3 additions & 3 deletions TMSDKDemoIntegration.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MARKETING_VERSION = 1.10.2;
MARKETING_VERSION = 1.10.3;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -886,7 +886,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MARKETING_VERSION = 1.10.2;
MARKETING_VERSION = 1.10.3;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -982,7 +982,7 @@
repositoryURL = "https://github.com/ticketmaster/iOS-TicketmasterSDK.git";
requirement = {
kind = exactVersion;
version = 1.10.2;
version = 1.10.3;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ extension MenuButtonWithTitleAndPopupTableViewCell {
for (index, value) in valueArray.enumerated() {
var title: String
if let titlesArray = cellInfo.segmentTextArray,
index < titlesArray.count
{
index < titlesArray.count {
title = titlesArray[index]
} else {
title = value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ extension MarketLocation {
static func defaultLocationFor(market: MarketDomain) -> MarketLocation {
switch market {
case .CA: MarketLocation.Canada_BritishColumbia_Vancouver()
case .AU: MarketLocation.Australia_Sydney()
case .MX: MarketLocation.Mexico_MexicoCity()
case .NZ: MarketLocation.NewZealand_Auckland()
case .UK: MarketLocation.UK_London()
case .IE: MarketLocation.IE_Dublin()
case .AU: MarketLocation.australia_Sydney()
case .MX: MarketLocation.mexico_MexicoCity()
case .NZ: MarketLocation.newZealand_Auckland()
case .UK: MarketLocation.uk_London()
case .IE: MarketLocation.ie_Dublin()
default: MarketLocation.California_LosAngeles()
}
}
}

extension MarketLocation {

static func Australia_Sydney() -> MarketLocation {
static func australia_Sydney() -> MarketLocation {
let domain: MarketDomain = .AU
let marketID: Int = 307
let marketName: String = "Sydney"
Expand All @@ -35,7 +35,7 @@ extension MarketLocation {
return MarketLocation(domain: domain, identifier: "\(marketID)", name: marketName, localizedName: description, dmaId: nil, countryCode: domain.countryCode, userLocation: UserLocation(location: clLocation, source: .appMarketList), source: .appMarketList)
}

static func Mexico_MexicoCity() -> MarketLocation {
static func mexico_MexicoCity() -> MarketLocation {
let domain: MarketDomain = .MX
let marketID: Int = 402
let marketName: String = "Mexico City"
Expand All @@ -45,7 +45,7 @@ extension MarketLocation {
return MarketLocation(domain: domain, identifier: "\(marketID)", name: marketName, localizedName: description, dmaId: nil, countryCode: domain.countryCode, userLocation: UserLocation(location: clLocation, source: .appMarketList), source: .appMarketList)
}

static func NewZealand_Auckland() -> MarketLocation {
static func newZealand_Auckland() -> MarketLocation {
let domain: MarketDomain = .NZ
let marketID: Int = 351
let marketName: String = "Auckland"
Expand All @@ -55,7 +55,7 @@ extension MarketLocation {
return MarketLocation(domain: domain, identifier: "\(marketID)", name: marketName, localizedName: description, dmaId: nil, countryCode: domain.countryCode, userLocation: UserLocation(location: clLocation, source: .appMarketList), source: .appMarketList)
}

static func UK_London() -> MarketLocation {
static func uk_London() -> MarketLocation {
let domain: MarketDomain = .UK
let marketID: Int = 202
let marketName: String = "London"
Expand All @@ -65,7 +65,7 @@ extension MarketLocation {
return MarketLocation(domain: domain, identifier: "\(marketID)", name: marketName, localizedName: description, dmaId: nil, countryCode: domain.countryCode, userLocation: UserLocation(location: clLocation, source: .appMarketList), source: .appMarketList)
}

static func IE_Dublin() -> MarketLocation {
static func ie_Dublin() -> MarketLocation {
let domain: MarketDomain = .IE
let marketID: Int = 208
let marketName: String = "Dublin"
Expand Down

0 comments on commit e201e83

Please sign in to comment.