Commit 3c161bf1719195407dc4a8b35c60e303cc5685f2

Authored by niudaojian
1 parent 523193e2

0.4.3

CNLiveEnvironment.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveEnvironment'
11   - s.version = '0.4.2'
  11 + s.version = '0.4.3'
12 12 s.summary = 'CNLiveEnvironment'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveEnvironment/Classes/CNLiveEnvironment.h
... ... @@ -82,8 +82,7 @@
82 82 #define API_Pay [CNLiveEnvironmentManager manager].kAPI_Pay
83 83  
84 84 /**
85   - 正式 http://bc.cnlive.com
86   - 测试 http://test.bc.cnlive.com
  85 + 正式/测试统一用 http://bc.cnlive.com
87 86 */
88 87 #define API_OB [CNLiveEnvironmentManager manager].kAPI_OB
89 88  
... ...
CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m
... ... @@ -920,7 +920,7 @@ static CNLiveEnvironmentManager *_instance = nil;
920 920 manager.kAPI_Manageshop = @"https://wjjshop.cnlive.com";
921 921 manager.kAPI_LtyAdmin = @"https://ltyadmintest.cnlive.com";
922 922 manager.kAPI_Pay = @"https://apiumspay.cnlive.com";
923   - manager.kAPI_OB = @"http://test.bc.cnlive.com";
  923 + manager.kAPI_OB = @"http://bc.cnlive.com";
924 924 manager.kAPI_Community = @"http://testapi.community.cnlive.com";
925 925  
926 926 manager.environmentDesc = @"测试商家版";
... ... @@ -1113,7 +1113,7 @@ static CNLiveEnvironmentManager *_instance = nil;
1113 1113 manager.kAPI_Manageshop = @"https://wjjshop.cnlive.com";
1114 1114 manager.kAPI_LtyAdmin = @"https://ltyadmintest.cnlive.com";
1115 1115 manager.kAPI_Pay = @"https://apiumspay.cnlive.com";
1116   - manager.kAPI_OB = @"http://test.bc.cnlive.com";
  1116 + manager.kAPI_OB = @"http://bc.cnlive.com";
1117 1117 manager.kAPI_Community = @"http://testapi.community.cnlive.com";
1118 1118  
1119 1119 manager.environmentDesc = @"测试商家版";
... ...