Commit Graph

3635 Commits (bf692e8da354d3bfd44fe85fb3abb3cadec5e857)
 

Author SHA1 Message Date
Greyson Parrelli 6d56447de2 Bump version to 4.20.4 6 years ago
Greyson Parrelli e189fff856 Fixed some cursor-related bugs in Search. 6 years ago
Greyson Parrelli 8fc63c4d78 Bump version to 4.20.3 6 years ago
Greyson Parrelli e6e8416aec Use correct recipient for message search results.
Previously, we'd always use the recipient of the message record, which
was incorrect for messages sent to groups. Now we always use the
recipient for the matching thread record.

Fixes #7823
6 years ago
Greyson Parrelli a792a6e6ae Fixed ThumbnailView sizing problems.
Glide will use the dimensions of the target ImageView as the dimensions
for the image it's loading. This caused problems in the case of
ThumbnailView, as we were constantly changing the ImageView dimensions,
meaning Glide may not have the most recent values (it may be called in
between measure calls, for instance).

To solve this, we now will always override the default image dimensions
when we load an image. If no dimensions are present, we will default to
the layout_width and layout_height of the ThumbnailView.

Fixes #7810
6 years ago
Greyson Parrelli 07e8ae716c Fix EmojiTextView regression.
Using the singleLine attribute will make the TextView report that the
lineCount is always 1, regardless of actual text length. This breaks our
manual ellipsize calculation. Because you can't actually read the
singleLine attribute at runtime, I've switched relevant usages of
singleLine to use maxLines=1 (relevant usages are EmojiTextViews where
singleLine was set and ellipsize was set to 'end').

Fixes #7744
6 years ago
Greyson Parrelli 0b1b568893 Fix notifications for replies.
Notifications for replies will no longer display as a "Media Message" if
they do not contain media. Instead, they will just contain the reply
text.

Fixes #7798
6 years ago
Greyson Parrelli 3a827d1c48 Fix dark theme in search.
Fixed #7821
6 years ago
Moxie Marlinspike 622b3afce0 Update build instructions 6 years ago
Moxie Marlinspike 107f6b4277 Bump version to 4.20.2 6 years ago
Moxie Marlinspike 32b608ff2f Updated language translations 6 years ago
Greyson Parrelli eb42b7b26a Bump version to 4.20.1. 6 years ago
Greyson Parrelli 93effc8890 Disable contact sending. 6 years ago
Greyson Parrelli 5d75f11cbc Bump version to 4.20.0. 6 years ago
Greyson Parrelli 0449647cf9 Implemented full-text search.
You can now use the search bar on the conversation list to find
conversations, messages, and contacts.
6 years ago
Greyson Parrelli c0b75c2ef5 Disable shared contact sending.
Sending shared contacts isn't backwards-compatible, so we want to have a
few releases where receiving is enabled, but not sending. That way, when
we enable sending, most users should be able to properly receive the
shared contact messages.
6 years ago
Greyson Parrelli ca260a92e3 Convert vCard attachments to Shared Contacts.
When you share a vCard from an external app (like the Contacts app) into
Signal, we'll now convert it to a pretty Shared Contact message and
allow you to choose which fields of the contact you wish to send.
6 years ago
Greyson Parrelli e6c16cf28d Allow editing of contact names.
Took care to properly format CJK names.
6 years ago
Greyson Parrelli 54dbffaf30 Added ability to share contacts.
The "contact" option in the attachments tray now brings you through an
optimized contact sharing flow, allowing you to select specific fields
to share. The contact is then presented as a special message type,
allowing you to interact with the card to add the contact to your system
contacts, invite them to signal, initiate a signal message, etc.
6 years ago
Greyson Parrelli 17dbdbd0a9 Handle quote position task finishing after fragment detaches.
There's a chance that the AsyncTask that retrieves a quoted message's
position could finish after the fragment is detached, which would cause
a crash. I've changed it so if this case occurs, the result is ignored.

Also, I noticed that when searching the message table, if a quote can't
be found, we'd end up traversing the entire table. To prevent this from
taking forever on large message tables, I've limited it to searchin only
what is currently present in the adapter.

Fixes #7756
6 years ago
Greyson Parrelli ca8fecea9c Clean up camera flipping, handle having missing cameras.
Did a refactor to better organize the camera flipping code. Also, I
wanted to make sure we handle the cases where the user doesn't have two
cameras (or no cameras, for that matter). In these cases, we just don't
show the appropriate buttons.
6 years ago
Niklas Hambüchen f1c79eaebf Add button to flip camera (front vs rear). Fixes #6279 6 years ago
Moxie Marlinspike 6c1a1fb9ad Use cache directory on removable storage for backups if present
Fixes #7692
6 years ago
Moxie Marlinspike 35d158cfee Treat Permissions "not now" as a denial
Fixes #7713
6 years ago
Moxie Marlinspike a5047cb17b Fix for sender's expiring messages in group with unregistered user
Fixes #7719
6 years ago
Moxie Marlinspike 5006b36e2d Show lock notification immediately after setting is toggled
Fixes #7659
Closes #7678
6 years ago
Moxie Marlinspike c6e20f715b
Merge pull request #7782 from jlund-signal/contributing-updates
Update the contribution guidelines.
6 years ago
Joshua Lund fcc9c2778d Update the contribution guidelines. 6 years ago
Moxie Marlinspike e20b973872 Add local backup listener to manifest 6 years ago
Moxie Marlinspike 7951df09ad Bump version to 4.19.3 6 years ago
Greyson Parrelli f580edaf91 Fix voice recording UI when replying to a message.
Just had to relayer some of the views so the recording UI positions
correctly lined up at the bottom.
6 years ago
Greyson Parrelli 102941c18c Fix QuoteView measuring when voice notes are present.
Fixes #7740
6 years ago
Moxie Marlinspike 0c8b2b23da Bump version to 4.19.2 6 years ago
Moxie Marlinspike aa33be6b03 Updated language translations 6 years ago
Greyson Parrelli 43622e603d Save replies in drafts.
Previously, quotes were not saved to drafts, meaning they would be lost
when leaving the conversation or app. Now, a QuoteId (which represents
the necessary data to restore the QuoteModel) is serialized and stored
in the DraftDatabase.

Fixes #7716
Closes #7729
6 years ago
RiseT 7100030c22 Export string conversation_context__menu_reply_to_message
Additionally changed from "Reply" to "Reply to message" as other
related strings are more comprehensive as well.

Closes #7732
6 years ago
Greyson Parrelli 63a3b1acb9 Also make author text EmojiTextView. 6 years ago
Greyson Parrelli 6fbbc9d078 Render emoji's properly in quote bubbles.
Unfortunately, the change wasn't as simple as just switching to use our
EmojiTextView. That view only supported single-line text. I added
support for multi-line text.

Fixes #7704.
6 years ago
Greyson Parrelli cbe394025d Fix reply-to colors in dark mode to increase contrast.
Fixes #7705
6 years ago
RiseT 29af1669e1 Export strings from registration_call_me_view
Export strings from webrtc_call_screen

Closes #7543
6 years ago
Nicholas Rizzio e6f76159b0 Export "creating backup" string
Closes #7656
6 years ago
Henning Dodenhof e0603abdd3 Use FileProvider for update file handling
Fixes #7654
Closes #7658
6 years ago
Moxie Marlinspike 2a1ce859c4 Add Moto G (5S) Plus to hardware AEC blacklist
For #7635
6 years ago
Moxie Marlinspike 8452fc6c58 Correctly avoid displaying about category in groups
Fixes #7702
6 years ago
Moxie Marlinspike 2ac0179d65 Handle odd sized buffers on backup import decrypt
Fixes #7701
6 years ago
Moxie Marlinspike 8b74e9a075 Bump version to 4.19.1 6 years ago
Moxie Marlinspike afbf6a91bb Bump version to 4.19.0 6 years ago
Moxie Marlinspike 8e2ae6c288 Updated language translations 6 years ago
Greyson Parrelli fa99e8f0d0 Updated reply-to UI.
All UI components are now properly styled and functioning according to
spec.
6 years ago
Moxie Marlinspike d567534609 replies 6 years ago