Skip to content

Commit d105b7e

Browse files
committed
* Added file encryption.
* Fixed connection bug.
1 parent 428cb03 commit d105b7e

File tree

7 files changed

+27
-5
lines changed

7 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### v3.0.38(Feb 17, 2017)
4+
* Added file encryption.
5+
* Fixed connection bug.
6+
37
### v3.0.37(Feb 14, 2017)
48
* Fixed bug of updating meta counter of channel.
59

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://cocoapods.org/pods/SendBirdSDK)
55
[![Languages](https://img.shields.io/badge/language-Objective--C%20%7C%20Swift-orange.svg)](https://github.com/smilefam/sendbird-ios-framework)
6-
[![CocoaPods](https://img.shields.io/badge/pod-v3.0.37-green.svg)](https://cocoapods.org/pods/SendBirdSDK)
6+
[![CocoaPods](https://img.shields.io/badge/pod-v3.0.38-green.svg)](https://cocoapods.org/pods/SendBirdSDK)
77
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
88
[![Commercial License](https://img.shields.io/badge/license-Commercial-brightgreen.svg)](https://github.com/smilefam/sendbird-ios-framework/blob/master/LICENSE.md)
99

SendBirdSDK.framework/Headers/SBDCommand.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
+ (nullable SBDCommand *)buildEnterChannel:(SBDBaseChannel * _Nonnull)channel;
5353
+ (nullable SBDCommand *)buildExitChannel:(SBDBaseChannel * _Nonnull)aUser;
5454
+ (nullable SBDCommand *)buildUserMessageWithChannelUrl:(NSString * _Nonnull)channelUrl messageText:(NSString * _Nonnull)messageText data:(NSString * _Nullable)data customType:(NSString * _Nullable)customType targetLanguages:(NSArray<NSString *> * _Nullable)targetLanguages;
55-
+ (nullable SBDCommand *)buildFileMessageWithFileUrl:(NSString * _Nonnull)fileUrl name:(NSString * _Nullable)name type:(NSString * _Nullable)type size:(NSUInteger)size data:(NSString * _Nullable)data requestId:(NSString * _Nullable)requestId channel:(SBDBaseChannel * _Nonnull)channel customType:(NSString * _Nullable)customType thumbnails:(NSArray * _Nullable)thumbnails;
55+
+ (nullable SBDCommand *)buildFileMessageWithFileUrl:(NSString * _Nonnull)fileUrl name:(NSString * _Nullable)name type:(NSString * _Nullable)type size:(NSUInteger)size data:(NSString * _Nullable)data requestId:(NSString * _Nullable)requestId channel:(SBDBaseChannel * _Nonnull)channel customType:(NSString * _Nullable)customType thumbnails:(NSArray * _Nullable)thumbnails DEPRECATED_ATTRIBUTE;
56+
+ (nullable SBDCommand *)buildFileMessageWithFileUrl:(NSString * _Nonnull)fileUrl name:(NSString * _Nullable)name type:(NSString * _Nullable)type size:(NSUInteger)size data:(NSString * _Nullable)data requestId:(NSString * _Nullable)requestId channel:(SBDBaseChannel * _Nonnull)channel customType:(NSString * _Nullable)customType thumbnails:(NSArray * _Nullable)thumbnails requireAuth:(BOOL)requireAuth;
5657
+ (nullable SBDCommand *)buildPing;
5758
+ (nullable SBDCommand *)buildStartTyping:(SBDGroupChannel * _Nonnull)channel startAt:(long long)startAt;
5859
+ (nullable SBDCommand *)buildEndTyping:(SBDGroupChannel * _Nonnull)channel endAt:(long long)endAt;

SendBirdSDK.framework/Headers/SBDFileMessage.h

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
*/
3636
+ (nullable instancetype)makeWithMaxWidth:(CGFloat)width maxHeight:(CGFloat)height;
3737

38+
3839
@end
3940

4041

@@ -46,14 +47,23 @@
4647
/**
4748
The url of the thumbnail.
4849
*/
49-
@property (strong, nonatomic, readonly, nonnull) NSString *url;
50+
@property (strong, nonatomic, readonly, nonnull, getter = url) NSString *url;
5051

5152

5253
/**
5354
The maximum size of the thumbnail.
5455
*/
5556
@property (nonatomic, readonly) CGSize maxSize;
5657

58+
59+
/**
60+
Returns url
61+
62+
@return Image url.
63+
*/
64+
- (nonnull NSString *)url;
65+
66+
5767
@end
5868

5969
@class SBDBaseChannel;
@@ -71,7 +81,7 @@
7181
/**
7282
* The file URL.
7383
*/
74-
@property (strong, nonatomic, readonly, nonnull) NSString *url;
84+
@property (strong, nonatomic, readonly, nonnull, getter = url) NSString *url;
7585

7686
/**
7787
* The name of file.
@@ -128,4 +138,11 @@
128138
*/
129139
+ (nullable NSMutableDictionary<NSString *, NSObject *> *)buildWithFileUrl:(NSString * _Nonnull)url name:(NSString * _Nullable)name size:(NSUInteger)size type:(NSString * _Nonnull)type data:(NSString * _Nullable)data requestId:(NSString * _Nullable)requestId sender:(SBDUser * _Nonnull)sender channel:(SBDBaseChannel * _Nonnull)channel customType:(NSString * _Nullable)customType;
130140

141+
/**
142+
Returns url
143+
144+
@return Image url.
145+
*/
146+
- (nonnull NSString *)url;
147+
131148
@end

SendBirdSDK.framework/Info.plist

0 Bytes
Binary file not shown.

SendBirdSDK.framework/SendBirdSDK

94.5 KB
Binary file not shown.

SendBirdSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdSDK"
3-
s.version = "3.0.37"
3+
s.version = "3.0.38"
44
s.summary = "SendBird iOS Framework"
55
s.description = "Messaging and Chat API for Mobile Apps and Websites"
66
s.homepage = "https://sendbird.com"

0 commit comments

Comments
 (0)