Commit graph

7208 commits

Author SHA1 Message Date
sowjanyakch
39aa13f6b7 remove comments
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-10-23 14:32:50 +00:00
sowjanyakch
6e50f0de59 ktlintFormat
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-10-23 14:32:50 +00:00
sowjanyakch
ea28d770aa don't set timer in past
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-10-23 14:32:49 +00:00
sowjanyakch
cbe9305497 set timer for lobby
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-10-23 14:32:49 +00:00
Daniel Calviño Sánchez
bf86b04ac9 Add explicit documentation about the different casing
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2024-10-23 13:02:32 +00:00
Daniel Calviño Sánchez
4573d4be76 Fix handling of end call for all with external signaling
When the message applies to all participants the property is all in
lower case. The comparison is case sensitive, so the message was ignored
and the call was not left by the Talk Android app.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2024-10-23 13:02:32 +00:00
Daniel Calviño Sánchez
433d4ff7c4
Remove dead code to set the call state
"IN_CONVERSATION" was set when the activity was created and "state" in
the intent extras had the value "resume". However, there is no "state"
extra set by default in Android intents, it should be explicitly set,
but as it is not set anywhere in Talk Android code that would make it
dead code and safe to remove.

Moreover, the connection to the call should be initialized again in any
case rather than resumed when "onCreate" is called, as it is likely that
any previous connection would have been ended if the previous activity
instance was destroyed.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2024-10-23 10:42:31 +02:00
Marcel Hibbe
37a317b676
Merge pull request #4365 from nextcloud/backport/4346/stable-20.0
[stable-20.0] Fix ignored blank lines in Javadocs
2024-10-23 10:38:39 +02:00
Nextcloud bot
da7b12363d
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-23 03:08:37 +00:00
Daniel Calviño Sánchez
d66edfc192 Fix ignored blank lines in Javadocs
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2024-10-22 12:52:30 +00:00
rapterjet2004
9a7838ae4e detekt
Signed-off-by: rapterjet2004 <juliuslinus1@gmail.com>
2024-10-22 09:41:43 +00:00
Marcel Hibbe
87d03a359b
center search results in chat
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 11:19:47 +02:00
Marcel Hibbe
4482ac728c
fix availability of search feature.
Hide search feature if room is federated.
Also, for conversation list the check for federation inside isUnifiedSearchAvailable makes no sense.

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 11:19:46 +02:00
Marcel Hibbe
0dc4572ba3
fix to handle chats without offline messages when connection is lost
avoid NPE:

java.lang.NullPointerException
	at com.nextcloud.talk.chat.data.network.OfflineFirstChatRepository.getCappedMessagesAmountOfChatBlock(OfflineFirstChatRepository.kt:186)
	at com.nextcloud.talk.chat.data.network.OfflineFirstChatRepository.access$getCappedMessagesAmountOfChatBlock(OfflineFirstChatRepository.kt:43)
	at com.nextcloud.talk.chat.data.network.OfflineFirstChatRepository$loadInitialMessages$1.invokeSuspend(OfflineFirstChatRepository.kt:162)

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:46 +02:00
Marcel Hibbe
b1e390744b
refactoring and logging
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:45 +02:00
Marcel Hibbe
456fa54f1f
pass newestMessageIdFromDb to initMessagePolling
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:45 +02:00
Marcel Hibbe
e6b1b9fa50
extract getCappedMessagesAmountOfChatBlock
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:45 +02:00
Marcel Hibbe
fac2f54026
Fix unintended deletion of conversations (+related messages&chatBlocks)
Mistake was, that the conversations from DB and sync could differ due to values.
E.g. when a user changed the status, the conversations from DB and sync would differ. So there were conversations (+related messages&chatBlocks) deleted sometimes.
This caused bugs that when entering a chat, all data was loaded again.

In the previous implementation (before this PR), this error was only visible in the UI when you were offline (in this case, nothing was displayed!).

To fix the bug, only the internalId's are compared.

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:45 +02:00
Marcel Hibbe
bb607b065e
only do initial request if newestMessageIdFromDb is lower than lastReadMessage from conversation
If conversation has a newer message id than DB then an online request is necessary

If conversation has an older message id than DB then an online request is not necessary (this could happen when updating of DB is implemented for push notification, not yet done).

If conversation has the same message id like DB than request can be skipped

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:45 +02:00
Marcel Hibbe
57cd3af904
delay progress bar
delay progress bar for one second before showing up for slow connection

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:45 +02:00
Marcel Hibbe
c04871786e
load conversation from DB first, then update by request if connection is available
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:44 +02:00
Marcel Hibbe
95fb2541f6
check if sync succeeded
Decrease message limit for retries of message loading

make it possible to add any amount (up to 100) of messages to UI for initial loading.

add logging

only make initial request for chat messages when newest message from DB is not equal the lastReadMessage that is offered by the conversation

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-22 10:35:44 +02:00
Nextcloud bot
4712a52d19
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-22 02:57:12 +00:00
Nextcloud bot
90b40194c0
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-21 02:50:04 +00:00
Nextcloud bot
de7b7a0830
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-20 02:54:22 +00:00
Nextcloud bot
01cc3edc08
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-19 03:06:44 +00:00
Nextcloud bot
37ae1c0345
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-18 03:01:42 +00:00
Nextcloud bot
5522e88c69
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-17 02:58:30 +00:00
Nextcloud bot
fc43bbe9c7
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-16 03:05:49 +00:00
Nextcloud bot
bbce4f9c1d
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-15 02:51:32 +00:00
Nextcloud bot
c068a6ecfe
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-14 02:50:31 +00:00
Nextcloud bot
65b6537e45
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-13 02:57:57 +00:00
Nextcloud bot
8018325be5
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-12 02:51:17 +00:00
Nextcloud bot
596af2aa4a
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-11 03:01:06 +00:00
Nextcloud bot
4b959e5dfa
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-10 02:54:02 +00:00
Marcel Hibbe
75d0bc0725
fix position and animation of typing indicator
Without this fix, typing indicator moves up and wont go down

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-10-09 13:09:35 +02:00
Nextcloud bot
d5f0a361d5
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-09 02:53:31 +00:00
Nextcloud bot
1b3d9c075a
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-05 02:52:04 +00:00
Nextcloud bot
2ab9fd48f3
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-04 02:53:20 +00:00
Nextcloud bot
6716f9b203
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-10-03 02:51:47 +00:00
sowjanyakch
ebcde30a85 make predefined status use custom time
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-10-01 10:46:24 +00:00
Nextcloud bot
9b81e6b802
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-09-29 03:11:44 +00:00
Nextcloud bot
76ea499a0c
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-09-28 02:50:59 +00:00
Marcel Hibbe
a5b5ec6aee add copyright to fix reuse
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-09-27 08:43:16 +00:00
Nextcloud bot
ad9a6a1eb6
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-09-27 02:52:40 +00:00
Marcel Hibbe
d0ecffff0f
bump version to 20.0.2
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-09-26 13:37:19 +02:00
Marcel Hibbe
38905ec9cf bump versions for SERVER_VERSION_MIN_SUPPORTED + SERVER_VERSION_SUPPORT_WARNING
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-09-26 11:34:26 +00:00
Marcel Hibbe
63ebe5ac1e Add test for conversation conversion
This test respects different API versions and checks if default values are set as expected.

- remove deprecated+unused methods
- remove comments
- remove unnecessary double-bang operator

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-09-26 11:34:26 +00:00
sowjanyakch
4f5d5383c8 Rounded corners for change password dialog
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-09-26 11:17:05 +00:00
sowjanyakch
72c6448829 use open lock icon for set password
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
2024-09-26 11:17:05 +00:00