summaryrefslogtreecommitdiffstats
path: root/gui
Commit message (Collapse)AuthorAgeLines
* Make news button go to *MultiMC* news.Petr Mrázek2013-08-25-1/+1
|
* Add cat icon for the cat button. Meow. >:3Petr Mrázek2013-08-25-1/+5
|
* Many improvementsPetr Mrázek2013-08-25-50/+357
| | | | | | | | | | | PermGen can be tweaked from the settings menu Groups are saved on change/exit Install target is no longer completely broken All the deplibs are now static Added notes dialog Fixed ini file format support (can save strings with newlines, tabs. UTF-8 is explicitly used!) Rename button now uses line breaks so it doesn't grow ever wider (Added a custom tool button subclass) There is now a CAT button. Meow.
* All kinds of incremental improvementsPetr Mrázek2013-08-25-115/+214
| | | | | | | | | Redone the instance action toolbar: * Removed all the dead actions * Change icon and Rename are now morphed into a header * Added button for opening the config folder Implemented support for loose files and folders as legacy jar mods Added texture pack support
* Legacy jar reassembly, base of proper custom jar supportPetr Mrázek2013-08-24-3/+3
|
* Contiguous selection and keyboard input for mod lists.Petr Mrázek2013-08-21-22/+165
| | | | | Tweak console to take up the sides. You can reorder mods from the keyboard.
* Disable drag mod reorderingPetr Mrázek2013-08-20-1/+1
|
* Sync, removal of webkit as a dependency, removal of the web windows.Petr Mrázek2013-08-20-220/+10
|
* Drag and Drop, mod management.Petr Mrázek2013-08-18-49/+161
|
* Move all the things (YES. Move them.)Petr Mrázek2013-08-17-54/+47
| | | | Also, implemented some basic modlist logic, to be wired up.
* OneSix instances now have a minecraft folder inside.Petr Mrázek2013-08-12-3/+38
| | | | | Also, the main instance view was expanded with helpful key events: F2 for rename, F5 for refresh, Enter for start instance, Delete for...
* Version filtering and general related code sanitization.Petr Mrázek2013-08-11-23/+19
| | | | | Version list dialog has alternating row background set. Nostalgia versions, based on OneSix.
* Implement icon picker, bring back raster icons.Petr Mrázek2013-08-11-204/+267
|
* Various task related improvements.Petr Mrázek2013-08-09-28/+30
| | | | | | | * Errors are reported back to task users via Failure signals. * Lwjgl doesn't download on each legacy instance start anymore. * Tasks were unified when it comes to success/failure. * Task dialogs don't get spawned after short tasks finish anymore.
* Get rid of QNAM (now subclassed and less needy). Basic LWJGL download and ↵Petr Mrázek2013-08-07-4/+55
| | | | extraction.
* More code cleanups!Petr Mrázek2013-08-04-3/+3
|
* Fix KDE includes problemPetr Mrázek2013-08-04-15/+4
|
* Download assets for 1.6 on application start (background task).Petr Mrázek2013-08-04-1/+9
|
* Errr... I forgot.Petr Mrázek2013-08-03-13/+12
|
* WTF, I don't even...Petr Mrázek2013-08-03-42/+25
|
* Massive renaming in the backend folder, all around restructure in the same.Petr Mrázek2013-07-29-72/+72
|
* Merge branch 'master' of https://github.com/TakSuyu/MultiMC5Petr Mrázek2013-07-28-64/+794
|\
| * Merge remote-tracking branch 'upstream/master'TakSuyu2013-07-27-2/+660
| |\ | | | | | | | | | | | | Conflicts: gui/mainwindow.cpp
| * | Renamed some files to support naming schemeTakSuyu2013-07-27-64/+794
| | | | | | | | | | | | | | | | | | changed modeditwindow -> legacymodeditdialog added modeditdialog mapped slots for modeditdialog
* | | Parsing the version files, part IVPetr Mrázek2013-07-28-40/+32
| |/ |/| | | | | Also, start of big refactors.
* | Finalize the instance settings dialog, add setting reset mechanismPetr Mrázek2013-07-16-94/+191
| |
* | Broke instance loading(?), also attempted to make Toolbar grayed out when no ↵Stiepen2013-07-14-9/+47
| | | | | | | | instance is selected. For debug purposes it is initially not grayed out
* | Added Per-Instance settingsStiepen2013-07-14-0/+523
| |
* | More work on the downloader and 1.6 instance creationPetr Mrázek2013-07-14-1/+1
|/
* implemented ModEditUI and mapped ModEditUI Buttons for implementationTakSuyu2013-07-06-6/+54
| | | | | enabled EditMods button on MainWindowUI added validation check for renaming instances
* Added dialog box and functionality to mainwindow delete button.TakSuyu2013-07-04-1/+11
|
* Add queued downloader, some super-minor UI tweaks in stuff that's not even ↵Petr Mrázek2013-06-30-19/+19
| | | | visible yet.
* Fix weird label line generation in the instance view.Petr Mrázek2013-06-23-2/+5
|
* Implement some bits and pieces, disable dead buttons.Petr Mrázek2013-06-23-12/+85
|
* Implemented LWJGL version lists.Andrew2013-05-17-0/+222
| | | | | | | | | | | | | | 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.
* Implement basic game updater.Andrew2013-05-08-43/+96
| | | | Resolves MMC-4: https://jira.forkk.net/browse/MMC-4
* Implemented version selection stuff.Andrew2013-05-06-1/+12
|
* Made the version list load in the background on startup.Andrew2013-05-06-18/+57
| | | | | Resolves JIRA issue MMC-11: https://jira.forkk.net/browse/MMC-11
* Allow users to filter out MCNostalgia and Snapshots from the version list.Andrew2013-05-06-4/+58
| | | | | Resolves JIRA issue MMC-9: https://jira.forkk.net/browse/MMC-9
* Implemented version list sorting.Andrew2013-05-03-2/+2
| | | | | Resolves MMC-8: https://jira.forkk.net/browse/MMC-8
* Removed old plugin system and implemented some version list stuff.Andrew2013-05-03-97/+33
|
* Implement instance creation.Andrew2013-04-22-1/+72
|
* Make the new instance dialog support instance types.Andrew2013-04-22-0/+152
|
* Merge branch 'master' of git://github.com/peterix/MultiMC5Andrew2013-04-22-0/+7
|\
| * Focus password text box if there's an account saved by default. Save settings!Petr Mrázek2013-04-08-0/+7
| |
* | Merge branch 'master' of git://github.com/peterix/MultiMC5Andrew2013-03-28-137/+482
|\| | | | | | | | | | | Conflicts: CMakeLists.txt gui/mainwindow.cpp
| * Use Keyring in the login dialogPetr Mrázek2013-03-26-17/+73
| |
| * Mystery meat layout hack to get things alignedPetr Mrázek2013-03-25-3/+2
| |
| * Add instance view up/down keyboard navigation, fix some layout glitches (not ↵Petr Mrázek2013-03-25-0/+2
| | | | | | | | all)
| * Fix settings dialog java tab layoutPetr Mrázek2013-03-24-21/+23
| |