Skip to content

Commit

Permalink
Updated version to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Schukin committed Apr 23, 2019
1 parent a75d15c commit 6febbf3
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 6 deletions.
7 changes: 5 additions & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Names should be added to this file like so:
# Name or Organization <email address>
# Sorted by number of commits

Diego Sánchez <[email protected]>
Anton Schukin <[email protected]>
Diego Sánchez <[email protected]>
Victor Shamanov <[email protected]>
Mikhail Gasanov <[email protected]>
Igor Kashkuta <[email protected]>
Zhao Wang <[email protected]>
Viacheslav Radchenko <[email protected]>
Igor Kashkuta <[email protected]>

&yet LLC
Badoo
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
### 3.4.0 (April 23, 2019)

#### Features
- Added Xcode 10 and Swift 4.2 support #521 by [@AntonPalich](https://github.com/AntonPalich)
- Added support for showing messages starting from the bottom of the chat #483 by [@rokemoon](https://github.com/rokemoon)
- Added support for scrolling to a specific item in chat #542 by [@AntonPalich](https://github.com/AntonPalich)
- Added accessibility identifiers to messages, photos input and input bar #517 by [@dive](https://github.com/dive)
- 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)
- Added support for a compound bubble that shows a mixed content in a single bubble #545 by [@wiruzx](https://github.com/wiruzx)
- Added accessibility identifiers to a compound bubble #556 by [@wiruzx](https://github.com/wiruzx)
- Added ability to change an item type dynamically #548 by [@wiruzx](https://github.com/wiruzx)
- Added support for intercepting paste action in input bar #558 and #560 by [@wiruzx](https://github.com/wiruzx)
- Added support for copy action in compound bubble #573 by [@wiruzx](https://github.com/wiruzx)

#### Improvements
- Changed access modifier to `open` in `scrollToBottom` function #501 by [@azimin](https://github.com/azimin)
- Added `@objc` modifier to `scrollToBottom` function #502 by [@azimin](https://github.com/azimin)
- Added support for postponing a presenter factory initialization #528 by [@magic146](https://github.com/magic146)
- Added `IDETemplateMacros` to workspaces #544 by [@wiruzx](https://github.com/wiruzx)
- Changed some access modifiers to `public` in `ScreenMetric.swift` and `InputContainerView` #551 by [@magic146](https://github.com/magic146)
- Various improvements to support a new input bar in Badoo #552 by [@magic146](https://github.com/magic146)

#### Bug
- Fixed an issue with wrong `inputAccessoryView` position on iOS 12 #530 by [@AntonPalich](https://github.com/AntonPalich)
- Fixed an issue (introduced in #530) with wrong `inputView` height after dismissing a modally presented view controller #531 by [@AntonPalich](https://github.com/AntonPalich)
- Fixed an issue (introduced in #530) with wrong `inputView` height after sending a multilin text message #568 by [@AntonPalich](https://github.com/AntonPalich)
- Fixed an issue (introduced in #542) with double completion execution in performBatchUpdates #543 by [@AntonPalich](https://github.com/AntonPalich)
- Fixed an issue (introduced in #545) with fractional bubble size #553 by [@wiruzx](https://github.com/wiruzx)
- 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)
- Fixed a freeze caused by `PHCachingImageManager` in some cases #566 by [@leonspok](https://github.com/leonspok)

### 3.3.1 (April 9, 2018)

#### Bugs
Expand Down
2 changes: 1 addition & 1 deletion Chatto.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Chatto"
s.version = "3.3.1"
s.version = "3.4.0"
s.summary = "Chat framework in Swift"
s.description = <<-DESC
Lightweight chat framework to build Chat apps
Expand Down
2 changes: 1 addition & 1 deletion Chatto/Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.3.1</string>
<string>3.4.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion ChattoAdditions.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ChattoAdditions"
s.version = "3.3.1"
s.version = "3.4.0"
s.summary = "UI componentes for Chatto"
s.description = <<-DESC
Text and photo bubbles
Expand Down
2 changes: 1 addition & 1 deletion ChattoAdditions/Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.3.1</string>
<string>3.4.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ Check the [wiki!](https://github.com/badoo/Chatto/wiki)
1. Make sure `use_frameworks!` is added to your `Podfile`.

2. Include the following in your `Podfile`:
```
# Swift 4.2
pod 'Chatto', '= 3.4.0'
pod 'ChattoAdditions', '= 3.4.0' # if you want to use the cells or the input component
```
```
# Swift 4
pod 'Chatto', '= 3.3.1'
Expand Down

0 comments on commit 6febbf3

Please sign in to comment.