Skip to content
Snippets Groups Projects
  1. Sep 27, 2016
  2. Jul 29, 2016
  3. Jul 04, 2016
    • Torsten Grote's avatar
      Extend BlogActivity to also show individual posts · 761525ad
      Torsten Grote authored
      This allows for swiping left/right to read other posts by using
      a ViewPager.
      
      This hasn't been done as a separate activity, but with
      fragments, so both can share the `BlogPersistentData` without
      needing to reload it.
      
      Closes #428
      761525ad
  4. Jun 14, 2016
  5. May 30, 2016
  6. Apr 27, 2016
  7. Apr 21, 2016
  8. Apr 20, 2016
  9. Apr 06, 2016
  10. Apr 05, 2016
  11. Apr 01, 2016
  12. Mar 14, 2016
  13. Jan 20, 2016
  14. Jan 14, 2015
  15. Jul 04, 2014
  16. Mar 10, 2014
  17. Mar 07, 2014
  18. Jan 14, 2014
  19. Jan 08, 2014
  20. Nov 29, 2013
  21. Jul 27, 2013
  22. Jun 27, 2013
  23. May 16, 2013
  24. May 15, 2013
  25. May 04, 2013
    • akwizgran's avatar
      Moved lifecycle management into briar-core and reconfigured executors. · 673d7fa0
      akwizgran authored
      CryptoExecutor and DatabaseExecutor now use bounded thread pools with
      unbounded queues, since running too many tasks in parallel is likely to
      harm performance; IncomingConnectionExecutor, PluginExecutor and
      ReliabilityExecutor use unbounded thread pools with direct handoff,
      since their tasks may run indefinitely. There are no longer any bounded
      executors, and all executors discard tasks when shutting down, which
      fixes issue #3612189.
      
      Responsibility for starting and stopping services has been moved from
      BriarService in briar-android to LifecycleManagerImpl in briar-core.
      However, BriarService is still responsible for stopping the
      Android-specific executors, which is ugly. It would be better if
      executors registered themselves with LifecycleManager.
      673d7fa0
  26. Apr 30, 2013
    • akwizgran's avatar
      Removed bundle encryption. · d5720c08
      akwizgran authored
      Android doesn't currently store bundles persistently, so it's premature
      to protect against accidental information leaks through persistent
      bundle storage. Protecting against deliberate information leaks by the
      OS is probably futile, so there's currently no need for bundle
      encryption.
      d5720c08
  27. Apr 25, 2013
  28. Apr 24, 2013
  29. Apr 11, 2013
  30. Mar 18, 2013
    • akwizgran's avatar
      Use a single thread for DB access from the UI. · e32698db
      akwizgran authored
      The UI may access the DB in response to UI or DB events; to maintain a
      consistent view of the DB's contents, the tasks performing these
      accesses must be prevented from overlapping, and must produce consistent
      results if reordered. A single-threaded executor and latches are used to
      prevent tasks from overlapping, without blocking non-UI access to the
      DB.
      e32698db
Loading