aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-11-06libwg-go: do not mix C style and Go style variable namesJason A. Donenfeld2-8/+8
2018-11-03libwg-go: don't forget to include jni callsJason A. Donenfeld3-3/+3
2018-11-01Bump version so that we have correct submodule hashesJason A. Donenfeld2-2/+2
2018-10-30tools: update submodulesJason A. Donenfeld3-4/+6
2018-10-11Never use system goJason A. Donenfeld1-13/+6
Telling people to patch their system go is bonkers.
2018-10-09Update to go modulesJason A. Donenfeld8-13/+28
2018-10-01Fix small errorJason A. Donenfeld2-2/+3
2018-10-01Version bumpJason A. Donenfeld1-2/+2
2018-10-01Peer: prefer v4 endpoints to v6Jason A. Donenfeld2-33/+79
This works around DNS64 XLAT changeovers.
2018-10-01strings: properly mark positionalsJason A. Donenfeld1-2/+2
2018-10-01Update gradle and external depsJason A. Donenfeld7-4/+21
2018-09-06global: update copyright headersJason A. Donenfeld68-112/+68
2018-08-26Version bumpJason A. Donenfeld1-2/+2
2018-08-26tools: bump submodulesJason A. Donenfeld2-0/+0
2018-08-26libwg-go: update golang versionJason A. Donenfeld2-48/+94
2018-08-26QuickTileService: Don't use deprecated getDrawable methodHarsh Shandilya1-2/+1
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-08-26Target SDK 28Harsh Shandilya3-7/+4
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-08-26FragmentUtils: Make final and prevent instantiationHarsh Shandilya1-1/+5
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-08-26Sort dependenciesHarsh Shandilya1-3/+2
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-08-26Supress false-positive DefaultLocale warningsHarsh Shandilya2-0/+6
We decided in 402472237e8f that it's a bad idea for our use-case Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-08-26Extract error messages to string resourcesHarsh Shandilya7-15/+47
Useful for validation errors and localisation later on Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-08-26MonkeyedSnackbar: removeJason A. Donenfeld7-53/+10
This didn't actually help with much and caused problems.
2018-08-16config: fix wrong Peer endpoint string formatZhao Gang1-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>
2018-07-31GoBackend: make socket IPC optionalJason A. Donenfeld1-19/+21
This fixes the multi-user case, which cannot be determined at compile time and probably isn't reasonable to consider anyway in a global manner.
2018-07-30Style: use attrs from appcompat rather than from frameworksJason A. Donenfeld3-5/+5
This isn't possible for colorForeground, colorBackground, textAppearanceMedium, but at least it's useful for some things here.
2018-07-30FloatingActionsMenu: don't wrap context on asus api 21Jason A. Donenfeld1-2/+6
Works around frameworks bug.
2018-07-30Show different color for multiselectionJason A. Donenfeld5-27/+80
2018-07-30Replace hard-coded colors with theme colorsJason A. Donenfeld6-23/+17
2018-07-30Remove placeholder color and directly use alphaHarsh Shandilya3-7/+1
Why wasn't this done like this in the first place? Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-07-29MonkeyedSnackbar: fix typosJason A. Donenfeld1-3/+6
2018-07-29Version bumpJason A. Donenfeld1-2/+2
2018-07-29ConfigNamingDialog: use name input filterJason A. Donenfeld1-2/+9
2018-07-29MonkeyedSnackbar: work around Harsh's broken phoneJason A. Donenfeld7-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?
2018-07-29MSF: make it more obvious what needs to be doneJason A. Donenfeld2-4/+9
2018-07-29FloatingActionButtonBehavior: animate transitionsJason A. Donenfeld1-4/+32
2018-07-29Roll back to API 27 for nowJason A. Donenfeld2-3/+6
There's no source available for API 28, which is a pain. But this commit should be reverted whenever source is released.
2018-07-29Target API 28Jason A. Donenfeld3-13/+13
2018-07-29TunnelListFragment: show selected tunnelJason A. Donenfeld1-5/+34
2018-07-29TunnelListFragment: fix multiselection on rotationJason A. Donenfeld1-1/+25
2018-07-29FloatingActionButonBehavior: set translation back to 0 when snackbar diesJason A. Donenfeld1-0/+7
2018-07-29MainActivity: only show two column on tabletsJason A. Donenfeld1-0/+0
2018-07-28MainActivity: Fix fragment selection logicSamuel Holland4-109/+104
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-07-28Application: refuse to run on old androidJason A. Donenfeld2-0/+13
2018-07-28QuickTileService: fix bug the wrong wayJason A. Donenfeld1-0/+14
2018-07-27config: show more informative error message on wrong keyJason A. Donenfeld4-1/+6
2018-07-26Set ACRA install sourceJason A. Donenfeld1-8/+15
2018-07-26Version bumpJason A. Donenfeld1-2/+2
2018-07-26TunnelDetailFragment now restores state correctly after process deathEric Kuck7-34/+57
2018-07-26Application: use proper completablefuture for backendJason A. Donenfeld5-52/+24
2018-07-26Wire up ACRAJason A. Donenfeld2-0/+69