Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-15 | Adjust code generation to match existing style | Samuel Holland | |
2018-12-15 | Clean up error messages | Samuel Holland | |
2018-12-15 | Provide semantically meaningful exceptions for translation | Samuel Holland | |
2018-12-15 | Bump the go runtime | Jason A. Donenfeld | |
2018-12-11 | Fix locale usage | Jason A. Donenfeld | |
2018-12-11 | Version bump | Jason A. Donenfeld | |
2018-12-11 | Squelch xml warning | Jason A. Donenfeld | |
2018-12-11 | Throw illegalargumentexception instead of nullpointerexception for builder ↵ | Jason A. Donenfeld | |
errors | |||
2018-12-11 | Unwrap the correct exception | Zachary Wander | |
2018-12-11 | Order strings | Jason A. Donenfeld | |
2018-12-11 | Localize exception messages | Zachary Wander | |
2018-12-11 | Lowercase endpoint in exception message | Jason A. Donenfeld | |
2018-12-10 | Do not allow for an empty port in endpoint | Jason A. Donenfeld | |
2018-12-10 | Export actual configuration for zips | Jason A. Donenfeld | |
Reported-by: John Greenwood <ijohnyyh@gmail.com> | |||
2018-12-10 | Add upstream go patch for lstat | Jason A. Donenfeld | |
Android O disallows lstat, and this upstream golang patch hasn't made it into a release yet. | |||
2018-12-10 | Bump go submodule | Jason A. Donenfeld | |
Fixes a problem with inotify_init being blocked by Android 9's seccomp policy. | |||
2018-12-09 | Use English lower casing | Jason A. Donenfeld | |
In Turkish, I becomes ı instead of i, which is a problem when matching things like "AllowedIPs". | |||
2018-12-08 | Version bump | Jason A. Donenfeld | |
I feel a bit uneasy releasing this, because who knows how much Samuel has tested his model rewrite, but nothing looks obviously horrible, so let's give it a shot. We're still "alpha", after all. | |||
2018-12-08 | Do not close zip input stream | Jason A. Donenfeld | |
2018-12-08 | Downgrade support library | Jason A. Donenfeld | |
We're not ready for the newer one yet, but we will be soon if all goes well. | |||
2018-12-08 | Remove ACRA | Jason A. Donenfeld | |
This was requested by developers who never wound up using it. It's not really worth keeping around, since the play console gives us most of what we need anyway. | |||
2018-12-08 | Remodel the Model | Samuel Holland | |
- The configuration and crypto model is now entirely independent of Android classes other than Nullable and TextUtils. - Model classes are immutable and use builders that enforce the appropriate optional/required attributes. - The Android config proxies (for Parcelable and databinding) are moved to the Android side of the codebase, and are designed to be safe for two-way databinding. This allows proper observability in TunnelDetailFragment. - Various robustness fixes and documentation updates to helper classes. | |||
2018-11-11 | Auto-format the source directories | Samuel Holland | |
Blame Jason for writing Java in vim. | |||
2018-11-11 | tools: wg-quick: bump | Jason A. Donenfeld | |
2018-11-06 | libwg-go: do not mix C style and Go style variable names | Jason A. Donenfeld | |
2018-11-03 | libwg-go: don't forget to include jni calls | Jason A. Donenfeld | |
2018-11-01 | Bump version so that we have correct submodule hashes | Jason A. Donenfeld | |
2018-10-30 | tools: update submodules | Jason A. Donenfeld | |
2018-10-11 | Never use system go | Jason A. Donenfeld | |
Telling people to patch their system go is bonkers. | |||
2018-10-09 | Update to go modules | Jason A. Donenfeld | |
2018-10-01 | Fix small error | Jason A. Donenfeld | |
2018-10-01 | Version bump | Jason A. Donenfeld | |
2018-10-01 | Peer: prefer v4 endpoints to v6 | Jason A. Donenfeld | |
This works around DNS64 XLAT changeovers. | |||
2018-10-01 | strings: properly mark positionals | Jason A. Donenfeld | |
2018-10-01 | Update gradle and external deps | Jason A. Donenfeld | |
2018-09-06 | global: update copyright headers | Jason A. Donenfeld | |
2018-08-26 | Version bump | Jason A. Donenfeld | |
2018-08-26 | tools: bump submodules | Jason A. Donenfeld | |
2018-08-26 | libwg-go: update golang version | Jason A. Donenfeld | |
2018-08-26 | QuickTileService: Don't use deprecated getDrawable method | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-08-26 | Target SDK 28 | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-08-26 | FragmentUtils: Make final and prevent instantiation | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-08-26 | Sort dependencies | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-08-26 | Supress false-positive DefaultLocale warnings | Harsh Shandilya | |
We decided in 402472237e8f that it's a bad idea for our use-case Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-08-26 | Extract error messages to string resources | Harsh Shandilya | |
Useful for validation errors and localisation later on Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-08-26 | MonkeyedSnackbar: remove | Jason A. Donenfeld | |
This didn't actually help with much and caused problems. | |||
2018-08-16 | config: fix wrong Peer endpoint string format | Zhao Gang | |
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-31 | GoBackend: make socket IPC optional | Jason A. Donenfeld | |
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-30 | Style: use attrs from appcompat rather than from frameworks | Jason A. Donenfeld | |
This isn't possible for colorForeground, colorBackground, textAppearanceMedium, but at least it's useful for some things here. | |||
2018-07-30 | FloatingActionsMenu: don't wrap context on asus api 21 | Jason A. Donenfeld | |
Works around frameworks bug. |