From 19ec62ae0e3f820859a63b7dc04bbf803db45bef Mon Sep 17 00:00:00 2001 From: InKwon James Kim Date: Thu, 13 Jun 2019 11:05:39 +0900 Subject: [PATCH] 2.2.1 --- GME Remit.xcodeproj/project.pbxproj | 1 - GMERemittance/AppDelegate.swift | 2 +- GMERemittance/Info.plist | 2 +- .../View/GmeContactsViewController.swift | 2 +- .../View/SplashScreenViewController.swift | 11 ++++++----- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/GME Remit.xcodeproj/project.pbxproj b/GME Remit.xcodeproj/project.pbxproj index 4c4bb07e..c338bda8 100644 --- a/GME Remit.xcodeproj/project.pbxproj +++ b/GME Remit.xcodeproj/project.pbxproj @@ -13469,7 +13469,6 @@ D93C286E22000D640079BF03 /* iPad_transkey_alnum_key_15.png in Resources */, D93C2AF022000D650079BF03 /* transkey_navi_pre_indonesian.png in Resources */, D93C2A0022000D650079BF03 /* iPad_transkey_land_title.png in Resources */, - 73141DDF22A0E31700A8A4BB /* license_mtranskey.rsl in Resources */, D93C2A4B22000D650079BF03 /* iPad_transkey_alnum_cmd_5_english_down.png in Resources */, D93C293722000D640079BF03 /* iPhone_transkey_alnum_cmd_8_vietnamese.png in Resources */, D93C285F22000D640079BF03 /* iPad_transkey_alnum_key_9.png in Resources */, diff --git a/GMERemittance/AppDelegate.swift b/GMERemittance/AppDelegate.swift index b99e0a14..13933814 100644 --- a/GMERemittance/AppDelegate.swift +++ b/GMERemittance/AppDelegate.swift @@ -20,7 +20,7 @@ import IQKeyboardManagerSwift import LGSideMenuController import Localize_Swift -let server: Server = .stagging +let server: Server = .live var overlayView: UIView? @UIApplicationMain diff --git a/GMERemittance/Info.plist b/GMERemittance/Info.plist index a3aa2825..840d11f1 100644 --- a/GMERemittance/Info.plist +++ b/GMERemittance/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0.24 + 2.2.1 CFBundleURLTypes diff --git a/GMERemittance/Module/GmeContacts/User Interface/View/GmeContactsViewController.swift b/GMERemittance/Module/GmeContacts/User Interface/View/GmeContactsViewController.swift index 200db2dd..5a72c27c 100644 --- a/GMERemittance/Module/GmeContacts/User Interface/View/GmeContactsViewController.swift +++ b/GMERemittance/Module/GmeContacts/User Interface/View/GmeContactsViewController.swift @@ -159,7 +159,7 @@ extension GmeContactsViewController: GmeContactsViewInterface { } func setBranchesError(with error: Error){ - alertWithOk(message: error.localizedDescription) +// alertWithOk(message: error.localizedDescription) } func startLoading(){ diff --git a/GMERemittance/Module/SplashScreen/User Interface/View/SplashScreenViewController.swift b/GMERemittance/Module/SplashScreen/User Interface/View/SplashScreenViewController.swift index 421049a8..71c511c7 100644 --- a/GMERemittance/Module/SplashScreen/User Interface/View/SplashScreenViewController.swift +++ b/GMERemittance/Module/SplashScreen/User Interface/View/SplashScreenViewController.swift @@ -245,15 +245,16 @@ class SplashScreenViewController: UIViewController { } private func setUpButtons() { + buttonSignUp.layer.cornerRadius = 25 buttonLogin.backgroundColor = .clear buttonLogin.layer.cornerRadius = 25 buttonLogin.layer.borderWidth = 1 buttonLogin.layer.borderColor = UIColor.white.cgColor - buttonLogin.backgroundColor = AppConstants.themeBlueColor - - view.backgroundColor = AppConstants.themeRedColor - - buttonSignUp.layer.cornerRadius = 25 + buttonSignUp.layer.borderWidth = 1 + buttonSignUp.layer.borderColor = UIColor.white.cgColor + self.view.backgroundColor = AppConstants.themeRedColor + self.buttonSignUp.backgroundColor = AppConstants.themeDarkRedColor + self.buttonLogin.backgroundColor = AppConstants.themeBlueColor } private func setupTimer() {