Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-22 | Merge pull request #597 from Scrumplex/refactor-modloader-modapi | Sefa Eyeoglu | |
2022-05-20 | fix(ui): make CF and MR modpack dialogs more consistent | Sefa Eyeoglu | |
2022-05-19 | refactor: allow tracking multiple mod loaders | Sefa Eyeoglu | |
2022-05-17 | Update launcher/ui/pages/modplatform/modrinth/ModrinthPage.ui | Sefa Eyeoglu | |
Co-authored-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com> | |||
2022-05-16 | fix: mod skipping between pages and remove dead code | flow | |
2022-05-16 | fix: missed change to metacache entry lookup | flow | |
2022-05-16 | fix: typo and useless code | flow | |
2022-05-16 | fix: use own metacache base for modrinth icons | Sefa Eyeoglu | |
2022-05-16 | fix: better hack for icons that cant be natively scaled to 48x48 | flow | |
2022-05-15 | feat: better handling of optional mods | flow | |
This disables the optional mods by default and tell the user about it. Pretty hackish, but a better solution would involve the modrinth metadata to have the mod names... Also sorry for the diffs, my clangd went rogue x.x | |||
2022-05-15 | change: switch to modrinth production servers | flow | |
2022-05-15 | fix: macos compilation | flow | |
i forgor macos is cringe with static arrays :skull: edit: WHY DONT MAC LET ME USE STD::ARRAY ;----; | |||
2022-05-15 | change: add alpha note to modrinth page | flow | |
2022-05-15 | fix: pack sorting and other search parameters | flow | |
2022-05-15 | fix: always show project url, if available | Sefa Eyeoglu | |
2022-05-15 | feat: add version of Modrinth modpack to instance name | Sefa Eyeoglu | |
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-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 | fix: make all modrinth modpacks have the same icon size | flow | |
2022-05-14 | fix: download icon as well when importing modrinth modpacks | flow | |
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 | fix: adapt upstream Modrinth code to our codebase | Sefa Eyeoglu | |
2022-05-14 | Add support for importing Modrinth packs from files | kb1000 | |
2022-05-14 | refactor: rename Modrinth classes to ModrinthMod | Sefa Eyeoglu | |
2022-04-19 | Merge pull request #450 from Scrumplex/fix-quilt-mod-dl | Sefa Eyeoglu | |
2022-04-19 | fix: fix Modrinth query when Quilt is in use | Sefa Eyeoglu | |
2022-04-17 | Fix typos and inconsistent capitalization in sort options | Kenneth Chew | |
2022-04-15 | CHANGE: switch the help pages to their own dir | DioEgizio | |
also renames modrinth-platform/curseforge-platform to just Mod-platform since they have the pages are basically the same | |||
2022-03-27 | chore: add license header | Sefa Eyeoglu | |
chore: add license header | |||
2022-03-24 | chore: resolve conflicts and merge upstream | flow | |
2022-03-21 | Merge pull request #298 from Scrumplex/fix-i18n | Sefa Eyeoglu | |
Fix translatable strings | |||
2022-03-20 | fix: retranslate mod download pages | Sefa Eyeoglu | |
2022-03-19 | fix(i18n): remove brand names from translations | Sefa Eyeoglu | |
2022-03-19 | fix(i18n): fix translatable strings | Sefa Eyeoglu | |
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: move things around so that related things are close together | flow | |
This also adds some comments around ModModel.cpp and ModPage.cpp to add some ease of reading the code. Also move some things from headers to cpp files. | |||
2022-03-07 | refactor: move more common code to base class | flow | |
Also removes unused imports and organize the ModModel header | |||
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 | clarify some method names and comments | flow | |
2022-03-06 | refactor: move "get versions" task from page to model | flow | |
This seems more reasonable | |||
2022-03-06 | refactor: use only a single unique_ptr for the api | 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: extract common code in mod pages and model | flow | |
This creates a hierarchy in which ModPage and ModModel are the parents of every mod provider, providing the basic functionality common to all of them. It also imposes a unique .ui file (they were already equal before, just duplicated basically) on all mod providers. | |||
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. | |||
2022-02-27 | Fixed wrong version info | timoreo | |
2022-02-25 | merge upstream and resolve conflicts | flow | |