aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform
AgeCommit message (Collapse)Author
2023-04-27Removed extra codeTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-22Merge branch 'Fix_Assert' of github.com:Trial97/PrismLauncher into developTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-22Small CleanupTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-22Better version handlingTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21Updated linksTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21Fixed tipoTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21Small cleanupTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21Made some copy by referenceTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21Semi fixed the Modrinth dependency implementationTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21First working version with curseforge modsTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-21Added Dependency APITrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-18Make response constTheKodeToad
I don't think the segfault fix was ideal :P Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-17This was movedTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-17Smol fixesTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-17Boring changesTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-12Added missing characterTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-12Added task to load dependenciesTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-10Added dependencies to the APIsTrial97
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
2023-04-09Remove `seek`Kode
Don't need it if the data is already in a byte array. Signed-off-by: Kode <TheKodeToad@proton.me>
2023-04-07How did i-TheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-06Better collectFileListRecursively errorTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-06Revert concurrent syntaxTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-06Remove more prototype not good codeTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-06Remove "prototype" fieldTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-04-06Use local metadataTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-28Skip lookup if no files and fail if zipping failsTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-19Improve invokeMethod syntaxTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-19Replace native file separator - this was accidentally brought to my ↵TheKodeToad
attention on Modrinth's guild Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-18Merge branch 'PrismLauncher:develop' into mrpack-exportTheKodeToad
2023-03-18Only add summary if not emptyTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-18Info and error dialogsTheKodeToad
TODO: is there a better approach? Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-12fix: explicit conversion to C string to fix MinGW g++ 10 buildKenneth Chew
Signed-off-by: Kenneth Chew <kenneth.c0@protonmail.com>
2023-03-06Further reduce buggy behaviourTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-05More refactoringTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-04Fix abort?TheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-04Implement abort (possible broken?) and therefore make it work without crashing!TheKodeToad
The shared pointer was going out of scope 🤦. Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-04Improve codeTheKodeToad
Even more broken now (it is stuck loading forever)! Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-03Make it work! (TODO make it not crash)TheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-03Mod loader supportTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-03Move task to another threadTheKodeToad
I don't know whether this is the prefered method. Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-03-02Move logic to taskTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-02-05feat(RD): add shader pack downloaderflow
Signed-off-by: flow <flowlnlnln@gmail.com>
2023-02-05feat(RD): add resource pack downloaderflow
Signed-off-by: flow <flowlnlnln@gmail.com>
2023-02-02fix(Inst.Import): don't allow bad file path in mrpack importflow
This checks the URL of the path of the file to be downloaded, ensuring that it always contains the root .minecraft target folder, following the warning in the mrpack documentation. Signed-off-by: flow <flowlnlnln@gmail.com>
2023-01-25refactor: make shared_qobject_ptr ctor explicitflow
This turns issues like creating two shared ptrs from a single raw ptr from popping up at runtime, instead making them a compile error. Signed-off-by: flow <flowlnlnln@gmail.com>
2023-01-24Merge branch 'develop' into remove-updaterSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-01-23fix(license): add/fix my copyright/license headersflow
*sobbing in messy legal stuff i know nothing about* Signed-off-by: flow <flowlnlnln@gmail.com>
2023-01-13fix(ModUpdater): ensure instead of require icon_urlflow
The spec says that this can be null, and indeed some mods have it set to null, and should still be considered as valid. Signed-off-by: flow <flowlnlnln@gmail.com>
2023-01-13fix(ModUpdater): fail mods individually when there's errors in the JSONflow
Prevents a single problematic mod from invalidating all the API response. Signed-off-by: flow <flowlnlnln@gmail.com>
2023-01-13refactor(RD): allow setting custom folder target for downloaded resourcesflow
Signed-off-by: flow <flowlnlnln@gmail.com>