Skip to content

Commit 6febbf3

Browse files
author
Anton Schukin
committed
Updated version to 3.4.0
1 parent a75d15c commit 6febbf3

File tree

7 files changed

+45
-6
lines changed

7 files changed

+45
-6
lines changed

AUTHORS

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# Names should be added to this file like so:
22
# Name or Organization <email address>
3+
# Sorted by number of commits
34

4-
Diego Sánchez <[email protected]>
55
Anton Schukin <[email protected]>
6+
Diego Sánchez <[email protected]>
7+
Victor Shamanov <[email protected]>
8+
Mikhail Gasanov <[email protected]>
9+
Igor Kashkuta <[email protected]>
610
Zhao Wang <[email protected]>
711
Viacheslav Radchenko <[email protected]>
8-
Igor Kashkuta <[email protected]>
912

1013
&yet LLC
1114
Badoo

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
### 3.4.0 (April 23, 2019)
2+
3+
#### Features
4+
- Added Xcode 10 and Swift 4.2 support #521 by [@AntonPalich](https://github.com/AntonPalich)
5+
- Added support for showing messages starting from the bottom of the chat #483 by [@rokemoon](https://github.com/rokemoon)
6+
- Added support for scrolling to a specific item in chat #542 by [@AntonPalich](https://github.com/AntonPalich)
7+
- Added accessibility identifiers to messages, photos input and input bar #517 by [@dive](https://github.com/dive)
8+
- Added support for an experimental input presenter that don't use `UIResponder.inputView` API to present a custom input views #536 by [@aabalaban](https://github.com/aabalaban) and [@magic146](https://github.com/magic146)
9+
- Added support for a compound bubble that shows a mixed content in a single bubble #545 by [@wiruzx](https://github.com/wiruzx)
10+
- Added accessibility identifiers to a compound bubble #556 by [@wiruzx](https://github.com/wiruzx)
11+
- Added ability to change an item type dynamically #548 by [@wiruzx](https://github.com/wiruzx)
12+
- Added support for intercepting paste action in input bar #558 and #560 by [@wiruzx](https://github.com/wiruzx)
13+
- Added support for copy action in compound bubble #573 by [@wiruzx](https://github.com/wiruzx)
14+
15+
#### Improvements
16+
- Changed access modifier to `open` in `scrollToBottom` function #501 by [@azimin](https://github.com/azimin)
17+
- Added `@objc` modifier to `scrollToBottom` function #502 by [@azimin](https://github.com/azimin)
18+
- Added support for postponing a presenter factory initialization #528 by [@magic146](https://github.com/magic146)
19+
- Added `IDETemplateMacros` to workspaces #544 by [@wiruzx](https://github.com/wiruzx)
20+
- Changed some access modifiers to `public` in `ScreenMetric.swift` and `InputContainerView` #551 by [@magic146](https://github.com/magic146)
21+
- Various improvements to support a new input bar in Badoo #552 by [@magic146](https://github.com/magic146)
22+
23+
#### Bug
24+
- Fixed an issue with wrong `inputAccessoryView` position on iOS 12 #530 by [@AntonPalich](https://github.com/AntonPalich)
25+
- Fixed an issue (introduced in #530) with wrong `inputView` height after dismissing a modally presented view controller #531 by [@AntonPalich](https://github.com/AntonPalich)
26+
- Fixed an issue (introduced in #530) with wrong `inputView` height after sending a multilin text message #568 by [@AntonPalich](https://github.com/AntonPalich)
27+
- Fixed an issue (introduced in #542) with double completion execution in performBatchUpdates #543 by [@AntonPalich](https://github.com/AntonPalich)
28+
- Fixed an issue (introduced in #545) with fractional bubble size #553 by [@wiruzx](https://github.com/wiruzx)
29+
- Fixed a crash caused by force unwrapped optional in case when a device was rotated with unopened tab with chat in `UITabBarViewController` #538 by [@alaija](https://github.com/alaija)
30+
- Fixed a freeze caused by `PHCachingImageManager` in some cases #566 by [@leonspok](https://github.com/leonspok)
31+
132
### 3.3.1 (April 9, 2018)
233

334
#### Bugs

Chatto.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Chatto"
3-
s.version = "3.3.1"
3+
s.version = "3.4.0"
44
s.summary = "Chat framework in Swift"
55
s.description = <<-DESC
66
Lightweight chat framework to build Chat apps

Chatto/Source/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.3.1</string>
18+
<string>3.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

ChattoAdditions.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ChattoAdditions"
3-
s.version = "3.3.1"
3+
s.version = "3.4.0"
44
s.summary = "UI componentes for Chatto"
55
s.description = <<-DESC
66
Text and photo bubbles

ChattoAdditions/Source/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.3.1</string>
18+
<string>3.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ Check the [wiki!](https://github.com/badoo/Chatto/wiki)
2929
1. Make sure `use_frameworks!` is added to your `Podfile`.
3030

3131
2. Include the following in your `Podfile`:
32+
```
33+
# Swift 4.2
34+
pod 'Chatto', '= 3.4.0'
35+
pod 'ChattoAdditions', '= 3.4.0' # if you want to use the cells or the input component
36+
```
3237
```
3338
# Swift 4
3439
pod 'Chatto', '= 3.3.1'

0 commit comments

Comments
 (0)