mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Bump version back up for tapbacks and replies
This commit is contained in:
parent
ff2dafca68
commit
20ff3d324d
1 changed files with 4 additions and 4 deletions
|
|
@ -35,7 +35,7 @@ struct UserMessageList: View {
|
|||
var body: some View {
|
||||
|
||||
let firmwareVersion = bleManager.lastConnnectionVersion
|
||||
let minimumVersion = "1.2.54"
|
||||
let minimumVersion = "1.3.0"
|
||||
let hasTapbackSupport = minimumVersion.compare(firmwareVersion, options: .numeric) == .orderedAscending || minimumVersion.compare(firmwareVersion, options: .numeric) == .orderedSame
|
||||
|
||||
VStack {
|
||||
|
|
@ -49,7 +49,7 @@ struct UserMessageList: View {
|
|||
if allMessages.count > 0 {
|
||||
|
||||
HStack{
|
||||
// Padding at the top of the message list
|
||||
// Padding at the top of the message list
|
||||
}.padding(.bottom)
|
||||
|
||||
ForEach( allMessages ) { (message: MessageEntity) in
|
||||
|
|
@ -63,7 +63,7 @@ struct UserMessageList: View {
|
|||
let messageReply = allMessages.first(where: { $0.messageId == message.replyID })
|
||||
|
||||
HStack {
|
||||
Text(String(message.messageId))
|
||||
|
||||
Text(messageReply?.messagePayload ?? "EMPTY MESSAGE").foregroundColor(.blue).font(.caption2)
|
||||
.padding(10)
|
||||
.overlay(
|
||||
|
|
@ -346,7 +346,7 @@ struct UserMessageList: View {
|
|||
})
|
||||
.onChange(of: allMessages.count, perform: { count in
|
||||
|
||||
self.context.refresh(user, mergeChanges: true)
|
||||
//self.context.refresh(user, mergeChanges: true)
|
||||
|
||||
let index = count - 1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue