aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform
AgeCommit message (Collapse)Author
2022-05-14refactor: rename Modrinth classes to ModrinthModSefa Eyeoglu
2022-05-13Merge pull request #528 from flowln/guo_extSefa Eyeoglu
2022-05-09Merge pull request #537 from PolyMC/stabletimoreo22
Merge stable into develop
2022-05-08adopt changes from #497 remappedRyan Cao
2022-05-07fix: filter based on MIME type instead of plaintext suffixflow
Suffixes are unreliable in different locales, while MIME types are more standarized.
2022-04-22ATLauncher: Replace usage of QPushButton::pressed with ::clickedJamie Mansfield
2022-04-22ATLauncher: Support using share codesJamie Mansfield
2022-04-19Fix crash if no Minecraft version is selected in the new instance screenKenneth Chew
2022-04-19Merge pull request #452 from Scrumplex/fix-download-mods-crashSefa Eyeoglu
2022-04-19Merge pull request #451 from Scrumplex/fix-modloader-selectiondada513
2022-04-19Merge pull request #450 from Scrumplex/fix-quilt-mod-dlSefa Eyeoglu
2022-04-19fix: fix Modrinth query when Quilt is in useSefa Eyeoglu
2022-04-18fix: handle network errors when downloading modlistSefa Eyeoglu
2022-04-18fix: actually check if a mod loader is selectedSefa Eyeoglu
Thus also removes a suggestCurrent call from loaderFilterChanged, as it will already be triggered by setSelectedLoaderVersion
2022-04-17Fix typos and inconsistent capitalization in sort optionsKenneth Chew
2022-04-16Merge pull request #392 from flowln/mod_filterSefa Eyeoglu
2022-04-16Merge pull request #430 from DioEgizio/make-helppages-on-their-own-dirEzekiel Smith
CHANGE: switch the help pages to their own dir
2022-04-15Add Quilt install option while creating an instanceKenneth Chew
2022-04-15Fix Fabric versions appearing for unsupported MC versionsKenneth Chew
Also remove an old TODO comment, mentioning an issue that was already fixed.
2022-04-15Show no loader selected message when add instance window first opensKenneth Chew
This resolves an issue where the message only shows when selecting a mod loader and then selecting "None" again.
2022-04-15Fix build on Qt 5.6Kenneth Chew
2022-04-15Add option to install mod loader during instance creationKenneth Chew
2022-04-15ui: underline search button text when changing filtersflow
This hopefully makes it easier to the user to know that their changes will only apply after hitting the search button. I tried setting the background color, but it seems more unreliable on cross-platform than underlining. Also, it could be worse for daltonic people, so I don't know what to do :(
2022-04-15rework: make the filter as a tabbed widget in the dialog itselfflow
Still needs a clear indication that the filter only applies after you click the search button...
2022-04-15fix: Polish usage in some casesflow
Also fiz some typos
2022-04-15fix: 'All' filter working and get around CF API capabilitiesflow
2022-04-15fix(ui): Refresh mod list when changing filtering optionsflow
2022-04-15feat: Use version filter when searching modsflow
2022-04-15feat: Integrate newly created filter dialog in ModPageflow
2022-04-15CHANGE: switch the help pages to their own dirDioEgizio
also renames modrinth-platform/curseforge-platform to just Mod-platform since they have the pages are basically the same
2022-04-14refactor: cleanup ModLoaderTypeSefa Eyeoglu
2022-04-07fix: check for Quilt as Fabric-compatible loaderSefa Eyeoglu
2022-04-02BuildConfig: Make Technic API base URL and build constantsJamie Mansfield
2022-04-02Technic: Display available versions for Solder packsJamie Mansfield
2022-04-02Technic: Match CurseForge pack description formatJamie Mansfield
2022-04-02Technic: Include the modpack version in instance titleJamie Mansfield
2022-04-02Technic: Prevent potential HTML injectionJamie Mansfield
2022-04-02Technic: Allow pack API urls to be used in searchJamie Mansfield
This mimics the behaviour that the Technic launcher has, and their website displays API URLs for. The big benefit of this, is to be able to install private packs now :)
2022-03-29Merge pull request #352 from Scrumplex/fix-nameSefa Eyeoglu
Update Credits and Branding
2022-03-27chore: add license headerSefa Eyeoglu
chore: add license header
2022-03-27fix: remove "PolyMC" from stringsSefa Eyeoglu
2022-03-24optimize: Improve mod versions request to Modrinthflow
This uses more arguments in the GET request for mod versions on the Modrinth API, filtering what versions can be returned, decreasing load on Modrinth servers and improving a little the time it takes for the versions to be available to the user. This also removes the now unneeded check on correct modloaders in ModrinthPackIndex, since it is now filtered by the Modrinth server. Lastly, this adds a couple of helper functions in ModModel.
2022-03-24chore: resolve conflicts and merge upstreamflow
2022-03-21Merge pull request #298 from Scrumplex/fix-i18nSefa Eyeoglu
Fix translatable strings
2022-03-20fix: retranslate mod download pagesSefa Eyeoglu
2022-03-20chore: add license headerSefa Eyeoglu
2022-03-20App: Retranslate all pages when the language is changedJamie Mansfield
2022-03-19fix(i18n): remove brand names from translationsSefa Eyeoglu
2022-03-19fix(i18n): fix translatable stringsSefa Eyeoglu
2022-03-14tidy: Fix clang-tidy issues on files changed in this PRflow
The checks used are roughly the same as the ones proposed in the clang-tidy PR (except perhaps that I used modernize-* instead of listing them individually,though I don't think this caused any readability detriments). In ModrinthModel.cpp and FlameModModel.cpp I ignored the modernize-avoid-c-arrays one, mostly because making the sorts array an std::array would most likely increase the code complexity because of the virtual function. Aside from that, the static_cast warning from Application.h was not dealt with, since it's not in this PR's scope.