summaryrefslogtreecommitdiff
path: root/src/se/leap/bitmaskclient/Dashboard.java
AgeCommit message (Collapse)Author
2014-04-08Next step: compile jni sources correctly.Parménides GV
2014-04-02Eip switch turns off accordingly to log in state.Parménides GV
2014-04-02eip switch off && logged in != autostart eipParménides GV
2014-04-02After logging in, eip starts.Parménides GV
Now we need to start eip only if the eip switch is on.
2014-03-29Back button while setting up a provider worksParménides GV
It stops the process, you can restart it as usual, but if you press back again you quit the app because there is no chosen provider.
2014-03-12Login action bar button shown when applicable.Parménides GV
2014-03-01Explicit startService() for updating EIP definitionsSean Leonard
2014-02-28Merge branch 'feature/remove-shared-preferences-methods-from-ConfigHelper' ↵Sean Leonard
into develop Conflicts: src/se/leap/bitmaskclient/Dashboard.java
2014-02-07bugfix for #4664 and #4668 (login/logout messages)Sean Leonard
Conflicts: src/se/leap/bitmaskclient/ProviderAPI.java res/values/strings.xml (Re-add lines removed in 7297632a01d5fb606b901d8c54e190e28b95716e )
2014-02-04Deleted unused classes from ics-openvpn.Sean Leonard
This classes were an obvious choice, there may be more unused classes around there. Conflicts: src/se/leap/bitmaskclient/ProviderListFragment.java
2014-01-14No sharedprefs methods in ConfigHelper.Parménides GV
This means we obtain the SharedPreferences object each time we want to use it. This yields to longer code lines while reading and writing to them.
2013-12-21there's no about fragment anymorecyBerta
2013-12-21Merge branch 'bug/more-detailed-response-to-CW-errors' into developcyBerta
2013-12-20Merge branch 'feature/token-based-auth' into developcyBerta
Conflicts: src/se/leap/bitmaskclient/ConfigurationWizard.java src/se/leap/bitmaskclient/Dashboard.java src/se/leap/bitmaskclient/ProviderAPI.java src/se/leap/bitmaskclient/ProviderListFragment.java
2013-12-12About is now an Activity.Parménides GV
I've also removed some spaces from the text.
2013-12-10Rebased onto 0.2.3.Parménides GV
2013-12-10Rebased onto 0.2.2Parménides GV
2013-12-10Save my work until nowParménides GV
2013-12-10ProviderAPI broadcasts progress to CW.Parménides GV
Setting up a provider makes the progressbar move according to the number of files downloaded (1/3, 2/3, 3/3). Next step: recover from download errors individually. That means that if a download fails but the others went OK, the user will be prompted to retry that individual failing download.
2013-12-10Provider setup: One method downloads everything.Parménides GV
This method uses another 3 to download each file. Next step: broadcast progress and remove unnecessary methods.
2013-12-09Rebased onto 0.2.3Parménides GV
2013-12-09ProviderAPI broadcasts progress to CW.Parménides GV
Setting up a provider makes the progressbar move according to the number of files downloaded (1/3, 2/3, 3/3). Next step: recover from download errors individually. That means that if a download fails but the others went OK, the user will be prompted to retry that individual failing download.
2013-12-09Provider setup: One method downloads everything.Parménides GV
This method uses another 3 to download each file. Next step: broadcast progress and remove unnecessary methods.
2013-12-04logout simplified and logs removedcyBerta
2013-12-04Vpn profiles get updated after switching provider.Parménides GV
parsedEipSerial wasn't being reset after switching provider, so updating gateways thought there was no real update. After switching provider, we also remove all other vpn profiles.
2013-12-04switch provider part 1cyBerta
2013-12-03Merge branch ↵Sean Leonard
'bug/login-button-from-Provider-Details-does-not-always-trigger-login-dialog-#4647' into develop Signed-off-by: Sean Leonard <meanderingcode@aetherislands.net>
2013-12-03Login triggered if requested after provider switchParménides GV
Request code for switching provider was not being considered in onActivityResult.
2013-12-03NullPointer checks in logoutParménides GV
Check if eipStatus and mProgressBar are null in logout(), and if so fetch the objects with findViewById.
2013-11-19Successfully rebased onto 0.2.2Parménides GV
2013-11-19ProviderAPI broadcasts progress to CW.Parménides GV
Setting up a provider makes the progressbar move according to the number of files downloaded (1/3, 2/3, 3/3). Next step: recover from download errors individually. That means that if a download fails but the others went OK, the user will be prompted to retry that individual failing download.
2013-11-19Provider setup: One method downloads everything.Parménides GV
This method uses another 3 to download each file. Next step: broadcast progress and remove unnecessary methods.
2013-11-16Going back from providerdetails show all providersParménides GV
I missed a notifyDataSetChanged.
2013-11-15Dashboard asks for real VPN state.Parménides GV
Right now, the answer is always "disconnected", I think it's a problem in EIP.isRunning(). I've also added some new strings, trying to minimize the number of them scattered through litterals around the code.
2013-11-15Switching provider offers all providers from list.Parménides GV
This fixes bug #4004: With new progress bars branch, if user switches provider the list of providers is not complete.
2013-11-15ProviderDetail login works with new progressbar.Parménides GV
A nullpointer occurred, due to a progressbar view assigned when the screen did not showed it.
2013-11-15Only one progressbar in Dashboard.Parménides GV
I've removed @id/progress_bar from Dashboard, and for login and logout I'm using the one from the eip fragment.
2013-11-15Login and Logout progressbars advance correctly.Parménides GV
Next step: prettify.
2013-11-15ProgressBar xml is loaded correctly.Parménides GV
2013-11-15ProviderAPI broadcasts progress for log in processParménides GV
Login progress bar advances according to the srp stages.
2013-11-15Dashboard 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-15Authenticated 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-15Merge branch 'bug/secure-random-vulnerability' into developSean Leonard
2013-11-15Authenticated 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-14Fixed SecureRandom PRNG problem.Parménides GV
Solution copied from http://android-developers.blogspot.de/2013/08/some-securerandom-thoughts.html
2013-11-09bitmaskclient instead of leapclient in package pathcyBerta