Skip to content
Snippets Groups Projects
  1. Dec 31, 2015
    • str4d's avatar
      Migrate SetupActivity to XML · 981903aa
      str4d authored
      981903aa
    • str4d's avatar
      Enable StrengthMeter to be defined in XML · 64e63fa0
      str4d authored
      64e63fa0
    • akwizgran's avatar
      Merge branch '198-briar-recycler-view' into 'master' · b1f2f7d1
      akwizgran authored
      Create custom BriarRecyclerView and use it for the contact list.
      
      It is a common pattern to have a list with an empty view and a progress bar.
      This commit introduces a custom BriarRecyclerView and uses it for the
      contact list.
      
      No more manually hiding and showing empty views and progress bars is
      necessary when using the new BriarRecyclerView instead of RecyclerView.
      
      Please note that this conflicts with !44 at the moment and needs to be
      implemented for !36 once merged.
      
      Closes #198
      
      See merge request !45
      b1f2f7d1
    • akwizgran's avatar
      Merge branch '9-conversation-view' into 'master' · d0092ee5
      akwizgran authored
      Overhauled Conversation View with Message Bubbles
      
      The Conversation View now uses a RecyclerView with conversation bubbles
      in alternating colors and vector drawables to indicate message state.
      
      The conversation bubbles have been taken from Telegram
      and can be replaced by a UX designer later.
      There's also a special bubble for unread messages,
      so they are not overlooked when they come in delayed.
      
      This commit also addresses #9, because message text can
      now be selected and copied. This is done by using
      
          android:textIsSelectable="true"
      
      which only works for API level 11 or higher.
      
      If we want copy and paste on lower API levels,
      additional measures have to be implemented.
      
      See merge request !36
      d0092ee5
  2. Dec 30, 2015
    • Torsten Grote's avatar
    • Torsten Grote's avatar
      Create custom BriarRecyclerView and use it for the contact list. · f309cb36
      Torsten Grote authored
      It is a common pattern to have a list with an empty view and a progress bar.
      This commit introduces a custom BriarRecyclerView and uses it for the
      contact list.
      
      No more manually hiding and showing empty views and progress bars is
      necessary when using the new BriarRecyclerView instead of RecyclerView.
      
      Please note that this conflicts with !44 at the moment and needs to be
      implemented for !36 once merged.
      
      Closes #198
      f309cb36
    • akwizgran's avatar
      Merge branch '199-use-fab-for-adding-new-contact' into 'master' · e17765e8
      akwizgran authored
      Add a floating action button (FAB) in the contact list
      
      The button hides itself when you scroll down the list of contacts
      and shows again when you scroll up.
      
      To properly color the button, the accent color has been defined.
      It uses the same color as the action bar (primary color).
      I leave it to a UX designer to adapt the color scheme.
      
      Please note that the design support library was used.
      It includes the app-compat library, so this has been removed
      from the `build.gradle` file.
      
      Closes #199
      
      See merge request !44
      e17765e8
    • Torsten Grote's avatar
      This introduces a floating action button (FAB) in the contact list. · a51726f1
      Torsten Grote authored
      The button hides itself when you scroll down the list of contacts
      and shows again when you scroll up.
      
      To properly color the button, the accent color has been defined.
      It uses the same color as the action bar (primary color).
      I leave it to a UX designer to adapt the color scheme.
      
      Please note that the design support library was used.
      It includes the app-compat library, so this has been removed
      from the `build.gradle` file.
      
      Closes #199
      a51726f1
  3. Dec 29, 2015
  4. Dec 28, 2015
    • Torsten Grote's avatar
      880333f0
    • akwizgran's avatar
      Merge branch '7-password-activity' into 'master' · 590d1e8d
      akwizgran authored
      Show home screen if user backs out of password activity
      
      This borrows a technique from @grote's crash reporter patch to fix #7. If the user presses the back button in PasswordActivity, the home screen is shown. Previously, pressing the back button removed PasswordActivity from the back stack, causing the next activity in the back stack to spawn another PasswordActivity.
      
      
      See merge request !41
      590d1e8d
    • akwizgran's avatar
      Merge branch 'use-xsalsa20-poly1305' into 'master' · d7f20401
      akwizgran authored
      Use XSalsa20-Poly1305 instead of AES-GCM for transport encryption and password storage.
      
      This patch integrates @str4d's new authenticated cipher implementation. It depends on !18.
      
      See merge request !35
      d7f20401
    • Torsten Grote's avatar
      Use a RecyclerView for the ConversationView and · e98d4f22
      Torsten Grote authored
      properly notify the view adapter of dataset changes
      in order to avoid invalidating the entire dataset when not absolutely necessary.
      
      This change also shows unread messages in a different color,
      so users do not fail to notice delayed messages.
      e98d4f22
    • Torsten Grote's avatar
      New Conversation View in XML · 68cd1ff2
      Torsten Grote authored
      It now uses conversation bubbles in alternating colors
      and vector drawables to indicate message state.
      
      The conversation bubbles have been taken from Telegram
      and can be replaced by a UX designer later.
      
      This commit also addresses #9, because message text can
      now be selected and copied. This is done by using
      
          android:textIsSelectable="true"
      
      which only works for API level 11 or higher.
      
      If we want copy and paste on lower API levels,
      additional measures have to be implemented.
      68cd1ff2
    • Torsten Grote's avatar
      Merge branch 'contact-list-activity' into 'master' · 83a2552a
      Torsten Grote authored
      Use a RecyclerView for the Contact List
      
      This is the first RecyclerView in the project. I am using a SortedList to keep the contacts sorted by latest activity.
      
      Also, I removed the icon footer and moved the icon into ActionBar. I did the same with the long-press contact deletion action which eventually will move to the new contact details activity.
      
      Several icons have been replaced by vector drawables and all the views are now defined in XML.
      
      See merge request !38
      83a2552a
    • Torsten Grote's avatar
      Sort contacts by latest activity. · 6a954021
      Torsten Grote authored
      When you receive a message from a contact,
      it will be moved to the top of the list with a nice animation.
      Also with this commit, not the entire data set is invalidated each time data changes,
      but only the parts of the data that really require an update.
      
      Furthermore, the ContactListItemComparator that is not needed anymore is
      removed.
      6a954021
    • Torsten Grote's avatar
      Use a RecyclerView for the Contact List · 4bcd2046
      Torsten Grote authored
      4bcd2046
    • akwizgran's avatar
      Merge branch '189-dbexecutor' into 'master' · d46ad6cc
      akwizgran authored
      Inject dbExecutor as ExecutorService
      
      Closes #188, despite the branch name. :0)
      
      See merge request !33
      d46ad6cc
    • akwizgran's avatar
      bbf1770d
    • akwizgran's avatar
      Merge branch '7-crash-handling' into 'master' · 435efc3b
      akwizgran authored
      Small Improvements for Crash Handling Activities
      
      This relates to #7 and closes #193
      
      See merge request !37
      435efc3b
  5. Dec 23, 2015
  6. Dec 21, 2015
  7. Dec 18, 2015
Loading