summaryrefslogtreecommitdiffstats
path: root/gui/lwjglselectdialog.cpp
Commit message (Collapse)AuthorAgeLines
* Working 1.6 modding (currently only forge)Petr Mrázek2013-09-22-3/+3
|
* Forge version list implementation. Needs integration and testing.Petr Mrázek2013-09-16-7/+9
|
* Changed all strings displayed to end user to use qts localization systemStiepen222013-09-08-1/+1
|
* Move all the things (YES. Move them.)Petr Mrázek2013-08-17-1/+1
| | | | Also, implemented some basic modlist logic, to be wired up.
* Massive renaming in the backend folder, all around restructure in the same.Petr Mrázek2013-07-29-1/+1
|
* Implemented LWJGL version lists.Andrew2013-05-17-0/+68
The LWJGL list actually doesn't use tasks for loading. Instead, it takes advantage of the QNetworkAccessManager's asynchronous requests. This is a system that I may look to implement for other version lists and things such as the Minecraft version list and possibly even instance mod lists. Loading things this way means that code that wants to load a list can simply call the load list function, rather than having to get a task from the list and execute the task. Unfortunately, it also means we can't have task progress dialogs for loading lists, but it shouldn't really be too difficult to write one that works with this system. At some point in the future, I'll probably end up putting all the code for this method of loading lists into a base class and then update the other lists to support it.