Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-10 | ToolsInstaller: safer state machine | Jason A. Donenfeld | |
2018-06-07 | Version bump | Jason A. Donenfeld | |
2018-06-07 | BaseActivity: style | Jason A. Donenfeld | |
2018-06-07 | BootShutdownReceiver: style | Jason A. Donenfeld | |
2018-06-07 | Backend: abstract version information | Jason A. Donenfeld | |
2018-06-07 | Give Samuel heart attack by removing Dagger | Jason A. Donenfeld | |
2018-06-07 | VersionPreference: account for checking state and move away from tools installer | Jason A. Donenfeld | |
2018-06-06 | FloatingActionMenu: 5.1 requires explicit text color | Jason A. Donenfeld | |
2018-06-06 | MainActivity: Fix style | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-06 | ToolsInstallerPreference: do not check for magisk on main thread | Jason A. Donenfeld | |
2018-06-05 | build: Allow building release artifacts in-tree | Harsh 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-05 | MainActivity: Silence useless warning | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-05 | Version bump | Jason A. Donenfeld | |
2018-06-05 | FloatingActionMenu: use appcompat theme | Jason A. Donenfeld | |
2018-06-05 | MainActivity: collapse action menu on toolbar touch | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-05 | ToolsInstaller: allow installing as Magisk module | Jason A. Donenfeld | |
2018-06-05 | libwg-go: better error when using unpatched Go | Jason A. Donenfeld | |
2018-06-05 | ActionBar: show single menu item as toolicon | Jason A. Donenfeld | |
2018-06-05 | TunnelListFragment: hide menu when going to settings | Jason A. Donenfeld | |
Really the menu should be hidden when clicking on the action bar, too. | |||
2018-06-05 | MainActivity: style | Jason A. Donenfeld | |
2018-06-05 | fab: properly get theme color | Jason A. Donenfeld | |
Harsh changed this before, but my original way is what the support library does internally. | |||
2018-06-05 | libwg-go: more efficient and safer string passing | Jason A. Donenfeld | |
It was unclear when the Go string was actually freed. | |||
2018-06-05 | fab: Remove useless override | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-05 | fab: Use themed context to set style | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-05 | DarkMode: move to shared preferences listener | Jason A. Donenfeld | |
2018-06-04 | MainActivity: style | Jason A. Donenfeld | |
2018-06-04 | FloatingActionsMenu: remove unused imports | Jason A. Donenfeld | |
2018-06-04 | BaseActivity: support android 5 and 6 when clearing drawable cache | Jason A. Donenfeld | |
2018-06-04 | LogExporterPreference: get all past processes | Jason A. Donenfeld | |
2018-06-04 | BaseActivity: invalidate icon cache on Android P | Jason A. Donenfeld | |
2018-06-04 | Bump version | Jason A. Donenfeld | |
2018-06-04 | app: disable proguard | Jason A. Donenfeld | |
It's mostly a hindrance to debugging. | |||
2018-06-04 | TunnelManager: disable dangerous intents for now | Jason 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-04 | TunnelManager: new intents | Jason A. Donenfeld | |
2018-06-03 | Preferences: don't use round icon | Jason A. Donenfeld | |
2018-06-02 | Preferences: Move version pref to top and add icon | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-02 | Backends: print versions somewhere in log | Jason A. Donenfeld | |
2018-06-02 | android: Cleanup classes | Harsh Shandilya | |
- Use final modifer wherever possible - Use try-with-resources for input/output streams Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-02 | crypto: KeyEncoding: Fix style | Harsh 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-02 | Topic: John does things differently | Jason A. Donenfeld | |
2018-06-02 | ExporterPreferences: disable control immediately | Jason A. Donenfeld | |
2018-06-02 | Preferences: add log exporter | Jason A. Donenfeld | |
2018-06-01 | libwg-go: fix style | Jason A. Donenfeld | |
2018-06-01 | Version bump | Jason A. Donenfeld | |
2018-06-01 | Topic: make reentrant | Jason A. Donenfeld | |
2018-06-01 | BaseActivity: flush themed icon cache on theme change | Jason 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-01 | Settings: add version | Jason A. Donenfeld | |
2018-06-01 | colors: final touches | Jason A. Donenfeld | |
2018-06-01 | ui: Use better list colors in night mode | Harsh Shandilya | |
Signed-off-by: Harsh Shandilya <harsh@prjkt.io> | |||
2018-06-01 | TunnelListFragment: Dejank action mode title | Harsh 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> |