summaryrefslogtreecommitdiffstats
path: root/logic/auth
Commit message (Collapse)AuthorAgeLines
* First sweep moving URLs to a constants fileSky2013-12-13-1/+2
|
* Fix offline mode bugsPetr Mrázek2013-12-08-1/+7
|
* Finish preliminary offline supportPetr Mrázek2013-12-08-124/+130
| | | | | | | | | * ProgressProvider now has an abort() call * Abort button support added to the progress dialog * YggdrasilTask and MojangAccount adapted to support abort YggdrasilTask will time out after 10 seconds of no network activity, or when the user pushes the Play Offline button. In offline mode, all instance update tasks are skipped! This will need further work.
* Offline mode support, part 1Petr Mrázek2013-12-05-267/+213
| | | | | Refactor MojangAccount so it exposes a less generic interface and supports login. Hide the ugly details. Yggdrasil tasks are now only used from MojangAccount.
* Fix login and startup logging issuesPetr Mrázek2013-12-01-130/+322
| | | | | | | | Auth uses the refresh endpoint instead of validate. This means less password entering. Console will now only autoscroll when already scrolled all the way down. Better conformance with the Yggdrasil auth protocol (not complete yet, but Mojang launcher isn't complete either). Fix bug that prevented saving the account data (uninitialized variable). Accounts can now trigger account list saving, this is used for the refresh endpoint.
* Verify access tokens before launching MinecraftAndrew2013-11-28-65/+164
| | | | Kind of an important thing to do... Heh...
* Fix for latest snapshot ``changes''Petr Mrázek2013-11-27-0/+50
|
* Merge branch 'feature_yggdrasil' into developPetr Mrázek2013-11-24-1/+10
| | | | | | | | Conflicts: gui/MainWindow.cpp logic/OneSixInstance.h Fix missing session id functionality for legacy and old onesix.
* Nuke and pave the old login systemAndrew2013-11-20-5/+52
| | | | Also, account list now saves profile lists.
* Implement saving account list to fileAndrew2013-11-19-0/+30
| | | | | Currently it only saves when accounts are added or removed. We'll have to fix this, but we need signals for when account objects change first.
* Implement loading accounts from list.Andrew2013-11-18-3/+17
|
* Implement account list and account list dialogAndrew2013-11-18-9/+27
|
* Implement auth task's response processing.Andrew2013-11-14-8/+256
| | | | The authenticate task can now successfully log a user in.
* Add test authentication task.Andrew2013-11-14-7/+132
| | | | It doesn't actually do anything with the server's reply yet.
* Add abstract base class for Yggdrasil tasks.Andrew2013-11-13-1/+295
|
* Added data structures for Mojang Account.Andrew2013-11-11-0/+125