summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2018-06-25global: Small cleanupsJason A. Donenfeld
2018-06-23android: Consolidate getPrefActivity into FragmentUtilsHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> [Samuel: Changed static to non-static import] Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-06-23QuickTileService: Remove useless overrideHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-23gradle: StyleHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-23treewide: Optimize importsHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-19config: Refactor IPCidr and use of InetAddressSamuel Holland
Use a canonically-named utility class to tack on methods to the existing InetAddress class. Rename IPCidr to InetNetwork so it better matches InetAddress and is more pronouceable :) While here, simplify the constructor and toString() functions, and properly implement hashCode().
2018-06-19util: Extract non-Android utility interfacesSamuel Holland
As part of a refactoring that will likely introduce more custom collection classes, move the non-Android-specific parts outside the com.wireguard.android package.
2018-06-19crypto: Slightly Java-ify the Curve25519 implementationSamuel Holland
2018-06-19app: Regularly scheduled gradle updatesSamuel Holland
2018-06-19idea: Disable an unwanted inspectionSamuel Holland
Android Studio isn't smart enough to realize that the public/private keys and the keypair are effectively the same thing. Just turn off the inspection because it's usually tripped by intentional things.
2018-06-17Application: make lock finalJason A. Donenfeld
2018-06-17application: style fixJason A. Donenfeld
2018-06-17Version bump for clat fixJason A. Donenfeld
2018-06-14Version bumpJason A. Donenfeld
2018-06-14global: supply backend asynchronouslyJason A. Donenfeld
We can't block for IO, so move everything to async workers or to callbacks.
2018-06-12Version bumpJason A. Donenfeld
2018-06-12Application: require rootshell to use wgquick backendJason A. Donenfeld
2018-06-10ToolsInstaller: safer state machineJason A. Donenfeld
2018-06-07Version bumpJason A. Donenfeld
2018-06-07BaseActivity: styleJason A. Donenfeld
2018-06-07BootShutdownReceiver: styleJason A. Donenfeld
2018-06-07Backend: abstract version informationJason A. Donenfeld
2018-06-07Give Samuel heart attack by removing DaggerJason A. Donenfeld
2018-06-07VersionPreference: account for checking state and move away from tools installerJason A. Donenfeld
2018-06-06FloatingActionMenu: 5.1 requires explicit text colorJason A. Donenfeld
2018-06-06MainActivity: Fix styleHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-06ToolsInstallerPreference: do not check for magisk on main threadJason A. Donenfeld
2018-06-05build: Allow building release artifacts in-treeHarsh Shandilya
This change avoids all need for changing any file under VCS to insert signing keys and configs for release builds. Example contents of keystore.properties ``` // Location of keystore, relative to module build.gradle, // in this case, of the app module storeFile=../wireguard.jks storePassword=b3ty0uc4nth4xxth1s keyAlias=wireguard keyPassword=4ndr01dsux ``` Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-05MainActivity: Silence useless warningHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-05Version bumpJason A. Donenfeld
2018-06-05FloatingActionMenu: use appcompat themeJason A. Donenfeld
2018-06-05MainActivity: collapse action menu on toolbar touchHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-05ToolsInstaller: allow installing as Magisk moduleJason A. Donenfeld
2018-06-05libwg-go: better error when using unpatched GoJason A. Donenfeld
2018-06-05ActionBar: show single menu item as tooliconJason A. Donenfeld
2018-06-05TunnelListFragment: hide menu when going to settingsJason A. Donenfeld
Really the menu should be hidden when clicking on the action bar, too.
2018-06-05MainActivity: styleJason A. Donenfeld
2018-06-05fab: properly get theme colorJason A. Donenfeld
Harsh changed this before, but my original way is what the support library does internally.
2018-06-05libwg-go: more efficient and safer string passingJason A. Donenfeld
It was unclear when the Go string was actually freed.
2018-06-05fab: Remove useless overrideHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-05fab: Use themed context to set styleHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-05DarkMode: move to shared preferences listenerJason A. Donenfeld
2018-06-04MainActivity: styleJason A. Donenfeld
2018-06-04FloatingActionsMenu: remove unused importsJason A. Donenfeld
2018-06-04BaseActivity: support android 5 and 6 when clearing drawable cacheJason A. Donenfeld
2018-06-04LogExporterPreference: get all past processesJason A. Donenfeld
2018-06-04BaseActivity: invalidate icon cache on Android PJason A. Donenfeld
2018-06-04Bump versionJason A. Donenfeld
2018-06-04app: disable proguardJason A. Donenfeld
It's mostly a hindrance to debugging.
2018-06-04TunnelManager: disable dangerous intents for nowJason A. Donenfeld
We need to think about how to allow this securely. It's not okay for all apps to be allowed to twiddle with VPN settings.