Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Pushpsen authored and Pushpsen committed Apr 9, 2020
1 parent ffb9e0f commit 6ce1bc0
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ extension CometChatConversationList : CometChatMessageDelegate {
DispatchQueue.main.async {
if let cell = self.tableView.cellForRow(at: indexPath) as? CometChatConversationView, (cell.conversation.conversationWith as? Group)?.guid == typingDetails.receiverID {
let user = typingDetails.sender?.name
cell.typing.text = user! + NSLocalizedString("is typing...", comment: "")
cell.typing.text = user! + " " + NSLocalizedString("IS_TYPING", comment: "")
if cell.message.isHidden == false{
cell.typing.isHidden = false
cell.message.isHidden = true
Expand All @@ -498,7 +498,7 @@ extension CometChatConversationList : CometChatMessageDelegate {
DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
if let cell = self.tableView.cellForRow(at: indexPath) as? CometChatConversationView, (cell.conversation.conversationWith as? Group)?.guid == typingDetails.receiverID {
let user = typingDetails.sender?.name
cell.typing.text = user! + NSLocalizedString("is typing...", comment: "")
cell.typing.text = user! + " " + NSLocalizedString("IS_TYPING", comment: "")
if cell.typing.isHidden == false{
cell.typing.isHidden = true
cell.message.isHidden = false
Expand Down
2 changes: 2 additions & 0 deletions License.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ THE SOFTWARE.





18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ We recommend using CocoaPods, as they are the most advanced way of managing iOS
**Note:**
</br>
* CometChatPro SDK supports installation through Cocoapods only and it will support up to two latest releases of
Xcode. Currently, we are supporting Xcode 11.2.1 or Higher.
Xcode. Currently, we are supporting Xcode 11.3 and 11.4.

* CometChatPro SDK includes video calling components. We suggest you run on physical devices to avoid errors.

Expand All @@ -50,17 +50,29 @@ Add the following lines to the Podfile.
```bash
________________________________________________________________

For Xcode 11.2.1(or Higher):
For Xcode 11.3:

platform :ios, '10.0'
use_frameworks!

target 'MyApp' do
pod 'CometChatPro', '~> 2.0.7'
pod 'CometChatPro', '2.0.8-Xcode11.3'
end
________________________________________________________________


For Xcode 11.4:

platform :ios, '10.0'
use_frameworks!

target 'MyApp' do
pod 'CometChatPro', '2.0.8'
end
________________________________________________________________
```
And then install the `CometChatPro` framework through CocoaPods.

```bash
pod install
```
Expand Down
Binary file added Screenshots/audioCall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6ce1bc0

Please sign in to comment.