Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-15 | Login and Logout progressbars advance correctly. | Parménides GV | |
Next step: prettify. | |||
2013-11-15 | ProgressBar xml is loaded correctly. | Parménides GV | |
2013-11-15 | ProviderAPI broadcasts progress for log in process | Parménides GV | |
Login progress bar advances according to the srp stages. | |||
2013-11-15 | Dashboard progressbar lives below the status line. | Parménides GV | |
I've renamed configuration wizard progressbar, because both had the same name and that provoked a conflict. | |||
2013-11-15 | Added a progressbar to ConfigurationWizard. | Parménides GV | |
It resizes the provider list, pushing it down to show the progressbar up, and back to the original layout after the operation. | |||
2013-11-15 | Authenticated status remembered after exit. | Parménides GV | |
If the user presses the back button and returns to leap_android, the app will show login or logout button remembering if s/he was authenticated or not. This fixes bug #3467. | |||
2013-11-15 | Merge branch 'hotfix/broken-package-names' into develop | Sean Leonard | |
2013-11-15 | fixed broken package names in bcd9589 | cyBerta | |
2013-11-15 | Merge branch 'feature/disconnect-notification-icon' into develop | Sean Leonard | |
2013-11-15 | Merge branch 'bug/srp-b-validation' into develop | Sean Leonard | |
2013-11-15 | Merge branch 'bug/secure-random-vulnerability' into develop | Sean Leonard | |
2013-11-15 | Add package declaration and attribution source to PRNGFixes.java | Sean Leonard | |
2013-11-15 | Authenticated status remembered after exit. | Parménides GV | |
If the user presses the back button and returns to leap_android, the app will show login or logout button remembering if s/he was authenticated or not. This fixes bug #3467. | |||
2013-11-14 | shows the broken key symbol on specific states, not on messages from R.string | cyBerta | |
2013-11-14 | Removed an spurious comment. | Parménides GV | |
2013-11-14 | Check B % N != 0 in SRP algorithm. | Parménides GV | |
2013-11-14 | Sometimes /dev/urandom is not writable. | Parménides GV | |
Copied again from http://android-developers.blogspot.de/2013/08/some-securerandom-thoughts.html | |||
2013-11-14 | Fixed SecureRandom PRNG problem. | Parménides GV | |
Solution copied from http://android-developers.blogspot.de/2013/08/some-securerandom-thoughts.html | |||
2013-11-14 | status message string from resource, clearer status message for 'not ↵ | cyBerta | |
running', bugfix for bug #4477 | |||
2013-11-13 | Fixed a typo in the rebase. | Parménides GV | |
2013-11-13 | AlertDialog for failed downloads. | Parménides GV | |
The dialog shows only an "OK" button to dismiss it, and the reason why the download failed. Right now, this dialog appears if a download is not successful. If it's too intrusive, I can remove some cases. Let's try how it feels. | |||
2013-11-13 | Renamed certificate handling methods. | Parménides GV | |
I still let one method to bypass hostname verifier, otherwise dev.bm will not work. I've reduced downloading functions to 3: download without CA, download with commercial CA and download with provider CA. I only download CA cert once, when the user selects the corresponding provider. Each time a user switch provider, the cert is downloaded (along with other json files). | |||
2013-11-13 | Merge branch 'bug/vpn-reconnect-sometimes-hangs' into develop | Sean Leonard | |
2013-11-09 | bitmaskclient instead of leapclient in package path | cyBerta | |
2013-11-09 | No new routes if openvpn is already running. | Parménides GV | |
We cannot add routes to an existing openvpn session because it makes openvpn reconnect. | |||
2013-11-07 | Logbuffer copied to Logcat. | Parménides GV | |
2013-11-07 | Special debug log: "OpenVPN log" tag | Parménides GV | |
The log shows all state commands, and notifies when bytecount values have not changed more than 3 times in a row. | |||
2013-11-05 | Command log to debug reconnects. | Parménides GV | |
The content of this commit should be removed from the final fix. | |||
2013-11-05 | debug logs removed | cyBerta | |
2013-11-05 | broken key icon added + icon is shown on 'not running' notification | cyBerta | |
2013-10-10 | Refactored leapclient to bitmaskclient. | Parménides GV | |
I do not change the company (se.leap). All references within strings.xml point to "bitmask" instead of to "leap". | |||
2013-10-04 | About button from CW does not show new provider. | Parménides GV | |
2013-10-04 | ConfigurationWizard uses action instead of button. | Parménides GV | |
New provider button has been converted to an action item, shown at the bottom of the screen. | |||
2013-10-03 | Login dialog requires username. | Parménides GV | |
I've also changed the way we notify that the password should have 8 characters at least, to make it consistent to the way we notify username is required. | |||
2013-10-03 | Fixed M2 and M1 constants values. | Parménides GV | |
Logging in, it was returning a "Bad response from server" due to the malinterpretation of the received JSON. It was looking for a field named "m2", but it was "M2". | |||
2013-09-30 | Fixed typo in EIP.certificate | Parménides GV | |
2013-09-30 | Erroneous CA cert download correctly handled. | Parménides GV | |
If there is an error while downloading CA cert on downloadJsonFiles, false is returned and progress dialog is dismissed. | |||
2013-09-30 | Moved all constants from ConfigHelper. | Parménides GV | |
They have been relocated to the corresponding classes. | |||
2013-09-30 | Moved result constants to ProviderAPI. | Parménides GV | |
2013-09-26 | Merge branch 'bug/inconsistent-cookie-management' into develop | Sean Leonard | |
2013-09-26 | Replaced Apache HTTP client with HttpURLConnection | Parménides GV | |
I do not manually manage cookies anymore, letting HttpURLConnection manage them via default CookieHandler (using CookiePolicy.ACCEPT_ORIGINAL_SERVER). | |||
2013-09-26 | Apache HTTP to Android HttpsURLConnection started. | Parménides GV | |
SRP parameter A tries to be sent via HttpsURLConnection. Right now, we have a problem with certificates because I'm not using provider CA cert to get the response. I'm going to merge the branch with better method names to download response using already existing code. | |||
2013-09-26 | Commented all manual cookie management. | Parménides GV | |
I send session_id cookie in the request for 1/cert, getting it from LeapHttpClient directly. | |||
2013-09-25 | Removed cookie to logout chain. | Parménides GV | |
2013-09-25 | Renamed certificate handling methods. | Parménides GV | |
I still let one method to bypass hostname verifier, otherwise dev.bm will not work. I've reduced downloading functions to 3: download without CA, download with commercial CA and download with provider CA. I only download CA cert once, when the user selects the corresponding provider. Each time a user switch provider, the cert is downloaded (along with other json files). | |||
2013-08-15 | Merge branch 'hotfix/danger_on-is-true-for-assets-provider' into develop | Sean Leonard | |
2013-08-14 | Assets providers have danger_on "false". | Parménides GV | |
2013-08-13 | Use java.security classes to validate string certificates and keys from provider | Sean Leonard | |
2013-08-13 | Merge branch 'bug/eip-fragment-is-not-showed-after-switching-provider' into ↵ | Sean Leonard | |
develop | |||
2013-08-13 | Merge branch 'bug/provider-down-not-differentiated-from-certificate-error' ↵ | Sean Leonard | |
into develop |