aboutsummaryrefslogtreecommitdiff
path: root/api/logic/minecraft
AgeCommit message (Collapse)Author
2017-10-29GH-2026 only run versions with FirstThreadOnMacOS trait on first threadPetr Mrázek
2017-10-28GH-2026 actually do the previous on macOS, not WindowsPetr Mrázek
2017-10-28GH-2026 start Minecraft on first thread on macOSPetr Mrázek
This should fix issues with the 1.13 snapshots
2017-10-28GH-2026 fix failing library test case for native librariesPetr Mrázek
2017-10-28GH-2026 fix native library downloadsPetr Mrázek
If a single library had both native and java jars, they would randomly get confused.
2017-10-08NOISSUE change behaviour of the +tweakers patch itemPetr Mrázek
Patch application will either add tweakers, or move them to the end if they are already present. This allows fixing up tweaker order in subsequent version patches.
2017-09-27NOISSUE use classparser for importing Legacy instances with undecided ↵Petr Mrázek
Minecraft versions
2017-09-27GH-1993 swap min/max memory settings when they are the wrong way aroundPetr Mrázek
2017-09-27GH-1997 fix off by one error in 8.3 path logicPetr Mrázek
2017-09-27GH-1997 try to fix Windows buildPetr Mrázek
Coding blind. Much !!FUN!!.
2017-09-27GH-1997 replace use of weird hacks with normal java argumentsPetr Mrázek
This affects classpath and java.library.path. The catch is that if the strings cannot be expressed in system codepage on Windows, it tries to use 8.3 paths.
2017-09-26NOISSUE implement LEgacy instance migrationPetr Mrázek
2017-09-25NOISSUE ignore the 'Example Mod' mod name, use filename insteadPetr Mrázek
2017-09-22NOISSUE make instance traits() constPetr Mrázek
2017-09-22NOISSUE remove some dead code from MinecraftInstance (moved elsewhere)Petr Mrázek
2017-09-20NOISSUE prefer to use '.minecraft' instead of 'minecraft' folderPetr Mrázek
2017-09-20NOISSUE more work on Legacy migrationPetr Mrázek
2017-09-17NOISSUE Add back Legacy for migration purposesPetr Mrázek
2017-09-10NOISSUE put back missing OneSix upgrade logicPetr Mrázek
2017-09-09NOISSUE merging of strategy into profile, onesix into minecraftPetr Mrázek
2017-09-09NOISSUE Remove Legacy supportPetr Mrázek
2017-09-09NOISSUE remove FTB integrationPetr Mrázek
2017-09-08NOISSUE add support for Flame packs with resource packsPetr Mrázek
And a bunch of undefined things we don't handle intentionally just yet...
2017-09-04NOISSUE refactor pack import (extraction and paths)Petr Mrázek
It now: * Doesn't extract until it knows the content format is good. * Extracts in a predictable location, not requiring to use a second path for the actual pack root.
2017-09-02NOISSUE handle error 201 in Auth codePetr Mrázek
This is something I ran into when one of my accounts stopped working. The auth token probably expired. This should now be handled as a normal auth error, not a network failure.
2017-08-28NOISSUE simplify ProblemProviderPetr Mrázek
2017-08-22NOISSUE implement more error handlingJoona
2017-08-22NOISSUE remove debug statementJoona
2017-08-22NOISSUE Add GPU vendor and driver versionJoona
2017-08-22CPU and GPU model on LinuxJoona
2017-08-22move env cleaning and clean before java testJoona
2017-08-07GH-1314 add UI for custom minecraft jar additionPetr Mrázek
Also changes the text of the jar mod addition button. It should be clearer what it does and hopefully will not confuse as many people.
2017-07-21GH-1929 do not allow non-current update task to affect the update processPetr Mrázek
Errors are handled by setting a flag and failing on the next call to next()
2017-07-07GH-1927 fix potential issue with FMLLibrariesTask succeeding twice.Petr Mrázek
2017-07-07GH-1927 Add more specific task status loggingPetr Mrázek
* Tasks are now described by class name and object name (or memory address). * Tasks starts are logged. * Aborted tasks are now treated just as the other cases.
2017-07-05NOISSUE rearrange global initializationPetr Mrázek
2017-06-26NOISSUE some safe refactors and changes of the task subsystemPetr Mrázek
Possibly also some bug fixes.
2017-05-31NOISSUE move some zip utility functions back to quazipPetr Mrázek
It's not entirely clean yet.
2017-05-29NOISSUE split wrapper commands into command and argsPetr Mrázek
This lets you use commands with parameters.
2017-05-22NOISSUE log native extraction failures also to game logPetr Mrázek
2017-05-21NOISSUE more compiler warning removalPetr Mrázek
2017-05-21NOISSUE get rid of some more compiler warningsPetr Mrázek
2017-05-21NOISSUE fix a bunch of compiler warningsPetr Mrázek
2017-05-21GH-1895 update LWJGL list during legacy instance updatePetr Mrázek
2017-05-13NOISSUE add a linux system packaging install layoutPetr Mrázek
2017-05-09NOISSUE log even more about 'Flame' resolving issuesPetr Mrázek
2017-05-09NOISSUE log 'Flame' mod resolver parsing errors.Petr Mrázek
2017-05-03NOISSUE Revert all recent changes to NetAction and NetJobPetr Mrázek
2017-05-03NOISSUE replace std::shared_ptr with shared_qobject_ptr for all download tasksPetr Mrázek
2017-04-29NOISSUE refactor NetAction to be based on TaskPetr Mrázek
Still missing some things, this is part 1.