Skip to content

Commit

Permalink
4.3.4 (132)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisballinger committed Jul 19, 2018
1 parent c2a7f28 commit 39b8c84
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
8 changes: 6 additions & 2 deletions ChatSecure.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@
D9227C401BA7952100B5E1D0 /* ChatSecureCore.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = D9227C2A1BA7952100B5E1D0 /* ChatSecureCore.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D9229D541EA960CF003D0D09 /* OTRAccountMigrationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D9229D521EA960CF003D0D09 /* OTRAccountMigrationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9229D551EA960CF003D0D09 /* OTRAccountMigrationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D9229D531EA960CF003D0D09 /* OTRAccountMigrationViewController.m */; };
D926C19B20FBDD9E0053C538 /* Compatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = D926C19A20FBDD9E0053C538 /* Compatibility.swift */; };
D927C9771EF0C5AF00B72026 /* UIView+OTRAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = D927C9761EF0C5AF00B72026 /* UIView+OTRAssets.swift */; };
D92AC2091DB023D8007BD3E7 /* KeyManagementViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D92AC2081DB023D8007BD3E7 /* KeyManagementViewController.swift */; };
D9315CAE1BB600450077D2EE /* AddFriendsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D9315CAD1BB600450077D2EE /* AddFriendsView.xib */; };
Expand Down Expand Up @@ -1058,6 +1059,7 @@
D9227C2E1BA7952100B5E1D0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D9229D521EA960CF003D0D09 /* OTRAccountMigrationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OTRAccountMigrationViewController.h; sourceTree = "<group>"; };
D9229D531EA960CF003D0D09 /* OTRAccountMigrationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OTRAccountMigrationViewController.m; sourceTree = "<group>"; };
D926C19A20FBDD9E0053C538 /* Compatibility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Compatibility.swift; sourceTree = "<group>"; };
D927C9761EF0C5AF00B72026 /* UIView+OTRAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+OTRAssets.swift"; sourceTree = "<group>"; };
D92AC2081DB023D8007BD3E7 /* KeyManagementViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyManagementViewController.swift; sourceTree = "<group>"; };
D93027561BAA381F000CC975 /* OTRResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OTRResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -1307,6 +1309,7 @@
633105001A16D1A300C17BAE /* Classes */ = {
isa = PBXGroup;
children = (
D926C19A20FBDD9E0053C538 /* Compatibility.swift */,
D9FBDDC81FD74A93006F1C6C /* OTRAppDelegate.swift */,
633105E51A16D1A300C17BAE /* OTRAppDelegate.h */,
633105E61A16D1A300C17BAE /* OTRAppDelegate.m */,
Expand Down Expand Up @@ -3060,6 +3063,7 @@
D93DDA941BA79A2400CD8331 /* OTRXMPPBuddyTimers.m in Sources */,
D9A7BCE81E4554E200888A8E /* OTRXMPPStream.m in Sources */,
D9AE3A331BA8D9AB00255537 /* OTRConstants.m in Sources */,
D926C19B20FBDD9E0053C538 /* Compatibility.swift in Sources */,
63363FAE1CCAE29B00B0C720 /* OTRYapExtensions.swift in Sources */,
D93DDA971BA79A2400CD8331 /* OTRXMPPTorManager.m in Sources */,
D93DDA991BA79A2400CD8331 /* OTRXMPPServerInfo.m in Sources */,
Expand Down Expand Up @@ -3523,7 +3527,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 4T8JLQR6GR;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Carthage/Build/iOS",
Expand Down Expand Up @@ -3561,7 +3565,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 4T8JLQR6GR;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Carthage/Build/iOS",
Expand Down
22 changes: 22 additions & 0 deletions ChatSecure/Classes/Compatibility.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// Compatibility.swift
// ChatSecureCore
//
// Created by Chris Ballinger on 7/15/18.
// Copyright © 2018 Chris Ballinger. All rights reserved.
//

import Foundation

#if swift(>=4.1)
#elseif swift(>=4.2)
#warning("Remove this once we've updated.")
#else
extension Collection {
func compactMap<ElementOfResult>(
_ transform: (Element) throws -> ElementOfResult?
) rethrows -> [ElementOfResult] {
return try flatMap(transform)
}
}
#endif
4 changes: 2 additions & 2 deletions ChatSecure/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>4.3.3</string>
<string>4.3.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -35,7 +35,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>131</string>
<string>132</string>
<key>FacebookAppID</key>
<string>447241325394334</string>
<key>FacebookDisplayName</key>
Expand Down

0 comments on commit 39b8c84

Please sign in to comment.