- Oct 25, 2016
-
-
Torsten Grote authored
-
akwizgran authored
Truncate all messages to valid length before sending See merge request !358
-
Torsten Grote authored
-
- Oct 21, 2016
-
-
akwizgran authored
Fix race conditions when updating UI from events (again) This is my second attempt at fixing race conditions caused by updating the UI from events while background tasks are loading data from the DB. Unlike my first attempt, this one is pretty simple and doesn't require too much reasoning about possible races. The first commit fixes a few list loading bugs I found while working on this problem, and moves the lifecycle callbacks from resume/pause to start/stop, closing #609. The second commit contains the fix for #705, which works as follows: * Each BriarAdapter has a revision counter * Before making a change to the adapter that could be overwritten by a background task, increment the revision * Before starting a background task that could overwrite other changes, get the current revision * Before applying changes from a background task that could overwrite other changes, check whether the revision has changed * If the revision has changed, restart the background task * Otherwise apply the changes Closes #609. #705 remains open because the PagerAdapters for blogs need to be updated. See merge request !356
-
- Oct 20, 2016
- Oct 19, 2016
-
-
akwizgran authored
-
Torsten Grote authored
Throw FormatException if BdfList index is out of bounds Closes #712 See merge request !359
-
akwizgran authored
-
Torsten Grote authored
Private Group Threaded Conversation This MR refactors the forum activity, its controller, its adapter and view holder so *most* of the code can be re-used for private groups by making heavy use of generics. The refactoring has 1383 additions and 1087 deletions, so just grows the code-base slightly and adding the private group conversation just takes an additional 400 lines. The MR also includes one commit that moves post/message creation more into clients, so the UI doesn't need to keep track of timestamps. This commit can of course be split out into a separate MR if desired. Closes #662, #663 See merge request !350
-
Torsten Grote authored
-
akwizgran authored
-
akwizgran authored
-
akwizgran authored
-
Torsten Grote authored
-
Torsten Grote authored
-
Torsten Grote authored
This way the forum and private group client do not need to keep track of message timestamps themselves and do not need to interact with post/message factories.
-
Torsten Grote authored
-
Torsten Grote authored
-
Torsten Grote authored
-
Torsten Grote authored
-
Torsten Grote authored
-
akwizgran authored
-
- Oct 14, 2016
-
-
akwizgran authored
Merge branch '670-uncaught-exceptions-do-not-print-a-stack-trace-in-introductionintegrationtest' into 'master' Print stack trace for uncaught exceptions during tests for easier debugging Closes #670 See merge request !355
-
Torsten Grote authored
-
- Oct 12, 2016
-
-
akwizgran authored
-
akwizgran authored
Use constructor injection for controllers Also made some listeners volatile. This is part of #704 - if I don't find any other classes that need constructor injection I'll close the ticket. See merge request !351
-
akwizgran authored
Null safety annotations The @NotNullByDefault annotation marks all fields, methods and parameters in a class or package @NotNull, so Android Studio will warn if values that may be null are used. Please use this annotation for new classes, and specify @Nullable for any fields, methods and parameters that may be null. Injected fields are initialised to null, so injected classes should use @MethodsNotNullByDefault and @ParametersNotNullByDefault, or specify @Nullable for injected fields. See merge request !349
-
akwizgran authored
-
- Oct 11, 2016
-
-
akwizgran authored
Also made some listeners volatile.
-
akwizgran authored
Private Group List UI This MR implements the UI for the list of private groups. It reacts to three types of events to refresh the displayed data: * new group message received * private group added * private group removed Missing from final implementation: * entering groups * adding new groups * reacting to a future group dissolved event * actually removing a dissolved group    Closes #660 See merge request !335
-
akwizgran authored
Always show the keyboard when asked for it The main fix is maintaining the internal keyboard state when the entire view gets hidden, because `onMeasure()` isn't called anymore in that case and can't update it itself. Closes #676 See merge request !348
-
- Oct 10, 2016
-
-
Torsten Grote authored
and maintain keyboard state when hiding view.
-
Torsten Grote authored
-
akwizgran authored
Always check whether the context has been destroyed #551 has the same root cause as #610, which is that when a background operation completes, we need to check whether the activity or fragment that started the operation has been destroyed before doing anything with the UI. DestroyableActivity has been renamed to DestroyableContext because it's now implemented by some fragments as well. Various existing listener interfaces now extend DestroyableContext. I also modified the ActivityLifecycleController interface so the activity is passed into the onActivityCreate() method rather than being injected - @ernir please check I haven't broken anything! Closes #551 See merge request !341
-
akwizgran authored
-
akwizgran authored
Fix NPE when stopping KeyAgreementTask, improve thread safety This branch fixes #696 and improves the thread safety of the camera code, mostly by adding @UiThread annotations and occasionally by moving stuff onto the UI thread that might have happened on other threads before. Closes #696 See merge request !345
-