Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-19 | Actually install the full `Sparkle.framework` | Kenneth Chew | |
CMake's `fixup_bundle` did not copy everything in the framework, which caused the app to crash when updating. Oops. | |||
2022-05-19 | Refactor code, create abstract class `ExternalUpdater` | Kenneth Chew | |
(Hopefully) this makes implementing updaters using external libraries easier on other platforms. To implement an updater on a new platform, create a new class that implements the pure virtual methods from `ExternalUpdater` and add code in the `UpdateChecker` initializer to initialize the new class. | |||
2022-05-19 | Add functionality to (Sparkle) updater settings on macOS | Kenneth Chew | |
Also remove a debug line I accidentally left in | |||
2022-05-19 | Implement automatic and manual updates on macOS | Kenneth Chew | |
2022-05-19 | Create `SparkleUpdater` class for access from Qt/C++ | Kenneth Chew | |
To actually get automatic updates going, all that needs to happen is that `SparkleUpdater` needs to be initialized. The rest of the functions can be connected to elements in the UI. | |||
2022-05-19 | Add Sparkle Updater framework to macOS build | Kenneth Chew | |
2022-05-18 | fix: support split natives | Sefa Eyeoglu | |
Mojang introduced a new structure for natives, notably for LWJGL. Now instead of using the `natives` structure of the version format, Mojang chose to create a seperate library entry for each platform, which uses the `rules` structure to specify the platform. These new split natives carry the same groupId and artifactId, as the main library, but have an additional classifier, like `natives-linux`. When comparing GradleSpecifiers we don't look at the classifier, so when the launcher sees an artifact called `org.lwjgl:lwjgl:3.3.1` and right after that an artifact called `org.lwjgl:lwjgl:3.3.1:natives-linux`, it will treat it as "already added" and forget it. This change will include the classifier in that comparison. | |||
2022-05-18 | Merge pull request #590 from DioEgizio/fix-qmj-over-fmj | timoreo22 | |
fix(quilt) always prefer qmj over fmj | |||
2022-05-18 | fix(quilt) always prefer qmj over fmj | DioEgizio | |
this fixes Quilt-only mods like ok zoomer showing wrong metadata | |||
2022-05-17 | fix: remove unnecessary Qt version checks | Sefa Eyeoglu | |
2022-05-17 | fix(updater): remove Windows version check | Sefa Eyeoglu | |
Qt 5.12 doesn't support anything older than Windows 7 anyway, so we can't really check if we are on an older platform. | |||
2022-05-17 | fix: replace deprecated stuff as of Qt 5.12 | Sefa Eyeoglu | |
2022-05-17 | Merge pull request #565 from Scrumplex/modrinth-packs | Sefa Eyeoglu | |
Initial Modrinth modpack support | |||
2022-05-17 | Merge pull request #567 from Scrumplex/quilt-metadata | Sefa Eyeoglu | |
Support `quilt.mod.json` metadata | |||
2022-05-17 | fix: update links for Quilt metadata format | 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-17 | Merge pull request #529 from flowln/vertical_toolbar | txtsd | |
Set right orientation for instance toolbar when moving it around | |||
2022-05-17 | Merge pull request #540 from kthchew/fix/executable-screenshot | txtsd | |
Show "executable" screenshots in the screenshot manager | |||
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 | Merge pull request #564 from flowln/cf_icon | Sefa Eyeoglu | |
2022-05-16 | fix: better hack for icons that cant be natively scaled to 48x48 | flow | |
2022-05-16 | fix: import modrinth packs with weird overrides structure | flow | |
Probably because of Packwiz limitations, or an space optimizer that did this :) | |||
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 | feat: support quilt.mod.json metadata | Sefa Eyeoglu | |
2022-05-15 | Merge pull request #560 from kthchew/feature/close-pmc-override | flow | |
Add instance overrides for miscellaneous settings | |||
2022-05-15 | Merge pull request #531 from Ozynt/patch-1 | Sefa Eyeoglu | |
Remove reference to legacy Minecraft accounts | |||
2022-05-15 | Merge pull request #539 from kthchew/fix/translation-switch | flow | |
Fix untranslated strings after changing language | |||
2022-05-15 | Merge pull request #547 from kthchew/feature/hidden-temp | dada513 | |
2022-05-15 | Merge pull request #546 from kthchew/feature/scrollable-accounts | dada513 | |
2022-05-15 | Merge pull request #545 from DioEgizio/patch-4 | dada513 | |
2022-05-15 | fix: validate whitelisted download urls | flow | |
2022-05-15 | fix: always show project url, if available | Sefa Eyeoglu | |
2022-05-15 | change: update modrinth icon | flow | |
Updates to the version at https://github.com/modrinth/docs/blob/master/static/img/logo.svg | |||
2022-05-15 | change: use modrinth icon as default on modrinth packs | flow | |
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-15 | feat: add support for Quilt Loader in Modrinth packs | Sefa Eyeoglu | |
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 | change: list what file types can be entered in the importer | flow | |