aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform
AgeCommit message (Collapse)Author
2022-04-19fix: fix Modrinth query when Quilt is in useSefa Eyeoglu
2022-04-16fix: query for Fabric mods if Quilt is in useSefa Eyeoglu
Right now we want to include Fabric mods in our searches where possible. Modrinth allows definining multiple loaders, while Flame only allows a single value. As a compromise we ask for Fabric mods only on Flame and for both Fabric and Quilt mods on Modrinth.
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-14refactor: cleanup ModLoaderTypeSefa Eyeoglu
2022-04-07fix: check for Quilt as Fabric-compatible loaderSefa Eyeoglu
2022-04-06Merge pull request #384 from jamierocks/technic-improvementsSefa Eyeoglu
2022-04-03Check for empty slug before setting pack urlHarry Peach
2022-04-02Technic: Verify checksums for pack build modsJamie Mansfield
2022-04-02Technic: Display available versions for Solder packsJamie Mansfield
2022-04-02Technic: Replace inline parsing code with API modelsJamie Mansfield
2022-04-02Technic: Add API models for Solder packsJamie Mansfield
2022-03-31Fix modrinth usable URL in mod downloaderdada513
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-22fix: fix skipping one on file counting in mod version parseflow
2022-03-19fix(i18n): fix translatable stringsSefa Eyeoglu
2022-03-18fix: Use primary file for mod download on Modrinthflow
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.
2022-03-07fix: delete semicolons at the end of .cpp file's functionsflow
my lsp is weird sometimes
2022-03-07refactor: de-duplicate common code in network mod APIsflow
2022-03-07refactor: move NetJob away from ModModel to ModAPIflow
This is done so that 1. ModAPI behaves more like an actual API instead of just a helper, and 2. Allows for more easily creating other mod providers that may or may not use network tasks (foreshadowing lol)
2022-03-06refactor: use Enum instead of raw int for ModLoaderTypeflow
2022-03-02refactor: move url creation for mods to modplatform/flow
Moves all things related to creating the URLs of the mod platforms that go to network tasks to a single place, so that: 1. Maintaining and fixing eventual issues is more straightforward. 2. Makes it possible to factor out more common code between the different modplatform pages
2022-03-02refactor: Use a single indexed pack for modsflow
Since there's little difference between them, let's remove duplication and merge them.
2022-02-27fix: Do not loop when its not a fabric mod on Flame version validationflow
Since there's no validation for forge mods since the start, we were just looping with no porpuse in this situation.
2022-02-27fix: Always tell Flame API which modloader we are usingflow
Fixes #206 partially. Although we don't list mods that have no compatibility with the mod loader we are using, mods that have support for both loaders still show up, and the versions for both the loaders are still shown. Also simplifies a little the logic in FlameModIndex::loadIndexedPackVersions
2022-02-21refactor: set default InstanceType to OneSixSefa Eyeoglu
2022-02-03Merge branch 'update-quazip' of git://github.com/Scrumplex/PolyMC into developswirl
2022-02-01Double braindead combotimoreo22
2022-02-01Fix braindead momentstimoreo
2022-01-31refactor: simpler includes for quazipSefa Eyeoglu
2022-01-31refactor: add in-tree QuaZipSefa Eyeoglu
2022-01-31refactor: initial migration to QuaZip 1.2Sefa Eyeoglu
Let's move off our custom QuaZip. In the olden times we needed the custom version of QuaZip, as it was basically unmaintained and on SourceForge (eww). But nowadays it's maintained and on GitHub. See new GitHub page: https://github.com/stachenov/quazip
2022-01-31Update to Modrinth API V2timoreo
2022-01-24Changed modrinth author data to not be a listtimoreo
2022-01-18Various fixestimoreo
2022-01-16Added curseforge selectiontimoreo
2022-01-15Added smart file selectiontimoreo
This might fail in a few special cases
2022-01-15Filtering per mod loader & mc versiontimoreo
2022-01-14Fixed iconstimoreo
Also having a mod loader is now enforced
2022-01-14Added the downloading of the modstimoreo
2022-01-14Start of mod downloadingtimoreo
2021-12-31NOISSUE fix build and change how NetJob is usedPetr Mrázek
Feed it network upfront...
2021-12-18NOISSUE Add license headers to source files created by meJamie Mansfield
2021-11-21NOISSUE continue refactoring things to make tests passPetr Mrázek
2021-11-20NOISSUE Some happy little refactorsPetr Mrázek
2021-09-23GH-4114 Allow the same file for be downloaded to multiple pathsJamie Mansfield
This is a potential fix to GH-4114.
2021-09-17GH-4055 Don't download multiple files to the same pathJamie Mansfield
FTB should fix their metadata, but this should resolve issues downloading their packs at present.