Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-07 | refactor: create mod pages and filter widget by factory methods | flow | |
This takes most expensive operations out of the constructors. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat: lazy-load CF mod descriptions | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-17 | fix: filter out opted-out mods in mod downloader | flow | |
Maintains Pre-Updater behaviour Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-10 | chore: update license headers | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-07-03 | fix: aborts when using a Qt build with assertions enabled | flow | |
Preventing undefined behaviour hooray! :D Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-03 | fix: show invalid version even when there's none | flow | |
Having a blank instead of _anything_ is bad UX. Instead, even when there's not a valid version (most likely disabled redistribution), we show a message in the UI, to differentiate from the loading state. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-03 | feat+fix: cache Flame modpack versions | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-06-23 | Update launcher/ui/pages/modplatform/flame/FlamePage.ui | DioEgizio | |
Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-06-23 | chore(flame): reword warning | DioEgizio | |
2022-06-14 | Merge pull request #634 from flowln/donate_links | Ezekiel Smith | |
More links for CF / Modrinth mods / modpacks | |||
2022-05-28 | Rework curseforge download (#611) | timoreo22 | |
* Use the bulk endpoint on mod resolution for faster download * Search on modrinth for api blocked mods * Display a dialog for manually downloading blocked mods | |||
2022-05-24 | feat: add links to curseforge modpacks | flow | |
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-20 | Apply suggestions | timoreo | |
2022-05-20 | Very Temporary Fix for curseforge | timoreo | |
2022-05-19 | refactor: allow tracking multiple mod loaders | Sefa Eyeoglu | |
2022-05-08 | adopt changes from #497 remapped | Ryan Cao | |
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-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-20 | chore: add license header | Sefa Eyeoglu | |
2022-03-20 | App: Retranslate all pages when the language is changed | Jamie Mansfield | |
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-03-01 | Merge pull request #205 from timoreo22/fix-version-select | timoreo22 | |
Fixed wrong version info | |||
2022-02-27 | fix: Always tell Flame API which modloader we are using | flow | |
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-27 | Cleanly free NetJob in flame modpack | timoreo | |
2022-02-27 | Fixed wrong version info | timoreo | |
2022-02-25 | merge upstream and resolve conflicts | flow | |
2022-02-21 | fix(ui): change text in selection button when there's no valid version | flow | |
2022-02-21 | feat(ui): allow downloading multiple mods from CurseForge at once | flow | |
2022-02-19 | Fixed segfault when closing window while version info download is still going | timoreo | |
2022-02-04 | Fix wrong mod file name | timoreo | |
2022-01-24 | Fixed spacing | timoreo | |