Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-21 | Do the url trick on initial modpack download too | timoreo | |
2022-05-20 | Apply suggestions | timoreo | |
2022-05-20 | Port temp fix to mods too | timoreo | |
2022-05-20 | Very Temporary Fix for curseforge | timoreo | |
2022-05-18 | fix: version field in technic pack manifest being null | flow | |
Sometimes, the version field, that is supposed to be a string, was a null instead. Inspecting other entries, seems like the default for not having a version should be "", so I made it like that in case the version was null. I hope this fixes the issue :^) | |||
2022-05-17 | Merge pull request #565 from Scrumplex/modrinth-packs | Sefa Eyeoglu | |
Initial Modrinth modpack support | |||
2022-05-16 | fix: typo and useless code | flow | |
2022-05-15 | Merge pull request #545 from DioEgizio/patch-4 | dada513 | |
2022-05-15 | fix: validate whitelisted download urls | flow | |
2022-05-15 | chore: license headers 2 | flow | |
2022-05-15 | chore: add/update license headers | Sefa Eyeoglu | |
2022-05-15 | change: use build variables for the modrinth API URLs | flow | |
Make it more consistent with the others | |||
2022-05-15 | fix: add author page url | flow | |
2022-05-15 | fix: fix build on Qt 5.12 | Sefa Eyeoglu | |
2022-05-14 | fix: choose valid download url even if it's not the primary one | flow | |
It seems to be possible to have modpack versions that have to primary file. In those cases, we pick a valid one "at random". | |||
2022-05-14 | fix: Have the URL be the project URL itself | flow | |
(I think, doesn't seem to work for the waffle though, probably because of the staging API :/) | |||
2022-05-14 | feat: add modrinth pack downloading | flow | |
Things that don't work / work poorly (there's more for sure but those are the evident ones): - Icons are broken in the import dialog - No way to search for private packs - Icons are not downloaded when downloading a mod - No support for multiple download URLs - Probably a lot more... | |||
2022-05-14 | Add support for importing Modrinth packs from files | kb1000 | |
2022-05-09 | Merge pull request #537 from PolyMC/stable | timoreo22 | |
Merge stable into develop | |||
2022-05-09 | fix websiteurl in curseforge modpacks | DioEgizio | |
2022-05-08 | Update launcher/modplatform/flame/FlameModIndex.cpp | Sefa Eyeoglu | |
Co-authored-by: flow <thiagodonato300@gmail.com> | |||
2022-05-08 | Update launcher/modplatform/flame/FlameModIndex.cpp | Sefa Eyeoglu | |
2022-05-08 | adopt changes from #497 remapped | Ryan Cao | |
2022-04-22 | ATLauncher: Support using share codes | Jamie Mansfield | |
2022-04-19 | fix: fix Modrinth query when Quilt is in use | Sefa Eyeoglu | |
2022-04-16 | fix: query for Fabric mods if Quilt is in use | Sefa 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-15 | fix: 'All' filter working and get around CF API capabilities | flow | |
2022-04-15 | fix(ui): Refresh mod list when changing filtering options | flow | |
2022-04-15 | feat: Use version filter when searching mods | flow | |
2022-04-14 | refactor: cleanup ModLoaderType | Sefa Eyeoglu | |
2022-04-07 | fix: check for Quilt as Fabric-compatible loader | Sefa Eyeoglu | |
2022-04-06 | Merge pull request #384 from jamierocks/technic-improvements | Sefa Eyeoglu | |
2022-04-03 | Check for empty slug before setting pack url | Harry Peach | |
2022-04-02 | Technic: Verify checksums for pack build mods | Jamie Mansfield | |
2022-04-02 | Technic: Display available versions for Solder packs | Jamie Mansfield | |
2022-04-02 | Technic: Replace inline parsing code with API models | Jamie Mansfield | |
2022-04-02 | Technic: Add API models for Solder packs | Jamie Mansfield | |
2022-03-31 | Fix modrinth usable URL in mod downloader | dada513 | |
2022-03-24 | optimize: Improve mod versions request to Modrinth | flow | |
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-24 | chore: resolve conflicts and merge upstream | flow | |
2022-03-22 | fix: fix skipping one on file counting in mod version parse | flow | |
2022-03-19 | fix(i18n): fix translatable strings | Sefa Eyeoglu | |
2022-03-18 | fix: Use primary file for mod download on Modrinth | flow | |
2022-03-14 | tidy: Fix clang-tidy issues on files changed in this PR | flow | |
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-07 | fix: delete semicolons at the end of .cpp file's functions | flow | |
my lsp is weird sometimes | |||
2022-03-07 | refactor: de-duplicate common code in network mod APIs | flow | |
2022-03-07 | refactor: move NetJob away from ModModel to ModAPI | flow | |
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-06 | refactor: use Enum instead of raw int for ModLoaderType | flow | |
2022-03-02 | refactor: 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-02 | refactor: Use a single indexed pack for mods | flow | |
Since there's little difference between them, let's remove duplication and merge them. |