summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
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.
2018-06-04TunnelManager: new intentsJason A. Donenfeld
2018-06-03Preferences: don't use round iconJason A. Donenfeld
2018-06-02Preferences: Move version pref to top and add iconHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-02Backends: print versions somewhere in logJason A. Donenfeld
2018-06-02android: Cleanup classesHarsh Shandilya
- Use final modifer wherever possible - Use try-with-resources for input/output streams Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-02crypto: KeyEncoding: Fix styleHarsh Shandilya
- Replace python style variable names with camel case - Don't declare multiple variables in the same line Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-02Topic: John does things differentlyJason A. Donenfeld
2018-06-02ExporterPreferences: disable control immediatelyJason A. Donenfeld
2018-06-02Preferences: add log exporterJason A. Donenfeld
2018-06-01libwg-go: fix styleJason A. Donenfeld
2018-06-01Version bumpJason A. Donenfeld
2018-06-01Topic: make reentrantJason A. Donenfeld
2018-06-01BaseActivity: flush themed icon cache on theme changeJason A. Donenfeld
The most terrible hack you have ever seen. The drawable cache isn't properly flushed when changing the theme -- a frameworks bug, evidently -- so we work around it by digging deep into the mud.
2018-06-01Settings: add versionJason A. Donenfeld
2018-06-01colors: final touchesJason A. Donenfeld
2018-06-01ui: Use better list colors in night modeHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-06-01TunnelListFragment: Dejank action mode titleHarsh Shandilya
When unselecting items, the toolbar briefly says '0 items selected' before it reverts back to the non-action mode toolbar which feels janky at best. To mitigate this, just set a blank title to the action mode toolbar when item count is 0, to facilitate the smoothness of the transition to non-action mode toolbar. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>