aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix small errorJason A. Donenfeld2018-10-011-1/+2
|
* Peer: prefer v4 endpoints to v6Jason A. Donenfeld2018-10-012-33/+79
| | | | This works around DNS64 XLAT changeovers.
* global: update copyright headersJason A. Donenfeld2018-09-0663-107/+63
|
* QuickTileService: Don't use deprecated getDrawable methodHarsh Shandilya2018-08-261-2/+1
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Target SDK 28Harsh Shandilya2018-08-261-4/+1
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* FragmentUtils: Make final and prevent instantiationHarsh Shandilya2018-08-261-1/+5
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Supress false-positive DefaultLocale warningsHarsh Shandilya2018-08-262-0/+6
| | | | | | We decided in 402472237e8f that it's a bad idea for our use-case Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Extract error messages to string resourcesHarsh Shandilya2018-08-266-15/+35
| | | | | | Useful for validation errors and localisation later on Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* MonkeyedSnackbar: removeJason A. Donenfeld2018-08-267-53/+10
| | | | This didn't actually help with much and caused problems.
* config: fix wrong Peer endpoint string formatZhao Gang2018-08-161-1/+4
| | | | | | | | | | | | | | | | | | | When a tunnel is running, saving the tunnel's config with an IPv6 address endpoint like [::1]:42 would result in the wrong format ::1:42. This patch fixes it. For endpoints with an IPv6 address(e.g. [::1]:42). Since the default endpoint InetSocketAddress is created unresolved, getEndpointString() returns "[::1]:42" (InetSocketAddress.getHostString() returns the literal hostname). After the endpoint is resolved, getEndpointString() returns "::1:42" (InetSocketAddress.getHostString() returns the IPv6 address without the square brackets). This inconsistent return values caused the above mentioned bug. With this patch, function getEndpointString would return the right format string whether the endpoint is resolved or not. Signed-off-by: Zhao Gang <gang.zhao.42@gmail.com>
* 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-302-20/+66
|
* MonkeyedSnackbar: fix typosJason A. Donenfeld2018-07-291-3/+6
|
* 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?
* FloatingActionButtonBehavior: animate transitionsJason A. Donenfeld2018-07-291-4/+32
|
* Roll back to API 27 for nowJason A. Donenfeld2018-07-291-1/+4
| | | | | 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-292-11/+11
|
* 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: Fix fragment selection logicSamuel Holland2018-07-282-107/+65
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* Application: refuse to run on old androidJason A. Donenfeld2018-07-281-0/+12
|
* 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
|
* 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-261-0/+66
|
* 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.
* 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.
* 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-252-5/+5
|
* Added QR code scanner as tunnel import methodEric Kuck2018-07-253-0/+155
|
* 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-241-2/+3
|
* FloatingActionsMenuRecyclerViewScrollListener: add final modifiersJason A. Donenfeld2018-07-221-1/+1
|
* 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-205-67/+52
|
* fab: make icons always whiteJason A. Donenfeld2018-07-202-34/+1
| | | | | | With the new shade of blue, perhaps this simply looks better. I don't like hard coding the color away from the theme, however.
* TunnelListFragment: Allocate interpolators outside scroll listenerHarsh Shandilya2018-07-201-2/+5
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* TunnelEditorFragment: fix null pointer dereferenceJason A. Donenfeld2018-07-191-2/+4
|
* QuickTileService: fix null pointer dereferenceJason A. Donenfeld2018-07-191-2/+4
|
* TunnelListFragment: setOnScrollListener is old, but we support API 21, so we have to use itJason A. Donenfeld2018-07-181-0/+1
|
* AppListDialogFragment: getArguments is null before onCreateJason A. Donenfeld2018-07-181-1/+8
|
* fab: use auto calculated fling thresholdJason A. Donenfeld2018-07-181-3/+8
|
* fab: make fab respond to recyclerview scroll eventsHarsh Shandilya2018-07-182-0/+58
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* fab: slide fab up when a snackbar showsHarsh Shandilya2018-07-181-0/+32
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* android: QuickTileService: Do not use slashed icon on Android PHarsh Shandilya2018-07-161-6/+11
| | | | | | | | Android P features circle masked QS tiles which make use of colors to denote STATE_ACTIVE/STATE_INACTIVE rather than a slash across the drawable as seen on Android Oreo. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* InetAddresses: unwrap reflection exceptionsJason A. Donenfeld2018-07-161-1/+1
|