summaryrefslogtreecommitdiffhomepage
path: root/app/src/main/res
AgeCommit message (Collapse)Author
2018-01-08global: Fix or suppress most lints/warningsSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-08Fragment/Tile: Make success/error messages translatableSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-09layout: never use suggestionsJason A. Donenfeld
IP addresses and key material could be potentially sensitive. We also don't want any interactions with the suggestive text APIs. So, we mark it as both a visible password and we turn off suggestions. This will fix the length limit, too, in Android 8.
2018-01-08QuickTileService: show toast for longer and use right messagesJason A. Donenfeld
2018-01-08RootShell: multiplex commandsJason A. Donenfeld
2018-01-08Handle tunnel state change errors appropriatelySamuel Holland
This class should probably be renamed and moved, but I don't know to what or where. Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-08project: Global cleanupSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-08ToolsInstaller: Extract to its own classesSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-07Remove primary configuration preferenceSamuel Holland
It is no longer used. Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-07Tunnel: Remove UNKNOWN stateSamuel Holland
It's never used. Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06Keyed...: Rename all the thingsSamuel Holland
Hooray for diamond interface inheritance. Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06project: Minor cleanupsSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06TunnelDetailFragment: Allow copying peer public keysSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06TunnelDetailFragment: Remove state text and last changeSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06Convert the list of tunnels to a KeyedObservableListSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06Serviceless rewrite, part 1Samuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06Rename package widgets -> widgetSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06Rename package bindings -> databindingSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2017-12-19SettingsActivity: allow for installing command line toolsJason A. Donenfeld
2017-12-15tools: build required tools with apkJason A. Donenfeld
2017-11-30VpnService: require root accessJason A. Donenfeld
2017-11-29NotSupportedActivity: fix font sizeJason A. Donenfeld
2017-11-28ConfigListFragment: Use correct icon for FABSamuel Holland
2017-11-28ConfigListFragment: Use a floating action menuSamuel Holland
2017-11-28res/drawable: Fix icon sizesSamuel Holland
2017-11-28EditFragment: do not autocomplete or capitalize ifnamesJason A. Donenfeld
2017-11-28Open: better iconJason A. Donenfeld
2017-11-27NotSupported: Better sorry textJason A. Donenfeld
2017-11-27ConfigDetailFragment: wire up toggle switchJason A. Donenfeld
Finally no gross colors.
2017-11-27NotSupported: check if the module existsJason A. Donenfeld
2017-11-27Settings: show quick tile config if no primary is definedJason A. Donenfeld
This seems like a horrific set of hacks.
2017-11-27QuickTileService: show app if no profiles existJason A. Donenfeld
2017-11-25ConfigList: A better toggle switchSamuel Holland
2017-11-24ConfigList: Poor man's switchSamuel Holland
2017-11-24VpnService: Move it to a backends packageSamuel Holland
It should be split into two pieces: configuration file management (loading/saving/renaming/deleting) and calling into wg-quick via RootShell. The configuration file management part should then go back into the main package. This is in preparation for adding additional backends based on wg(8) and wireguard-go.
2017-11-08ConfigActivity: Add import menu itemSamuel Holland
2017-11-08Bindings: Merge bugfixes and updatesSamuel Holland
2017-11-07Bindings: Move to a separate packageSamuel Holland
These are really app-independent reusable classes. Moving them to a separate package helps avoid polluting the main app package, and makes them easier to upgrade.
2017-08-24ConfigListFragment: Prevent config names from wrappingSamuel Holland
2017-08-24ConfigActivity: Only use split layout on tablet-sized screensSamuel Holland
2017-08-24ConfigEditFragment: Copy public key on clickSamuel Holland
2017-08-24ConfigEditFragment: Mark the persistent keepalive as optionalSamuel Holland
2017-08-24ConfigEditFragment: Add a field for the optional pre-shared keySamuel Holland
2017-08-22Finish first pass of config editor fieldsSamuel Holland
2017-08-22Add an adapter for binding an ObservableList to a LinearLayoutSamuel Holland
EditTexts do not work in ListViews.
2017-08-22Use data binding to provide EditText input filtersSamuel Holland
2017-08-22ConfigAddActivity: Rename to AddActivitySamuel Holland
Not everything needs to start with Config
2017-08-17ConfigListFragment: Restore the non-FAB add menuSamuel Holland
2017-08-17QuickTileService: Implement and update from VpnServiceSamuel Holland
2017-08-17Convert to using the ObservableTreeMap and its adapterSamuel Holland