From 732af7c33470972b69694abf1f1c1eea39289aca Mon Sep 17 00:00:00 2001
From: carlosgonz <45316884+GNUuser@users.noreply.github.com>
Date: Fri, 1 Jan 2021 10:38:36 -0500
Subject: [PATCH 1/3] Update harbour-fernschreiber-es.ts
---
translations/harbour-fernschreiber-es.ts | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/translations/harbour-fernschreiber-es.ts b/translations/harbour-fernschreiber-es.ts
index a1fa860..6a68cfb 100644
--- a/translations/harbour-fernschreiber-es.ts
+++ b/translations/harbour-fernschreiber-es.ts
@@ -1279,13 +1279,13 @@
-
+
%1 miembros
-
+
%1 suscriptores
@@ -1378,11 +1378,11 @@
-
+ Enfocar el área de entrada de texto después de enviar
-
+ Enfocar el área de entrada de texto después de enviar un mensaje
From 04f6c14e864c17723168eac1297de48144951471 Mon Sep 17 00:00:00 2001
From: John Gibbon
Date: Fri, 1 Jan 2021 21:06:38 +0100
Subject: [PATCH 2/3] Remove warning if no draft_message is present
---
qml/pages/ChatPage.qml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qml/pages/ChatPage.qml b/qml/pages/ChatPage.qml
index 38c4081..f8ca80d 100644
--- a/qml/pages/ChatPage.qml
+++ b/qml/pages/ChatPage.qml
@@ -459,7 +459,7 @@ Page {
Debug.log("[ChatPage] Received pinned message");
pinnedMessageItem.pinnedMessage = message;
}
- if (messageId === chatInformation.draft_message.reply_to_message_id) {
+ if (chatInformation.draft_message && messageId === chatInformation.draft_message.reply_to_message_id) {
newMessageInReplyToRow.inReplyToMessage = message;
}
}
From d3eac32216411293aa97127b006cf61de860f64b Mon Sep 17 00:00:00 2001
From: John Gibbon
Date: Fri, 1 Jan 2021 21:13:14 +0100
Subject: [PATCH 3/3] Remove warnings about Slider maximumValue not >
minimumValue
---
qml/components/AudioPreview.qml | 2 +-
qml/components/VideoPreview.qml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/qml/components/AudioPreview.qml b/qml/components/AudioPreview.qml
index e37c8ac..b8a7d17 100644
--- a/qml/components/AudioPreview.qml
+++ b/qml/components/AudioPreview.qml
@@ -444,7 +444,7 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: positionText.top
minimumValue: 0
- maximumValue: messageAudio.duration ? messageAudio.duration : 0
+ maximumValue: messageAudio.duration ? messageAudio.duration : 0.1
stepSize: 1
value: messageAudio.position
enabled: messageAudio.seekable
diff --git a/qml/components/VideoPreview.qml b/qml/components/VideoPreview.qml
index 8015d71..a17fae1 100644
--- a/qml/components/VideoPreview.qml
+++ b/qml/components/VideoPreview.qml
@@ -482,7 +482,7 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: positionText.top
minimumValue: 0
- maximumValue: messageVideo.duration ? messageVideo.duration : 0
+ maximumValue: messageVideo.duration ? messageVideo.duration : 0.1
highlighted: videoMessageComponent.highlighted || down
stepSize: 1