Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-20 | NOISSUE Fix Modplatform Scrollbars properly | phit | |
2021-06-20 | NOISSUE Fix FTB Legacy Pack Selection | phit | |
2021-06-20 | Merge pull request #3880 from phit/fix/GH-3720 | Petr Mrázek | |
GH-3720 Fix UI inconsistencies with Modplatforms | |||
2021-06-20 | Revert "GH-3507 Modernize MacOS Icon" | Petr Mrázek | |
This reverts commit d08a2f00a2e403937b38254595cea6af5c5b236c. | |||
2021-06-20 | GH-3720 Fix UI inconsistencies with Modplatforms | phit | |
Fixes GH-3118 Fixes GH-3720 Fixes GH-3731 Icons and Ok button state will now switch consistently when moving between tabs. ATLaunchers packlist is now no longer redownloaded each time you open its Tab. All lists are striped now. And all search and filter fields now have a placeholder text. | |||
2021-06-19 | NOISSUE Add notice re MSA to login dialog | Jamie Mansfield | |
This commit should be reverted when support for Microsoft/Xbox authentication is introduced. | |||
2021-06-19 | Merge pull request #3875 from jamierocks/feature/gh-3033 | Petr Mrázek | |
GH-3033 Add filtering for version components | |||
2021-06-19 | Merge pull request #3877 from Zetabite/feature_offline_status_log | Petr Mrázek | |
NOISSUE Add info for instance launch mode and server status when online | |||
2021-06-19 | NOISSUE Add info for instance launch mode and server status when online | Adrian | |
2021-06-19 | GH-2971 Brand mod model for resource/texture pack pages | Jamie Mansfield | |
2021-06-19 | GH-3719 Translate some missing strings when changing locale | Jamie Mansfield | |
2021-06-18 | NOISSUE Don't translate logged entries | Jamie Mansfield | |
2021-06-18 | GH-3033 Add filtering for version components | Jamie Mansfield | |
2021-06-18 | GH-3507 Modernize MacOS Icon | phit | |
full credit to @ThePotatoKing55 | |||
2021-06-18 | GH-3731 Limit Curserforge version height | phit | |
2021-06-18 | NOISSUE Specify support URLs at build time | Jamie Mansfield | |
Support URLs (bug tracker, Discord guild, subreddit) are now specified as cache variables in cmake, and the buttons are not shown if no value is set for them. This is an early-stage move towards debranding the MultiMC codebase, and will (hopefully) alleviate support requests coming to us from illicit forks. | |||
2021-06-03 | NOISSUE Disable 'Install Forge' button when game is running | Jamie Mansfield | |
2021-05-23 | NOISSUE Add --server argument for --launch | Janrupf | |
2021-05-22 | NOISSUE Allow joining servers from the servers page | Janrupf | |
2021-05-22 | NOISSUE Use minecraft logic for parsing adresses | Janrupf | |
2021-05-22 | NOISSUE Use Vanilla logic for resolving servers | Janrupf | |
2021-05-22 | NOISSUE Register settings for setting a server | Janrupf | |
2021-05-22 | NOISSUE Required UI elements for setting a server | Janrupf | |
2021-05-15 | Merge pull request #3787 from JoelTroch/feature/gh-3450 | Petr Mrázek | |
GH-3450 Add checkboxes to display and record game time | |||
2021-05-13 | GH-3450 Add checkboxes to display and record game time | Joël Troch | |
2021-04-16 | NOISSUE Support custom,latest,recommended loader versions for ATL | Jamie Mansfield | |
This provides support for modpacks using the new loader mechanism in ATLauncher and using a non-specific version target. | |||
2021-04-08 | NOISSUE fix build | Petr Mrázek | |
2021-04-08 | Merge pull request #3691 from phit/feature/fixcurse | Petr Mrázek | |
NOISSUE Curseforge makeover | |||
2021-04-08 | NOISSUE Handle JSON exceptions in ATLauncher support | Jamie Mansfield | |
Thanks to phit for pointing this out :) | |||
2021-04-08 | GH-3575 Fix build on Fedora 34 | Jamie 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-08 | NOISSUE Curseforge makeover | phit | |
update UI to match other modpack platforms add sorting add version selection, fixes GH-3667 add installing beta versions, fixes GH-3611 | |||
2021-04-04 | NOISSUE add some logging to the system theme determination logic | Petr Mrázek | |
2021-03-28 | Revert "GH-3666 Fix multi-monitor dpi scaling on windows" | Petr Mrázek | |
This reverts commit 34bf68847998cdfff1360d6ed04339d36894c00d. | |||
2021-03-26 | Merge pull request #3690 from jamierocks/ftb-search-edge | Petr Mrázek | |
NOISSUE Fix edgecase where new searches won't be processed | |||
2021-03-26 | Merge pull request #3684 from KGB-8375/patch-1 | Petr Mrázek | |
GH-3666 Fix multi-monitor dpi scaling on windows | |||
2021-03-26 | NOISSUE Fix edgecase where new searches won't be processed | Jamie 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-26 | GH-3666 Fix multi-monitor dpi scaling on windows | KGB-8375 | |
Disable qt 5.6 DPI scaling and use windows' builtin DPI scaling, which works much better on multi-monitor setups | |||
2021-03-26 | GH-3633 assume latest MC version, if CurseForge pack supports multiple | phit | |
right now these are unused anyway | |||
2021-03-26 | NOISSUE update ubuntu packaging bits | Petr Mrázek | |
2021-03-26 | Merge pull request #3682 from kb-1000/rename-twitch-curseforge | Petr Mrázek | |
NOISSUE rename Twitch to flame internally for consistency and to CurseForge for user displayed strings | |||
2021-03-26 | Merge pull request #3681 from kb-1000/fix-moc-warning | Petr Mrázek | |
NOISSUE fix MOC warning complaining about an unused MOC file include | |||
2021-03-24 | NOISSUE rename Twitch to flame internally for consistency and to CurseForge ↵ | kb1000 | |
for user displayed strings | |||
2021-03-23 | NOISSUE fix MOC warning complaining about an unused MOC file include | kb1000 | |
2021-03-23 | NOISSUE disable datapacks button in the world screen if no world is selected | kb1000 | |
2021-03-21 | NOISSUE add warning to the ATLauncher pack page | Petr Mrázek | |
2021-02-11 | NOISSUE implement deleting skins | Petr Mrázek | |
2021-02-11 | NOISSUE Add search to ATLauncher | Jamie Mansfield | |
2021-02-10 | Merge pull request #3593 from jamierocks/atl/description-view | Petr Mrázek | |
NOISSUE Show ATLauncher pack descriptions in text browser | |||
2021-02-10 | NOISSUE Show FTB pack descriptions in text browser | Jamie Mansfield | |
2021-02-10 | NOISSUE Show ATLauncher pack descriptions in text browser | Jamie Mansfield | |