mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Fix deliveries overlap with emojies.
Update SDK to 5.3.1
This commit is contained in:
parent
b1ed74dfe6
commit
48fe522a01
3 changed files with 13 additions and 12 deletions
|
|
@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 5.2.0 - undefined
|
||||
## 5.2.0 - 2023-12-22
|
||||
|
||||
### Fixed
|
||||
- Download path and emojis size settings
|
||||
|
|
@ -14,7 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Display all call logs on default account.
|
||||
- Avoid sending composing when openning chat.
|
||||
- Crashes.
|
||||
- Update SDK to 5.3
|
||||
- Double chat rooms.
|
||||
- Update SDK to 5.3.1
|
||||
|
||||
### Added
|
||||
- Dedicated call history view.
|
||||
|
|
|
|||
|
|
@ -135,15 +135,6 @@ Item {
|
|||
}
|
||||
|
||||
}
|
||||
ChatDeliveries{
|
||||
id: deliveryLayout
|
||||
anchors.top:rectangle.bottom
|
||||
anchors.left:parent.left
|
||||
anchors.right:parent.right
|
||||
anchors.rightMargin: 50
|
||||
|
||||
chatMessageModel: $chatEntry
|
||||
}
|
||||
Loader{
|
||||
id: reactionLoader
|
||||
anchors.top: rectangle.bottom
|
||||
|
|
@ -165,6 +156,15 @@ Item {
|
|||
onReactionsClicked: container.reactionsClicked($chatEntry)
|
||||
}
|
||||
}
|
||||
ChatDeliveries{
|
||||
id: deliveryLayout
|
||||
anchors.top: reactionLoader.active ? reactionLoader.bottom : rectangle.bottom
|
||||
anchors.left:parent.left
|
||||
anchors.right:parent.right
|
||||
anchors.rightMargin: 50
|
||||
|
||||
chatMessageModel: $chatEntry
|
||||
}
|
||||
|
||||
ActionButton {
|
||||
id: menuButton
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 9bd7b11d47b09bcef967ef26885488cdb5b9f6f2
|
||||
Subproject commit cc73b680eddd9e840b91eede2cfe9b9f20f70d06
|
||||
Loading…
Add table
Reference in a new issue