Commit Graph

52 Commits (bf03b31ddeca06b78b98dd077d50919008c2bbb8)

Author SHA1 Message Date
Moxie Marlinspike 8c1ca6c9e0 Clean up identity key view activity 11 years ago
Moxie Marlinspike 95eb62190a Remove checkboxes from the multi-select UI 11 years ago
Moxie Marlinspike 3743c57edd Clean up list of identity keys. 11 years ago
Moxie Marlinspike 5e2b31af60 Add appropriate text for manual case when identity is trusted. 11 years ago
Moxie Marlinspike 24fc93e9ae Switch to a more heavily TOFU model for identity keys.
1) There is no longer a concept of "verified" or "unverified."
   Only "what we saw last time" and "different from last time."

2) Let's eliminate "verify session," since we're all about
   identity keys now.

3) Mark manually processed key exchanges as processed.
11 years ago
Moxie Marlinspike 7c47ea5cec Make MMS more asynchronous and consistent with new SMS types.
1) We now delay MMS notifications until a payload is received,
   or there's an error downloading the payload.  This makes
   group messages more consistent.

2) All "text" parts of an MMS are combined into a second text
   record, which is stored in the MMS row directly rather than
   as a distinct part.  This allows for immediate text loading,
   which means there's no chance a ConversationItem will resize.

   To do this, we need to include MMS in the big DB migration
   that's already staged for this application update.  It's also
   an "application-level" migration, because we need the MasterSecret
   to do it.

3) On conversation display, all image-based parts now have their
   thumbnails loaded asynchronously.  This allows for smooth-scrolling.
   The thumbnails are also scaled more accurately.
11 years ago
Moxie Marlinspike 83e260436b Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum.  There has always been
   a fairly clean insertion layer that handles encrypting message bodies,
   but the process of decrypting message bodies has always been less than
   ideal.  Here we introduce a "Reader" interface that will decrypt message
   bodies when appropriate and return objects that encapsulate record state.

   No more MessageDisplayHelper.  The MmsSmsDatabase interface is also more
   sane.

2) We finally rid ourselves of the technical debt associated with TextSecure's
   initial usage of the default SMS DB.  In that world, we weren't able to use
   anything other than the default "Inbox, Outbox, Sent" types to describe a
   message, and had to overload the message content itself with a set of
   local "prefixes" to describe what it was (encrypted, asymetric encrypted,
   remote encrypted, a key exchange, procssed key exchange), and so on.

   This includes a major schema update that transforms the "type" field into
   a bitmask that describes everything that used to be encoded in a prefix,
   and prefixes have been completely eliminated from the system.

   No more Prefix.java

3) Refactoring of the MultipartMessageHandler code.  It's less of a mess, and
   hopefully more clear as to what's going on.

The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
11 years ago
Moxie Marlinspike 303d1acd45 Initial client support for GCM message send/receive 11 years ago
Moxie Marlinspike 2f39283da3 Initial GCM registration 11 years ago
Moxie Marlinspike 09ce848b16 Remove default disabled tint from send button. 11 years ago
Jake McGinty 674cd68ebd Modern-style Android chat icons (incl. secure icon)
Make the send-button appearance more similar to the default Android
messenger application
11 years ago
Lilia Markham 5dabe1069d Avoid auto-scroll after deleting a message
See WhisperSystems/TextSecure#139

This fix involves setting transcriptMode to normal on conversation view,
which resolves the issue but comes with the side effect that if you
have scrolled away from the bottom of the list, new incoming messages
will not trigger auto-scroll as they arrive.
12 years ago
Moxie Marlinspike 07c59d969a Prompt user for APN details when missing.
If TextSecure is running on a device without APN details, we prompt
the user to manually specify them when the user goes to send an MMS
message.
12 years ago
Moxie Marlinspike 6c1572e0ec Layout touchup 12 years ago
Moxie Marlinspike 5eb04328d3 Improve passphrase and onboarding UI. Abstract out routing.
1) Update the create, prompt, and change passphrase activities.
   They are no longer dialog themed, and should look a little
   less ugly.

2) Update the import DB activity to be less ugly and more robust.

3) Abstract all of the state handling stuff out of
   ConversationListActivity.  This is now handled by RoutingActivity,
   which all launch intents move through.
12 years ago
Moxie Marlinspike 5cb02445e8 Add support for "delivery notifications." Currently SMS-only. 12 years ago
Moxie Marlinspike 01f5ec5ab8 Align date for GB devices. Compromise nice checkbox alignment. 12 years ago
Moxie Marlinspike 9bf434cb3b The <= GB QuickContactBadge is ugly. Let's do something nicer for them.
Unfortunately GB is 50% of the TS userbase, best not to neglect them.
12 years ago
Moxie Marlinspike 187ec95817 Add collating support for group SMS/MMS messages.
1) When sending an SMS or MMS to multiple recipients, only show one
ConversationItem, but provide statistics on the number of recipients
delivered to.

2) Still break up the messages for secure and insecure messages.
12 years ago
Moxie Marlinspike bb0ec65744 Include source origin in string key name.
This should help eliminate string duplicates, as well as provide
visibility into where strings in a resource file are being used.
12 years ago
Moxie Marlinspike 4715512194 Fixed auto-initiate layout on GB. 12 years ago
Moxie Marlinspike a834ccad55 Fix for 2.3 ugliness. 12 years ago
Moxie Marlinspike 3d3db421d3 Lint warning changes. 12 years ago
Moxie Marlinspike 7a7dba66ad Update passphrase caching notification strategy.
On platforms (API >= 11) that support receiving click events within
a notification, we change the notification format so that users
can "lock" TextSecure with a click.

For all platforms, we change the notification icon in the status
bar from a "lock" to an "unlock," to better reflect the situation.

This is all part of the master plan for eliminating the passphrase
timeout option.
12 years ago
Moxie Marlinspike 312942439d Fixed RecipientsPanel white-on-white weirdness for Android <= 2.3.
Only appeared when the RecipientsEditor was in the unselected state.
12 years ago
Moxie Marlinspike f39b8e5fc8 Fix up whitespace tagging and tag detection prompt.
1) Fix up the whitespace tagging so that it's a little more strict.

2) Don't display whitespace tags that we add to our own messages.

3) Make the tag detection prompt a little more visually pleasing.
12 years ago
Moxie Marlinspike 4c3b7cbe08 Extract TextSecure strings for i18n.
1) Change all instances which use concatenation to build strings
with variables in them to use string formatting instead.

2) Extract all string literals from layouts and menus into strings.xml

3) Extract all string literals from code into strings.xml
12 years ago
Moxie Marlinspike 07305d939a Fix display problem on <= Gingerbread devices. 12 years ago
Moxie Marlinspike bffeed7cd3 Removed old drawable resources. 12 years ago
Moxie Marlinspike 7883d09573 Fix success/failure status on conversation item. 12 years ago
Moxie Marlinspike cffedb09a1 Do migration in backgrounded service. 12 years ago
Moxie Marlinspike 31d59dddef Remove key exchange indicator from list view, spruce up create passphrase dialog. 12 years ago
Moxie Marlinspike bc8f26c591 Correctly initialize conversation after message sent. 12 years ago
Moxie Marlinspike 853e12693d Fix Auto/Save activities for GB. 12 years ago
Moxie Marlinspike edb286a44d Add search support for v11+ 12 years ago
Moxie Marlinspike e641a28cf5 New lock icons. 12 years ago
Moxie Marlinspike 5918353fc7 Updated lock icon image 12 years ago
Moxie Marlinspike 1ff278dc81 Update the key exchange icon look. 12 years ago
Moxie Marlinspike 7cab26750b Switch to Contextual Action Bar goodness. 12 years ago
Moxie Marlinspike a66cc636c6 Fix review identity activity UI. 12 years ago
Moxie Marlinspike a1b077c349 Fix view identity key QR code action. 12 years ago
Moxie Marlinspike 78998d0c93 Clean up key/identity verification Activites.
1) Get ride of the crazy button situation.
2) Actionbar-ify and abstract out the common actions.
3) Switch to full activities from dialog themes.
12 years ago
Moxie Marlinspike 863e1c6508 Fix the look of tabbed multi-contact selector.
1) Updated to ActionBar style.
2) Split out into fragments.
3) Switch to cursor loaders.
12 years ago
Moxie Marlinspike c7e891eda4 Fix passphrase prompt dialog activity. 12 years ago
Moxie Marlinspike a7cc47d259 Update conversation item style.
1) Don't print sender/recipient name in message body.
2) Do the split conversation icon view.
3) Adjust font sizes and colors.
12 years ago
Moxie Marlinspike 1ac1cec634 Update look for RecipientsPanel.
1) Make the "add contacts" graphic more holo-ific.
2) Adjust the graphic position on holo-themed devices.
12 years ago
Moxie Marlinspike b377fe84df New design for Conversation Activity.
1) Move to Fragments for the list view.
2) Switch to CursorLoader from my jankey self-managed cursor.
3) Add session security logic to the ActionBar.
4) Fix colors to be less ugly.
12 years ago
Moxie Marlinspike 3d9475676f Move to a Fragment world.
1) Start breaking the UI out into Fragments.
2) Switch to Cursor loaders from managed cursors.
3) Switch to inflated menu resources.
4) Break out some basic functionality into helper classes.
12 years ago
Moxie Marlinspike b93bb69c28 Restyle conversation list view.
1. New look for quick contact badges.
2. No more unread indicator, replace with bolded text.
3. Style message count with color rather than parens.
4. Remove "New Message" item, add as item in action bar instead.
12 years ago
Moxie Marlinspike 63250b33a8 Switch to QuickContactBadge. 12 years ago