Browse Source

2.2.1

pull/1/head
InKwon James Kim 5 years ago
parent
commit
19ec62ae0e
  1. 1
      GME Remit.xcodeproj/project.pbxproj
  2. 2
      GMERemittance/AppDelegate.swift
  3. 2
      GMERemittance/Info.plist
  4. 2
      GMERemittance/Module/GmeContacts/User Interface/View/GmeContactsViewController.swift
  5. 11
      GMERemittance/Module/SplashScreen/User Interface/View/SplashScreenViewController.swift

1
GME Remit.xcodeproj/project.pbxproj

@ -13469,7 +13469,6 @@
D93C286E22000D640079BF03 /* iPad_transkey_alnum_key_15.png in Resources */, D93C286E22000D640079BF03 /* iPad_transkey_alnum_key_15.png in Resources */,
D93C2AF022000D650079BF03 /* transkey_navi_pre_indonesian.png in Resources */, D93C2AF022000D650079BF03 /* transkey_navi_pre_indonesian.png in Resources */,
D93C2A0022000D650079BF03 /* iPad_transkey_land_title.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 */, D93C2A4B22000D650079BF03 /* iPad_transkey_alnum_cmd_5_english_down.png in Resources */,
D93C293722000D640079BF03 /* iPhone_transkey_alnum_cmd_8_vietnamese.png in Resources */, D93C293722000D640079BF03 /* iPhone_transkey_alnum_cmd_8_vietnamese.png in Resources */,
D93C285F22000D640079BF03 /* iPad_transkey_alnum_key_9.png in Resources */, D93C285F22000D640079BF03 /* iPad_transkey_alnum_key_9.png in Resources */,

2
GMERemittance/AppDelegate.swift

@ -20,7 +20,7 @@ import IQKeyboardManagerSwift
import LGSideMenuController import LGSideMenuController
import Localize_Swift import Localize_Swift
let server: Server = .stagging
let server: Server = .live
var overlayView: UIView? var overlayView: UIView?
@UIApplicationMain @UIApplicationMain

2
GMERemittance/Info.plist

@ -17,7 +17,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.0.24</string>
<string>2.2.1</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
<array> <array>
<dict> <dict>

2
GMERemittance/Module/GmeContacts/User Interface/View/GmeContactsViewController.swift

@ -159,7 +159,7 @@ extension GmeContactsViewController: GmeContactsViewInterface {
} }
func setBranchesError(with error: Error){ func setBranchesError(with error: Error){
alertWithOk(message: error.localizedDescription)
// alertWithOk(message: error.localizedDescription)
} }
func startLoading(){ func startLoading(){

11
GMERemittance/Module/SplashScreen/User Interface/View/SplashScreenViewController.swift

@ -245,15 +245,16 @@ class SplashScreenViewController: UIViewController {
} }
private func setUpButtons() { private func setUpButtons() {
buttonSignUp.layer.cornerRadius = 25
buttonLogin.backgroundColor = .clear buttonLogin.backgroundColor = .clear
buttonLogin.layer.cornerRadius = 25 buttonLogin.layer.cornerRadius = 25
buttonLogin.layer.borderWidth = 1 buttonLogin.layer.borderWidth = 1
buttonLogin.layer.borderColor = UIColor.white.cgColor 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() { private func setupTimer() {

Loading…
Cancel
Save