Skip to content

Commit 39b8c84

Browse files
4.3.4 (132)
1 parent c2a7f28 commit 39b8c84

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

ChatSecure.xcodeproj/project.pbxproj

+6-2
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@
151151
D9227C401BA7952100B5E1D0 /* ChatSecureCore.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = D9227C2A1BA7952100B5E1D0 /* ChatSecureCore.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
152152
D9229D541EA960CF003D0D09 /* OTRAccountMigrationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D9229D521EA960CF003D0D09 /* OTRAccountMigrationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
153153
D9229D551EA960CF003D0D09 /* OTRAccountMigrationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D9229D531EA960CF003D0D09 /* OTRAccountMigrationViewController.m */; };
154+
D926C19B20FBDD9E0053C538 /* Compatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = D926C19A20FBDD9E0053C538 /* Compatibility.swift */; };
154155
D927C9771EF0C5AF00B72026 /* UIView+OTRAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = D927C9761EF0C5AF00B72026 /* UIView+OTRAssets.swift */; };
155156
D92AC2091DB023D8007BD3E7 /* KeyManagementViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D92AC2081DB023D8007BD3E7 /* KeyManagementViewController.swift */; };
156157
D9315CAE1BB600450077D2EE /* AddFriendsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D9315CAD1BB600450077D2EE /* AddFriendsView.xib */; };
@@ -1058,6 +1059,7 @@
10581059
D9227C2E1BA7952100B5E1D0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
10591060
D9229D521EA960CF003D0D09 /* OTRAccountMigrationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OTRAccountMigrationViewController.h; sourceTree = "<group>"; };
10601061
D9229D531EA960CF003D0D09 /* OTRAccountMigrationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OTRAccountMigrationViewController.m; sourceTree = "<group>"; };
1062+
D926C19A20FBDD9E0053C538 /* Compatibility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Compatibility.swift; sourceTree = "<group>"; };
10611063
D927C9761EF0C5AF00B72026 /* UIView+OTRAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+OTRAssets.swift"; sourceTree = "<group>"; };
10621064
D92AC2081DB023D8007BD3E7 /* KeyManagementViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyManagementViewController.swift; sourceTree = "<group>"; };
10631065
D93027561BAA381F000CC975 /* OTRResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OTRResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -1307,6 +1309,7 @@
13071309
633105001A16D1A300C17BAE /* Classes */ = {
13081310
isa = PBXGroup;
13091311
children = (
1312+
D926C19A20FBDD9E0053C538 /* Compatibility.swift */,
13101313
D9FBDDC81FD74A93006F1C6C /* OTRAppDelegate.swift */,
13111314
633105E51A16D1A300C17BAE /* OTRAppDelegate.h */,
13121315
633105E61A16D1A300C17BAE /* OTRAppDelegate.m */,
@@ -3060,6 +3063,7 @@
30603063
D93DDA941BA79A2400CD8331 /* OTRXMPPBuddyTimers.m in Sources */,
30613064
D9A7BCE81E4554E200888A8E /* OTRXMPPStream.m in Sources */,
30623065
D9AE3A331BA8D9AB00255537 /* OTRConstants.m in Sources */,
3066+
D926C19B20FBDD9E0053C538 /* Compatibility.swift in Sources */,
30633067
63363FAE1CCAE29B00B0C720 /* OTRYapExtensions.swift in Sources */,
30643068
D93DDA971BA79A2400CD8331 /* OTRXMPPTorManager.m in Sources */,
30653069
D93DDA991BA79A2400CD8331 /* OTRXMPPServerInfo.m in Sources */,
@@ -3523,7 +3527,7 @@
35233527
CODE_SIGN_IDENTITY = "iPhone Developer";
35243528
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
35253529
CODE_SIGN_STYLE = Automatic;
3526-
DEVELOPMENT_TEAM = 4T8JLQR6GR;
3530+
DEVELOPMENT_TEAM = "";
35273531
FRAMEWORK_SEARCH_PATHS = (
35283532
"$(inherited)",
35293533
"$(PROJECT_DIR)/Carthage/Build/iOS",
@@ -3561,7 +3565,7 @@
35613565
CODE_SIGN_IDENTITY = "iPhone Developer";
35623566
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
35633567
CODE_SIGN_STYLE = Automatic;
3564-
DEVELOPMENT_TEAM = 4T8JLQR6GR;
3568+
DEVELOPMENT_TEAM = "";
35653569
FRAMEWORK_SEARCH_PATHS = (
35663570
"$(inherited)",
35673571
"$(PROJECT_DIR)/Carthage/Build/iOS",
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//
2+
// Compatibility.swift
3+
// ChatSecureCore
4+
//
5+
// Created by Chris Ballinger on 7/15/18.
6+
// Copyright © 2018 Chris Ballinger. All rights reserved.
7+
//
8+
9+
import Foundation
10+
11+
#if swift(>=4.1)
12+
#elseif swift(>=4.2)
13+
#warning("Remove this once we've updated.")
14+
#else
15+
extension Collection {
16+
func compactMap<ElementOfResult>(
17+
_ transform: (Element) throws -> ElementOfResult?
18+
) rethrows -> [ElementOfResult] {
19+
return try flatMap(transform)
20+
}
21+
}
22+
#endif

ChatSecure/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.3.3</string>
18+
<string>4.3.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleURLTypes</key>
@@ -35,7 +35,7 @@
3535
</dict>
3636
</array>
3737
<key>CFBundleVersion</key>
38-
<string>131</string>
38+
<string>132</string>
3939
<key>FacebookAppID</key>
4040
<string>447241325394334</string>
4141
<key>FacebookDisplayName</key>

0 commit comments

Comments
 (0)