Skip to content

Commit 6f33419

Browse files
committed
Coding - CODING
1 parent e040353 commit 6f33419

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Coding_iOS/Coding_iOS-Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>en</string>
77
<key>CFBundleDisplayName</key>
8-
<string>Coding</string>
8+
<string>CODING</string>
99
<key>CFBundleExecutable</key>
1010
<string>${EXECUTABLE_NAME}</string>
1111
<key>CFBundleIdentifier</key>
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>5.2</string>
20+
<string>5.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>
@@ -37,7 +37,7 @@
3737
</dict>
3838
</array>
3939
<key>CFBundleVersion</key>
40-
<string>5.2.201804041900</string>
40+
<string>5.3.201804281800</string>
4141
<key>ITSAppUsesNonExemptEncryption</key>
4242
<false/>
4343
<key>LSApplicationQueriesSchemes</key>

Coding_iOS/Controllers/Login/CannotLoginViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ - (void)changeBaseURLTip{
9595
[NSObject changeBaseURLStrTo:newBaseURLStr];
9696
}];
9797
[alertCtrl addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
98-
textField.placeholder = @"Coding 服务器地址";
98+
textField.placeholder = @"CODING 服务器地址";
9999
textField.text = [NSObject baseURLStr];
100100
}];
101101
[alertCtrl addAction:cancelA];

Coding_iOS/Controllers/MRDetailViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ - (void)actionMRPR:(UIButton *)sender{
336336
NSString *tipStr;
337337
if (sender.tag == MRPRActionAccept) {//合并
338338
if (_curMRPRInfo.mrpr.status == MRPRStatusCannotMerge) {//不能合并
339-
tipStr = @"Coding 不能帮你在线自动合并这个合并请求。";
339+
tipStr = @"CODING 不能帮你在线自动合并这个合并请求。";
340340
kTipAlert(@"%@", tipStr);
341341
} else {
342342
MRPRAcceptViewController *vc = [MRPRAcceptViewController new];

Coding_iOS/Controllers/MeSetting/AboutViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ - (void)viewDidLoad{
5050
logoLabel.font = [UIFont boldSystemFontOfSize:17];
5151
logoLabel.textColor = kColor222;
5252
logoLabel.textAlignment = NSTextAlignmentCenter;
53-
logoLabel.text = @"Coding-让开发更简单";
53+
logoLabel.text = @"CODING-让开发更简单";
5454
[self.view addSubview:logoLabel];
5555

5656
UILabel *versionLabel = [[UILabel alloc] init];

Coding_iOS/Controllers/PRDetailViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ - (void)actionMRPR:(UIButton *)sender{
195195
NSString *tipStr;
196196
if (sender.tag == MRPRActionAccept) {//合并
197197
if (_curMRPRInfo.mrpr.status == MRPRStatusCannotMerge) {//不能合并
198-
tipStr = @"Coding 不能帮你在线自动合并这个合并请求。";
198+
tipStr = @"CODING 不能帮你在线自动合并这个合并请求。";
199199
kTipAlert(@"%@", tipStr);
200200
}else{
201201
MRPRAcceptViewController *vc = [MRPRAcceptViewController new];

Coding_iOS/Views/CodingShareView.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ + (NSDictionary *)snsNameDict{
196196
static dispatch_once_t onceToken;
197197
dispatch_once(&onceToken, ^{
198198
snsNameDict = @{
199-
@"coding": @"Coding好友",
199+
@"coding": @"CODING 好友",
200200
@"copylink": @"复制链接",
201201
@"evernote": @"印象笔记",
202202
@"sina": @"新浪微博",
@@ -406,9 +406,9 @@ - (NSString *)p_shareTitle{
406406
if ([_objToShare isKindOfClass:[Tweet class]]) {
407407
title = [NSString stringWithFormat:@"%@ 的冒泡", [(Tweet *)_objToShare owner].name];
408408
}else if ([_objToShare isKindOfClass:[UIWebView class]]){
409-
title = @"Coding 链接";
409+
title = @"CODING 链接";
410410
}else{
411-
title = @"Coding - 让开发更简单";
411+
title = @"CODING - 让开发更简单";
412412
}
413413
return title;
414414
}

0 commit comments

Comments
 (0)