Commit Graph

2310 Commits

Author SHA1 Message Date
Agnieszka C 512a354f44
Translated using Weblate (Polish)
Currently translated at 100.0% (91 of 91 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/pl/
2023-07-13 10:12:24 +02:00
Josep M. Ferrer 955374b470
Translated using Weblate (Catalan)
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/ca/
2023-07-13 04:28:43 +02:00
Rex_sa 8ec167da4e
Translated using Weblate (Arabic)
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/ar/
2023-07-13 04:28:43 +02:00
Eric 2d6f05f0f5
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/zh_Hans/
2023-07-13 04:28:43 +02:00
Oğuz Ersen 705181e076
Translated using Weblate (Turkish)
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/tr/
2023-07-13 04:28:43 +02:00
solokot 0c4774cd56
Translated using Weblate (Russian)
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/ru/
2023-07-13 04:28:43 +02:00
Agnieszka C 52fecff926
Translated using Weblate (Polish)
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/pl/
2023-07-13 04:28:43 +02:00
Guillaume d15384db26
Translated using Weblate (Dutch)
Currently translated at 100.0% (86 of 86 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/nl/
2023-07-13 04:28:43 +02:00
Tibor Kaputa 7ca11c8427
Merge pull request #682 from esensar/feature/19-message-details
Add message details menu button
2023-07-11 15:25:10 +02:00
Tibor Kaputa aecaff6d6a
updating the slovak translation 2023-07-11 15:24:32 +02:00
Ensar Sarajčić cf7003e3b4 Remove extra spaces in strings files 2023-07-11 15:11:53 +02:00
Ensar Sarajčić 98eb62e1b6 Move message_details_sim to donottranslate 2023-07-11 13:45:15 +02:00
Ensar Sarajčić d27a2f5747 Update Simple-Commons ref 2023-07-11 13:44:50 +02:00
Ensar Sarajčić 3adfdd401e Update dialog to reuse properties dialog from file manager 2023-07-11 11:02:55 +02:00
Ensar Sarajčić 6fef121599 Fix formatting of senders and receivers 2023-07-11 09:55:57 +02:00
Ensar Sarajčić a5d6e7724c Reduce displayed data in message details dialog 2023-07-11 09:49:40 +02:00
Tibor Kaputa 1aa9a3a1a5
Merge pull request #681 from esensar/feature/33-blocked-keywords
Add support for blocking keywords for incoming messages
2023-07-10 20:20:07 +02:00
Tibor Kaputa b49643562b
updating the slovak translation 2023-07-10 20:19:33 +02:00
Ensar Sarajčić daea2d2e5d Remove unused address and subject from message filter in SmsReceiver 2023-07-10 17:00:32 +02:00
Ensar Sarajčić c1b29646d3 Show SIM in details only if multiple are present 2023-07-10 16:59:36 +02:00
Ensar Sarajčić 45416c07bd Split getReceiverOrSenderPhoneNumbers in MessageDetailsDialog in multiple lines 2023-07-10 16:51:37 +02:00
Ensar Sarajčić 28a19a09ce Use string format instead of concatenation in MessageDetailsDialog 2023-07-10 16:50:17 +02:00
Ensar Sarajčić e4269c8356 Remove needless extra empty line in ThreadAdapter 2023-07-10 16:47:50 +02:00
Ensar Sarajčić bdd506c96e Add message details menu button
Adds a "Properties" menu button in conversation, when one message
is selected, which displays details about the message:
- Type (SMS or MMS)
- Sender phone number (or receiver if it is a sent message)
- Used SIM
- Date sent at
- Date received at (if it is an incoming message)

This closes #19
2023-07-10 16:43:07 +02:00
Ensar Sarajčić 674a467694 Add support for blocking keywords for incoming messages
This adds support for filtering incoming messages based on
message body by checking if it contains any of the blocked keywords
(case insensitive). Regex and patterns are not supported at the moment.

NOTE: This does not currently support MMS, only SMS.

This closes #33
2023-07-10 14:11:41 +02:00
Tibor Kaputa 9942fb788a
Merge pull request #679 from wilsonrc/fix/675-refresh-cache-reply
[ISSUE-675] update last conversation message after replying from notification.
2023-07-08 09:46:23 +02:00
Wilson e3bf8541df update last conversation message after replying from notification.
#ISSUE-675
2023-07-07 15:13:23 -04:00
Tibor Kaputa 6540fe2aa7
Merge pull request #678 from esensar/fix/433-contact-details-mms-mixup
Properly look up participants in MMS group conversations
2023-07-07 12:49:45 +02:00
Ensar Sarajčić daf11dc6fd Properly look up participants in MMS group conversations
Application was always picking first participant when tapping on avatars
in conversations. It was also using first participant for MMS notifications.

This stores sender's phone number in the database, so it can be used to look
up correct participant in the list of participants. If matching on number fails,
matching on name is attempted. If both of these fail, it falls back to previous
behavior, which is just picking the first participant.

This may also be connected to #32, but I am not sure, since this should just
be related to behavior when tapping on avatars. Mixing up avatars in the
conversation should be a different issue.

This closes #433, closes #500, closes #384
2023-07-07 10:58:17 +02:00
Tibor Kaputa b0da7bad31
Merge pull request #672 from esensar/feature/446-password-protection
Add password protection feature to the app
2023-06-30 14:43:20 +02:00
Ensar Sarajčić 9ff6c3cbb6 Properly load threads on configuration changes 2023-06-30 10:56:07 +02:00
Ensar Sarajčić 8675de70c2 Handle app locking for threads too 2023-06-30 10:55:30 +02:00
Ensar Sarajčić ae2e480876 Prevent loading messages before app is unlocked 2023-06-30 10:41:01 +02:00
Ensar Sarajčić ce76573614 Adjust settings section label color properly 2023-06-30 10:25:45 +02:00
Ensar Sarajčić 143aaece4b Add password protection feature to the app
This closes #446
2023-06-30 09:29:36 +02:00
Tibor Kaputa af9143f46e
Merge pull request #670 from weblate/weblate-simple-mobile-tools-simple-sms-messenger
Translations update from Hosted Weblate
2023-06-26 23:07:05 +02:00
J. Lavoie 4bacfa4fa8
Translated using Weblate (Italian)
Currently translated at 100.0% (81 of 81 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/it/
2023-06-26 23:03:48 +02:00
J. Lavoie f8982156fa
Translated using Weblate (French)
Currently translated at 100.0% (81 of 81 strings)

Translation: Simple Mobile Tools/Simple SMS Messenger
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-sms-messenger/fr/
2023-06-26 23:03:48 +02:00
Tibor Kaputa 6dc79837d3
Merge pull request #668 from AAlier/master
Add Delete Action No Reply Notification message
2023-06-26 23:03:43 +02:00
Tibor Kaputa 73c12d0db1
removing an empty line 2023-06-26 22:48:13 +02:00
Alier 3a4f54b4be Remove extra translation 2023-06-27 02:40:41 +06:00
Alier a21662baef Update string translation 2023-06-26 16:27:23 +06:00
AAlier 5169539a88 Add missing code 2023-06-24 04:28:35 +06:00
Alier b076da3840 Add Delete Action Button to Sms message 2023-06-24 04:09:35 +06:00
tibbi 220dec1cd5 replacing jcenter with mavenCentral 2023-06-23 11:37:15 +02:00
tibbi 77768c66e0 fix #44, load less messages at conversations by default to speed it up 2023-06-21 12:22:11 +02:00
tibbi 4dfdb39603 adding some margin between conversations 2023-06-12 12:33:10 +02:00
tibbi 1d2443fda3 removing a confusing background at conversations, set it dynamically 2023-06-12 12:20:59 +02:00
tibbi e8d021a662 use nicer effects at long pressing conversations 2023-06-11 21:42:55 +02:00
Tibor Kaputa 32f6307464
Merge pull request #660 from weblate/weblate-simple-mobile-tools-simple-sms-messenger
Translations update from Hosted Weblate
2023-06-08 16:52:43 +02:00