aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Style: use attrs from appcompat rather than from frameworksJason A. Donenfeld2018-07-303-5/+5
| | | | | This isn't possible for colorForeground, colorBackground, textAppearanceMedium, but at least it's useful for some things here.
* FloatingActionsMenu: don't wrap context on asus api 21Jason A. Donenfeld2018-07-301-2/+6
| | | | Works around frameworks bug.
* Show different color for multiselectionJason A. Donenfeld2018-07-305-27/+80
|
* Replace hard-coded colors with theme colorsJason A. Donenfeld2018-07-306-23/+17
|
* Remove placeholder color and directly use alphaHarsh Shandilya2018-07-303-7/+1
| | | | | | Why wasn't this done like this in the first place? Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* MonkeyedSnackbar: fix typosJason A. Donenfeld2018-07-291-3/+6
|
* Version bumpJason A. Donenfeld2018-07-291-2/+2
|
* ConfigNamingDialog: use name input filterJason A. Donenfeld2018-07-291-2/+9
|
* MonkeyedSnackbar: work around Harsh's broken phoneJason A. Donenfeld2018-07-297-10/+50
| | | | | | I think I'd probably like to revert this, since presumably there's a good reason in the first place why the support lib disables animations when accessibility services are turned on?
* MSF: make it more obvious what needs to be doneJason A. Donenfeld2018-07-292-4/+9
|
* FloatingActionButtonBehavior: animate transitionsJason A. Donenfeld2018-07-291-4/+32
|
* Roll back to API 27 for nowJason A. Donenfeld2018-07-292-3/+6
| | | | | There's no source available for API 28, which is a pain. But this commit should be reverted whenever source is released.
* Target API 28Jason A. Donenfeld2018-07-293-13/+13
|
* TunnelListFragment: show selected tunnelJason A. Donenfeld2018-07-291-5/+34
|
* TunnelListFragment: fix multiselection on rotationJason A. Donenfeld2018-07-291-1/+25
|
* FloatingActionButonBehavior: set translation back to 0 when snackbar diesJason A. Donenfeld2018-07-291-0/+7
|
* MainActivity: only show two column on tabletsJason A. Donenfeld2018-07-291-0/+0
|
* MainActivity: Fix fragment selection logicSamuel Holland2018-07-284-109/+104
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* Application: refuse to run on old androidJason A. Donenfeld2018-07-282-0/+13
|
* QuickTileService: fix bug the wrong wayJason A. Donenfeld2018-07-281-0/+14
|
* config: show more informative error message on wrong keyJason A. Donenfeld2018-07-274-1/+6
|
* Set ACRA install sourceJason A. Donenfeld2018-07-261-8/+15
|
* Version bumpJason A. Donenfeld2018-07-261-2/+2
|
* TunnelDetailFragment now restores state correctly after process deathEric Kuck2018-07-267-34/+57
|
* Application: use proper completablefuture for backendJason A. Donenfeld2018-07-265-52/+24
|
* Wire up ACRAJason A. Donenfeld2018-07-262-0/+69
|
* FloatingActionBehaviour: Adjust constructorsHarsh Shandilya2018-07-261-2/+3
| | | | | | Get these in line with the parent class Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* ThemeChangeAwareActivity: reintroduce cache busterJason A. Donenfeld2018-07-251-0/+37
| | | | | This is still needed by certain icons, like the trash icon in the peer editor.
* Version bumpJason A. Donenfeld2018-07-251-2/+2
|
* MainActivity: attempt to fix commit state exceptionsJason A. Donenfeld2018-07-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an attempt to fix: java.lang.IllegalStateException: at android.support.v4.app.FragmentManagerImpl.checkStateLoss (FragmentManager.java:2053) at android.support.v4.app.FragmentManagerImpl.enqueueAction (FragmentManager.java:2079) at android.support.v4.app.BackStackRecord.commitInternal (BackStackRecord.java:678) at android.support.v4.app.BackStackRecord.commit (BackStackRecord.java:632) at com.wireguard.android.activity.MainActivity.moveToState (MainActivity.java:58) at com.wireguard.android.activity.MainActivity.onSelectedTunnelChanged (MainActivity.java:157) at com.wireguard.android.activity.BaseActivity.setSelectedTunnel (BaseActivity.java:75) at com.wireguard.android.fragment.BaseFragment.setSelectedTunnel (BaseFragment.java:82) at com.wireguard.android.fragment.TunnelListFragment.lambda$null$4$TunnelListFragment (TunnelListFragment.java:307) at com.wireguard.android.fragment.TunnelListFragment$$Lambda$4.onClick (Unknown Source:6) at android.view.View.performClick (View.java:6274) at android.view.View$PerformClick.run (View.java:24729) at android.os.Handler.handleCallback (Handler.java:789) at android.os.Handler.dispatchMessage (Handler.java:98) at android.os.Looper.loop (Looper.java:169) at android.app.ActivityThread.main (ActivityThread.java:6595) at java.lang.reflect.Method.invoke (Native Method) at com.android.internal.os.Zygote$MethodAndArgsCaller.run (Zygote.java:240) at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:767) But this is probably the wrong way to fix it and instead moveToState needs to be reimagined.
* style: coloring the navbar looks a bit strange when rotatedJason A. Donenfeld2018-07-251-9/+0
|
* TunnelEditorFragment: plug memory leak on listenersJason A. Donenfeld2018-07-251-0/+14
| | | | | | | | Apparently these don't get GC'd unless they're removed explicitly, because there's a global singleton registry of them. So, introduce a little registry of our own. Reported-by: Samuel Holland <samuel@sholland.org>
* qrcode: minor adjustmentsJason A. Donenfeld2018-07-254-16/+18
|
* Added QR code scanner as tunnel import methodEric Kuck2018-07-259-21/+231
|
* tools: Bump wireguard submoduleHarsh Shandilya2018-07-241-0/+0
| | | | | | This force pushing is going to be the death of me Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* tools: support ancient NDKsJason A. Donenfeld2018-07-244-4/+97
|
* tools: let wg(8) play with userspace implementationJason A. Donenfeld2018-07-244-10/+41
|
* config: Remove Locale based string formatHarsh Shandilya2018-07-242-8/+4
| | | | | | | | | | | | The configurations are supposed to be in a very specific format which is not user-facing and hence doesn't have to be adjusted for locale avoiding both the redundancy as well as potential breakages in the configuration file format from different locales. Fixes: 71c67aa24ae2 ("config: Minor cleanup") Reported-by: Samuel Holland <samuel@sholland.org> Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* tools: pass in debug package nameJason A. Donenfeld2018-07-244-4/+15
|
* Make placeholder prettyJason A. Donenfeld2018-07-234-6/+22
|
* Show help text when no tunnels are importedHarsh Shandilya2018-07-222-0/+15
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* FloatingActionsMenuRecyclerViewScrollListener: add final modifiersJason A. Donenfeld2018-07-221-1/+1
|
* RTL layout fixesHarsh Shandilya2018-07-225-4/+7
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* treewide: Optimize importsHarsh Shandilya2018-07-224-10/+0
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* fab: move in direct ratio to scrollJason A. Donenfeld2018-07-206-68/+53
|
* Version bumpJason A. Donenfeld2018-07-201-2/+2
|
* UI: use background color for navbar in dark modeHarsh Shandilya2018-07-201-0/+9
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* fab: make icons always whiteJason A. Donenfeld2018-07-206-39/+6
| | | | | | With the new shade of blue, perhaps this simply looks better. I don't like hard coding the color away from the theme, however.
* theme: use less disgusting colorJason A. Donenfeld2018-07-201-1/+1
| | | | | | Harsh's "users" were offended by the dark theme. So, we change the accent to that used by gboard's dark theme, which should be pretty uncontroversial.
* TunnelListFragment: Allocate interpolators outside scroll listenerHarsh Shandilya2018-07-201-2/+5
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>