Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-01 | fix: prevent segfault due to callbacks into deleted objects | flow | |
Since network requests are, for the most part, asynchronous, there's a chance a request only comes through after the request sender has already been deleted. This adds a global (read static) hash table relating models for the mod downloader to their status (true = alive, false = destroyed). It is a bit of a hack, but I couldn't come up with a better way of doing this. To reproduce the issue before this commit: scroll really quickly through CF mods, to trigger network requests for their versions and description. Then, in the middle of it close the mod downloader. Sometimes this will create a crash. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | fix(ui): force redraw of mod list when (de)selecting a mod | flow | |
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-08-01 | feat: cache mod versions | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | refactor: use function cb instead of class cb in getVersions | flow | |
I've discovered even more functional programming! :^) Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat: cache extra mod info (like links and body) | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | refactor: use function cb instead of class cb in getModInfo | flow | |
I've discovered functional programming :^) This makes this route more fit for general use. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat+refactor: clean up ProgressWidget and add progress indicatior to | flow | |
mod downloader Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat: add (semi) instant searching in mod downloader | flow | |
It has a delay of 350ms from the last typed character to search, in order to cache small changes while typing. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | change: preserve search term across different mod providers | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat+refactor: add shortcuts to mod downloader and clean up | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat: display the 'body' of a MR mod on the mod downloader | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-01 | feat: create delegate for project item views | flow | |
This allows us to define custom painting for list view items. In particular, this is applied to the mod downloader, in order to allow displaying both the mod name and mod description, and settings their effects (like bold or underline) independent of each other. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-26 | chore: add license headers | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-07-26 | feat: implement mod resolving for FTB | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
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-11 | Merge pull request #678 from Scrumplex/improvements-around-proprietary-services | Sefa Eyeoglu | |
2022-07-10 | ATLauncher: Move the UI support implementation into it's own class | Jamie Mansfield | |
This will allow it to be used in multiple locations. | |||
2022-07-10 | chore: update license headers | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-07-10 | refactor: fix deprecation up to Qt 5.15 | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-07-10 | Merge pull request #876 from Scrumplex/revert-updater-stuff | dada513 | |
Revert "fix: remove updater if it is not used" | |||
2022-07-08 | Merge pull request #884 from jopejoe1/ftbuifixed | flow | |
Updated FTB Classic layout | |||
2022-07-08 | fix: spelling of CF | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-07-07 | Updated FTB Classic layout | jopejoe1 | |
Signed-off-by: jopejoe1 <johannes@joens.email> | |||
2022-07-06 | Revert "fix: remove updater if it is not used" | Sefa Eyeoglu | |
This reverts commit 2ff0aa09e35eb6910ef0a030ea41f84a1ed95782. 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-07-03 | fix: use better naming for Modrinth pack versions | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-03 | feat+fix: cache versions and extra info in Modrinth packs | flow | |
When you change a copy thinking you're changing the original data smh Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-03 | fix: don't use uniform sizes in Modrinth modpack viewer | flow | |
Apparently, when Qt sees an icon with the height smaller than the rest, with this option set, it will change the height of all other items to be that one, causing #828. While we do lose some performance changing this option, the issue is gone, so :| Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-03 | Merge pull request #818 from flowln/tiny_mod_icons | Ezekiel Smith | |
Always scale mod icons to the right size | |||
2022-06-30 | Merge pull request #837 from DioEgizio/fix-sort-mr | timoreo22 | |
2022-06-24 | fix(modrinth): fix sorting | DioEgizio | |
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-21 | fix: scale mod icons to the right size | flow | |
2022-06-14 | Merge pull request #665 from jamierocks/h-managed-packs | Ezekiel Smith | |
PackPlatforms: Record where packs come from | |||
2022-06-14 | Merge pull request #634 from flowln/donate_links | Ezekiel Smith | |
More links for CF / Modrinth mods / modpacks | |||
2022-06-12 | chore: add license headers | Sefa Eyeoglu | |
2022-06-12 | fix: remove updater if it is not used | Sefa Eyeoglu | |
2022-06-12 | refactor(test): fix loading mod metadata setting | Sefa Eyeoglu | |
2022-06-11 | Merge pull request #780 from flowln/guo_ext_2 | dada513 | |
2022-06-11 | fix: remove file filter from translation | Sefa Eyeoglu | |
2022-06-11 | fix: allow discovering mrpacks in languages without dot | flow | |
2022-06-09 | fix: allow opening external links in technic modpack page | flow | |
2022-06-04 | Merge pull request #426 from flowln/mod_perma | Sefa Eyeoglu | |
Add on-disk mod metadata information | |||
2022-05-30 | Merge pull request #505 from flowln/improve_download_ux | Sefa Eyeoglu | |
2022-05-29 | fix: add version to Legacy FTB packs | Sefa Eyeoglu | |
2022-05-29 | ModpacksCH: Use ModpacksCH rather than FTB in error messages | Jamie Mansfield | |