aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* config: loosen parser to match realityJason A. Donenfeld2018-05-032-5/+9
| | | | Mid-line comments, mixed case.
* global: fix up copyrightsJason A. Donenfeld2018-05-0354-38/+72
|
* Keypair: Minimize the scope of warning suppressionSamuel Holland2018-05-021-1/+1
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* KeyEncoding: Address lints/warnings and match line lengthSamuel Holland2018-05-021-9/+12
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* global: Add or update copyright headers in Java codeSamuel Holland2018-05-0245-1/+224
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* global: Some more lint cleanupHarsh Shandilya2018-05-022-31/+28
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* drawable: add adaptive iconJason A. Donenfeld2018-05-024-0/+49
|
* libwg-go: avoid phony target and update goJason A. Donenfeld2018-05-022-9/+16
|
* wg-build: Update gradle build filesHarsh Shandilya2018-05-023-31/+43
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* libwg-go: Ignore go{path,root}Harsh Shandilya2018-05-021-0/+2
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* project: Import select Android Studio configuration filesSamuel Holland2018-05-018-1/+1098
| | | | | | | Having a consistent set of code style and inspection rules makes it easier for contributors to match the existing code. Signed-off-by: Samuel Holland <samuel@sholland.org>
* libwg-go: do not deadlock on CloseJason A. Donenfeld2018-05-011-0/+0
|
* Version bumpJason A. Donenfeld2018-04-301-2/+2
|
* ZipExporterPreference: account for directory already existingJason A. Donenfeld2018-04-301-1/+1
|
* global: Clean up JavaSamuel Holland2018-04-3013-215/+237
| | | | | | Address Java and Android lints. Signed-off-by: Samuel Holland <samuel@sholland.org>
* global: Clean up XMLSamuel Holland2018-04-303-9/+18
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* global: Automatic code formattingSamuel Holland2018-04-3022-919/+893
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* app: Sort dependenciesSamuel Holland2018-04-301-2/+2
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* project: Update gradle filesSamuel Holland2018-04-302-3/+2
| | | | Signed-off-by: Samuel Holland <samuel@sholland.org>
* libwg-go: use system Go when possibleJason A. Donenfeld2018-04-301-7/+17
| | | | | We're still maybe curlzipping and using a binary distribution of Go, but at least this is only the case on machines that don't have go.
* Tunnel importer: stricter file filtersJason A. Donenfeld2018-04-301-2/+8
|
* proguard: enableJason A. Donenfeld2018-04-302-1/+2
|
* Preferences: use v14 material styleJason A. Donenfeld2018-04-302-2/+2
|
* ZipExporterPreference: requireNonNull is redundantJason A. Donenfeld2018-04-301-2/+2
|
* wg: Collapse fab when pressing back before exitingHarsh Shandilya2018-04-302-2/+19
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* SettingsActivity: Migrate permissions check to AppCompatHarsh Shandilya2018-04-301-20/+11
| | | | | | Pretty straightforward, I was clearly overthinking this. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* ZipExporterPreference: Correctly get preference activityHarsh Shandilya2018-04-301-2/+14
| | | | | | | | In AppCompat based preferences, this#getContext returns an object of android.view.ContextThemeWrapper class from where we can safely extract a reference to our parent activity. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* TunnelListFragment: Use Collections methods in place of ArraysHarsh Shandilya2018-04-301-2/+3
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* wg: Break out crossport dependencyHarsh Shandilya2018-04-308-20/+12
| | | | | | | Replace all crossport uses with upstream design support library components. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* wg-build: Upgrade databinding library to 3.1.2Harsh Shandilya2018-04-301-1/+1
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* SettingsActivity: Gracefully exit when options menu home is pressedHarsh Shandilya2018-04-301-0/+12
| | | | | | | | | | | | | | | | | | | | This is an activity, so it does not join the fragment backstack, but instead piles on top SettingsActivity | -> MainActivity | -> EditorFragment | -> DetailFragment | -> ListFragment Without overriding the back button in the toolbar, it simply kills the entire state on MainActivity and causes it to reload. By calling finish() on the activity when home is pressed from the item menu we can silently make it die without affecting any underlying states held by MainActivity and instead return to the exact fragment we launched settings from. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* SettingsActivity: Define preferenceTheme for AppCompatHarsh Shandilya2018-04-302-0/+4
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* wg: Migrate menu visibility to AppCompatHarsh Shandilya2018-04-304-12/+16
| | | | Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* wg: Add and use dummy AppThemeHarsh Shandilya2018-04-302-1/+2
| | | | | | | Preparation for when the app will start carrying colors reflecting the WireGuard brand. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Prefer AppCompat classesHarsh Shandilya2018-04-308-44/+44
| | | | | | | | | | AppCompat is the preferred way to go for any app targetting a wider range of SDKs. Replace all activities and fragments with their AppCompat variants and fixup method calls to use support variants. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* wireguard: Extract dependency versions to ext structHarsh Shandilya2018-04-301-8/+16
| | | | | | | | | Maintain common versions in a single place Also upgraded the support library to 27.1.1 and databinding library to 3.1.1. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* TunnelDetailFragment: rewrite and simplifyJason A. Donenfeld2018-04-301-22/+10
|
* TunnelEditorFragment: rewrite and simplifyJason A. Donenfeld2018-04-307-280/+200
| | | | | This should remove some null pointer dereferences and overall make the thing more robust.
* Allow exporting to zip fileJason A. Donenfeld2018-04-295-2/+180
|
* Allow importing from zip fileJason A. Donenfeld2018-04-283-46/+119
|
* config: Minor cleanupHarsh Shandilya2018-04-284-18/+23
| | | | | | | | | - Stop implicitly assuming locales in String.format - Cleanup method visibilities - Improve uses of Integer methods - Remove unused getToken method Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Quick cleanup across the boardHarsh Shandilya2018-04-288-19/+16
| | | | | | | | | | - Clean up imports - Adjust method visibility - Drop in NonNull annotations where needed - Prevent potential NPEs from nulled getActivity calls - Remove unused methods Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Version bumpJason A. Donenfeld2018-04-281-2/+2
|
* Use validation instead of two-way bindingJason A. Donenfeld2018-04-2811-147/+382
| | | | | | | | | | | | This is insane, but it appears to be working. We essentially store things in a separate class for editing, and then commit it back at a given time. This business with onViewStateRestored in both TunnelEditorFragment and in TunnelDetailFragment is buggy and likely wrong. In general TunnelEditorFragment should probably be rewritten. The relationship with the changed name is not clear.
* Do not do DNS lookups for IPsJason A. Donenfeld2018-04-274-14/+29
| | | | | This involves reflection, which is a bummer, but it's better than doing unnecessary DNS lookups.
* Add build instructionsJason A. Donenfeld2018-04-271-1/+11
|
* Throw IllegalArgumentExceptions when arguments are badJason A. Donenfeld2018-04-274-37/+35
| | | | | | | This will make the two way data binding crash more, but it will improve the robustness of the config file parser, which deals with exceptions gracefully, and when we move to one way data binding, it will help with that too.
* Latest go changesJason A. Donenfeld2018-04-272-2/+2
|
* WgQuickBackend: always create configuration fileJason A. Donenfeld2018-04-261-10/+5
| | | | It might be removed on an update.
* Manifest: disable always-on VPNJason A. Donenfeld2018-04-261-0/+2
| | | | | We don't actually comprehend how this works yet, so disable it. But we'll need to add support for this at some point.