aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-05-22NOISSUE Fix new Oracle Java Detection on WindowsPhilip T
Those were changed with Java 9 https://docs.oracle.com/javase/9/install/installation-jdk-and-jre-microsoft-windows-platforms.htm#JSJIG-GUID-47C269A3-5220-412F-9E31-4B8C37A82BFB
2021-05-22NOISSUE Register settings for setting a serverJanrupf
2021-05-22NOISSUE Required UI elements for setting a serverJanrupf
2021-05-15Merge pull request #3735 from kumquat-ir/developPetr Mrázek
NOISSUE Parse META-INF/mods.toml for Forge 1.14+ mod metadata
2021-05-15Merge pull request #3747 from runlevel5/patch-1Petr Mrázek
Add limits header
2021-05-15Merge pull request #3787 from JoelTroch/feature/gh-3450Petr Mrázek
GH-3450 Add checkboxes to display and record game time
2021-05-15Merge pull request #3729 from jamierocks/atl-loader-targetsPetr Mrázek
Various ATLauncher improvements and bug fixes
2021-05-13GH-3450 Add checkboxes to display and record game timeJoël Troch
2021-05-06GH-3764 Only install client mods for ATLauncher packsJamie Mansfield
2021-05-01NOISSUE fix issue templatesPetr Mrázek
2021-04-29Add limits headerTrung Lê
2021-04-29NOISSUE stop relying on forge servers for old FML libsPetr Mrázek
2021-04-17reimplement parsing logic for tomlc99kumquat-ir
2021-04-17switch to new toml librarykumquat-ir
2021-04-16replace ${file.jarVersion} with something usefulkumquat-ir
2021-04-16parse META-INF/mods.toml for metadatakumquat-ir
2021-04-16allow parsing toml from a QByteArraykumquat-ir
2021-04-15add toml11 as dependencykumquat-ir
2021-04-16NOISSUE Support Fabric modpacks on ATLauncherJamie Mansfield
Annoyingly the metadata structure is loader dependent :(
2021-04-16NOISSUE Emit failure on failure conditionsJamie Mansfield
The 'Installing modpack' dialog will no longer stay open forever, even though the installation has failed.
2021-04-16NOISSUE Support custom,latest,recommended loader versions for ATLJamie Mansfield
This provides support for modpacks using the new loader mechanism in ATLauncher and using a non-specific version target.
2021-04-08NOISSUE fix buildPetr Mrázek
2021-04-08Merge pull request #3691 from phit/feature/fixcursePetr Mrázek
NOISSUE Curseforge makeover
2021-04-08Merge pull request #3715 from jamierocks/atl-trycatch-jsonPetr Mrázek
NOISSUE Fedora build, ATL exceptions, and language tweaks
2021-04-08NOISSUE Fix string formatting issuesJamie Mansfield
This allows translations to have more control over the output :)
2021-04-08GH-3334 Show English variants correctlyJamie Mansfield
This will no longer show 'American English' with the statistics of 'British English', yet show the correct translations - and will now display 'British English'.
2021-04-08NOISSUE Handle JSON exceptions in ATLauncher supportJamie Mansfield
Thanks to phit for pointing this out :)
2021-04-08GH-3575 Fix build on Fedora 34Jamie Mansfield
Presumably this is caused by the bump to GCC 11 in Fedora 34. See the error that did occur below... ./MultiMC5/application/KonamiCode.cpp: In member function ‘void KonamiCode::input(QEvent*)’: ./MultiMC5/application/KonamiCode.cpp:38:23: error: comparison of integer expressions of different signedness: ‘int’ and ‘std::array<Qt::Key, 10>::size_type’ {aka ‘long unsigned int’} [-Werror=sign-compare] 38 | if(m_progress == konamiCode.size()) | ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
2021-04-08NOISSUE Curseforge makeoverphit
update UI to match other modpack platforms add sorting add version selection, fixes GH-3667 add installing beta versions, fixes GH-3611
2021-04-04NOISSUE add some logging to the system theme determination logicPetr Mrázek
2021-04-01NOISSUE improve GradleSpecifier and handle broken library namesPetr Mrázek
2021-03-29NOISSUE fix it some more in different filePetr Mrázek
2021-03-29NOISSUE fix build issue with QJsonValueRef on macOS 11Petr Mrázek
This will remove support for macOS 10.7 and 10.8, but their numbers in analytics are 0
2021-03-28Revert "GH-3666 Fix multi-monitor dpi scaling on windows"Petr Mrázek
This reverts commit 34bf68847998cdfff1360d6ed04339d36894c00d.
2021-03-26Merge pull request #3690 from jamierocks/ftb-search-edgePetr Mrázek
NOISSUE Fix edgecase where new searches won't be processed
2021-03-26Merge pull request #3684 from KGB-8375/patch-1Petr Mrázek
GH-3666 Fix multi-monitor dpi scaling on windows
2021-03-26Merge pull request #3686 from phit/fix/3633Petr Mrázek
GH-3633 assume latest MC version, if CurseForge pack supports multiple
2021-03-26NOISSUE Fix edgecase where new searches won't be processedJamie Mansfield
This resolves an issue with the modpacks.ch search functionality, in which a search issued while one is currently in progress won't be made and the UI won't allow for the search to be made after. Reproduction Steps: 1. Open the FTB pane in the Add Instance Dialog 2. Perform a search while MMC is still performing the initial search The search won't be performed, the existing search will have been aborted, and you are unable to try the search again (without trying a different search in the meantime). This was caused by 2 things: 1. A search cannot be re-attempted, and this logic doesn't consider failures. 2. The failure slot wasn't called when the NetJob was aborted, so the search would never be performed - but the term would be stored as if it had (trigering point 1). I have resolved this by doing 2 things: 1. If the failure slot is called, set a searchState of Failed. Allow search re-attempts in this case. 2. If there is a present NetJob, abort and reset it. The immediately continue with the search.
2021-03-26GH-3666 Fix multi-monitor dpi scaling on windowsKGB-8375
Disable qt 5.6 DPI scaling and use windows' builtin DPI scaling, which works much better on multi-monitor setups
2021-03-26GH-3633 assume latest MC version, if CurseForge pack supports multiplephit
right now these are unused anyway
2021-03-26NOISSUE fix build - missing includes in RWStorage.hPetr Mrázek
2021-03-26NOISSUE update ubuntu packaging bitsPetr Mrázek
2021-03-26Merge pull request #3682 from kb-1000/rename-twitch-curseforgePetr Mrázek
NOISSUE rename Twitch to flame internally for consistency and to CurseForge for user displayed strings
2021-03-26Merge pull request #3681 from kb-1000/fix-moc-warningPetr Mrázek
NOISSUE fix MOC warning complaining about an unused MOC file include
2021-03-26Merge pull request #3680 from kb-1000/log-system-glfw-openalPetr Mrázek
NOISSUE print information about whether the system GLFW or OpenAL workarounds are active to the instance log
2021-03-26Merge pull request #3677 from kb-1000/datapacks-button-disablePetr Mrázek
NOISSUE disable datapacks button in the world screen if no world is selected
2021-03-24NOISSUE rename Twitch to flame internally for consistency and to CurseForge ↵kb1000
for user displayed strings
2021-03-23NOISSUE fix MOC warning complaining about an unused MOC file includekb1000
2021-03-23NOISSUE print information about whether the system GLFW or OpenAL ↵kb1000
workarounds are active to the instance log
2021-03-23NOISSUE disable datapacks button in the world screen if no world is selectedkb1000