Skip to content

Commit

Permalink
Ability to customise main video container for calls
Browse files Browse the repository at this point in the history
Issue
mediMessage.strIngValue() giving attachment as nil is fixed
media message not getting uploading in thread message is fixed
  • Loading branch information
abhisheksaralaya13 committed Jan 23, 2023
1 parent bb10c0d commit 7a2670f
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 23 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions CometChatPro/CometChatPro.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

Pod::Spec.new do |spec|
spec.name = 'CometChatPro'
spec.version = '3.0.911-beta3'
spec.version = '3.0.911'
spec.license = {:type => 'MIT', :file => 'License.md'}
spec.homepage = 'https://www.cometchat.com/pro'
spec.authors = { 'Abhishek Saralaya' => '[email protected]', 'pushpsen' => '[email protected]'}
spec.summary = 'CometChatPro is a platform for integrating voice, video & text messaging experiences into your websites, web apps and mobile apps'
spec.source = { :http => 'https://library.cometchat.io/ios/v3.0/xcode13/CometChatPro_3_0_911-beta3.zip'}
spec.source = { :http => 'https://library.cometchat.io/ios/v3.0/xcode13/CometChatPro_3_0_911.zip'}
spec.library = 'z', 'sqlite3', 'xml2.2'
spec.xcconfig = {'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'}
spec.documentation_url = 'https://www.cometchat.com/docs/ios-chat-sdk/overview'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a href="https://cocoapods.org/pods/CometChatPro"><img src="https://img.shields.io/badge/platform-iOS-orange.svg" /></a>
<a href=""><img src="https://img.shields.io/badge/language-Objective--C%20%7C%20Swift-orange.svg" /></a>
<a href=""> <img src="https://img.shields.io/badge/Contributors-4-yellowgreen" /></a>
<a href=" "> <img src="https://img.shields.io/badge/Version-3.0.911--beta3-red" /></a>
<a href=" "> <img src="https://img.shields.io/badge/Version-3.0.911-red" /></a>
<a href=""> <img src="https://img.shields.io/github/stars/cometchat-pro/ios-chat-sdk?style=social" /></a>

</p>
Expand Down Expand Up @@ -67,7 +67,7 @@ platform :ios, '11.0'
use_frameworks!

target 'YourApp' do
pod 'CometChatPro', '3.0.911-beta3'
pod 'CometChatPro', '3.0.911'
end
________________________________________________________________

Expand All @@ -84,8 +84,8 @@ platform :ios, '11.0'
use_frameworks!

target 'YourApp' do
pod 'CometChatPro', '3.0.911-beta3'
pod 'CometChatCalls', '2.3.0-beta3'
pod 'CometChatPro', '3.0.911'
pod 'CometChatCalls', '2.3.0'
end
________________________________________________________________

Expand Down
12 changes: 6 additions & 6 deletions Sources/CometChatPro.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>CometChatPro.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-x86_64-simulator</string>
<key>LibraryPath</key>
<string>CometChatPro.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,8 @@ SWIFT_CLASS("_TtCC12CometChatPro11AppSettings18AppSettingsBuilder")
- (AppSettingsBuilder * _Nonnull)setRegionWithRegion:(NSString * _Nonnull)region SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)subcribePresenceForRolesWithRoles:(NSArray<NSString *> * _Nonnull)roles SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)setEnableAutoJoinForGroupsWithEnableAutoJoinForGroups:(BOOL)enableAutoJoinForGroups SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)overrideAdminHost:(NSString * _Nonnull)adminHost SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)overrideClientHost:(NSString * _Nonnull)clientHost SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)autoEstablishSocketConnection:(BOOL)enableConnection SWIFT_WARN_UNUSED_RESULT;
- (AppSettings * _Nonnull)build SWIFT_WARN_UNUSED_RESULT;
@end
Expand Down Expand Up @@ -537,7 +539,6 @@ typedef SWIFT_ENUM(NSInteger, Blocked, open) {
@end



@interface CometChat (SWIFT_EXTENSION(CometChatPro))
@end

Expand Down Expand Up @@ -780,6 +781,7 @@ typedef SWIFT_ENUM(NSInteger, MessageCategory, open) {
+ (void)isFeatureEnabledWithFeature:(NSString * _Nonnull)feature onSuccess:(void (^ _Nonnull)(BOOL))onSuccess onError:(void (^ _Nonnull)(CometChatException * _Nullable))onError;
@end


@class TransientMessage;

@interface CometChat (SWIFT_EXTENSION(CometChatPro))
Expand Down Expand Up @@ -826,6 +828,7 @@ typedef SWIFT_ENUM(NSInteger, actionType, open) {
@end



@interface CometChat (SWIFT_EXTENSION(CometChatPro))
@end

Expand All @@ -846,7 +849,6 @@ typedef SWIFT_ENUM(NSInteger, XMPPMsgType, open) {
};



@interface CometChat (SWIFT_EXTENSION(CometChatPro))
+ (void)kickGroupMemberWithUID:(NSString * _Nonnull)UID GUID:(NSString * _Nonnull)GUID onSuccess:(void (^ _Nonnull)(NSString * _Nonnull))onSuccess onError:(void (^ _Nonnull)(CometChatException * _Nullable))onError;
+ (void)banGroupMemberWithUID:(NSString * _Nonnull)UID GUID:(NSString * _Nonnull)GUID onSuccess:(void (^ _Nonnull)(NSString * _Nonnull))onSuccess onError:(void (^ _Nonnull)(CometChatException * _Nullable))onError;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -931,6 +931,8 @@ extension CometChatPro.CometChat {
@objc public func setRegion(region: Swift.String) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func subcribePresenceForRoles(roles: [Swift.String]) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func setEnableAutoJoinForGroups(enableAutoJoinForGroups: Swift.Bool) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func overrideAdminHost(_ adminHost: Swift.String) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func overrideClientHost(_ clientHost: Swift.String) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func autoEstablishSocketConnection(_ enableConnection: Swift.Bool) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func build() -> CometChatPro.AppSettings
@objc deinit
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,8 @@ SWIFT_CLASS("_TtCC12CometChatPro11AppSettings18AppSettingsBuilder")
- (AppSettingsBuilder * _Nonnull)setRegionWithRegion:(NSString * _Nonnull)region SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)subcribePresenceForRolesWithRoles:(NSArray<NSString *> * _Nonnull)roles SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)setEnableAutoJoinForGroupsWithEnableAutoJoinForGroups:(BOOL)enableAutoJoinForGroups SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)overrideAdminHost:(NSString * _Nonnull)adminHost SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)overrideClientHost:(NSString * _Nonnull)clientHost SWIFT_WARN_UNUSED_RESULT;
- (AppSettingsBuilder * _Nonnull)autoEstablishSocketConnection:(BOOL)enableConnection SWIFT_WARN_UNUSED_RESULT;
- (AppSettings * _Nonnull)build SWIFT_WARN_UNUSED_RESULT;
@end
Expand Down Expand Up @@ -537,7 +539,6 @@ typedef SWIFT_ENUM(NSInteger, Blocked, open) {
@end



@interface CometChat (SWIFT_EXTENSION(CometChatPro))
@end

Expand Down Expand Up @@ -780,6 +781,7 @@ typedef SWIFT_ENUM(NSInteger, MessageCategory, open) {
+ (void)isFeatureEnabledWithFeature:(NSString * _Nonnull)feature onSuccess:(void (^ _Nonnull)(BOOL))onSuccess onError:(void (^ _Nonnull)(CometChatException * _Nullable))onError;
@end


@class TransientMessage;

@interface CometChat (SWIFT_EXTENSION(CometChatPro))
Expand Down Expand Up @@ -826,6 +828,7 @@ typedef SWIFT_ENUM(NSInteger, actionType, open) {
@end



@interface CometChat (SWIFT_EXTENSION(CometChatPro))
@end

Expand All @@ -846,7 +849,6 @@ typedef SWIFT_ENUM(NSInteger, XMPPMsgType, open) {
};



@interface CometChat (SWIFT_EXTENSION(CometChatPro))
+ (void)kickGroupMemberWithUID:(NSString * _Nonnull)UID GUID:(NSString * _Nonnull)GUID onSuccess:(void (^ _Nonnull)(NSString * _Nonnull))onSuccess onError:(void (^ _Nonnull)(CometChatException * _Nullable))onError;
+ (void)banGroupMemberWithUID:(NSString * _Nonnull)UID GUID:(NSString * _Nonnull)GUID onSuccess:(void (^ _Nonnull)(NSString * _Nonnull))onSuccess onError:(void (^ _Nonnull)(CometChatException * _Nullable))onError;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -931,6 +931,8 @@ extension CometChatPro.CometChat {
@objc public func setRegion(region: Swift.String) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func subcribePresenceForRoles(roles: [Swift.String]) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func setEnableAutoJoinForGroups(enableAutoJoinForGroups: Swift.Bool) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func overrideAdminHost(_ adminHost: Swift.String) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func overrideClientHost(_ clientHost: Swift.String) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func autoEstablishSocketConnection(_ enableConnection: Swift.Bool) -> CometChatPro.AppSettings.AppSettingsBuilder
@objc public func build() -> CometChatPro.AppSettings
@objc deinit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
</data>
<key>Headers/CometChatPro-Swift.h</key>
<data>
ec9aflXONeWi3HszP39zq3sG07Q=
+UKMSkse3Edwiw0uti9cuUhtAiQ=
</data>
<key>Headers/CometChatPro.h</key>
<data>
Expand Down Expand Up @@ -118,19 +118,19 @@
</data>
<key>Info.plist</key>
<data>
m+Akarl0O87iN6cT74udcTPy4yY=
NE+jH1PpMEZcDl9jd4Xq6VXd1KI=
</data>
<key>Modules/CometChatPro.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
RBJ9XV2zaTwhcmcPMxd+TjIVtDU=
</data>
<key>Modules/CometChatPro.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
TJINwISL2mMBOQqTVI5S7UJ58d4=
iNYjMSM8ql7uN4LLVHqAzzIF18U=
</data>
<key>Modules/CometChatPro.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
A+3Wl/6BJtoZRBa2QRJKbBiuYXg=
XRWbXRt//H0Q4tnDPQ3UJJWY9Bk=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -269,7 +269,7 @@
<dict>
<key>hash2</key>
<data>
mtrxPDGVlbd9yKDGuMJkb+BaqN5IUp+t0O+VVIVPYJE=
De+XJTJzNFmO1RJhOzyMqrUNs3/ZosQ744q/B4mmkls=
</data>
</dict>
<key>Headers/CometChatPro.h</key>
Expand Down Expand Up @@ -346,14 +346,14 @@
<dict>
<key>hash2</key>
<data>
3feNOsoI77jqVwrpjWxBgg3UVRfqscR9VMPmqi4B0UY=
H7GFDXgrnIEA61sJhBSPyMj8CrTkWNQab+chgNt/5lw=
</data>
</dict>
<key>Modules/CometChatPro.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
v7afebX4BPaKoOKC/iYBzQVC9KS8RuRokd9yx1SMfok=
eoczzbtRaQnw0TRkvSgzDODl+jHcNu47vV5cuGUfih8=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down

0 comments on commit 7a2670f

Please sign in to comment.