Jamie Mansfield
5eace10d51
NOISSUE Continue requesting packs after ignoring one
...
This was a mishap on my part, fortunately quickly exposed as the
combination of GH-3463 and GH-3464 made no packs visible.
2020-11-29 13:58:20 +00:00
Jamie Mansfield
b8c6a42f49
NOISSUE Add sorting options to FTB pack install page
2020-11-29 13:46:14 +00:00
Petr Mrázek
ed11d33054
Merge pull request #3464 from jamierocks/ftb/ignore-dud-packs
...
NOISSUE Ignore 'dud' FTB packs
2020-11-29 00:16:00 +01:00
Petr Mrázek
11a21b57e4
Merge pull request #3463 from jamierocks/ftb/new-api
...
NOISSUE Use new modpacks.ch route for listing packs
2020-11-29 00:15:24 +01:00
Jamie Mansfield
7321a4fd3d
NOISSUE Ignore 'dud' FTB packs
...
There is no guarantee from modpacks.ch that modpacks contain any
versions, which is currently an issue with pack 63 (Direwolf20 1.5).
2020-11-28 22:13:53 +00:00
Jamie Mansfield
6249a54ba2
NOISSUE Use new modpacks.ch route for listing packs
2020-11-28 22:06:35 +00:00
kb1000
58c2228247
NOISSUE Add an RPM package for MultiMC
...
The RPM package reuses the files from the Ubuntu package.
2020-11-27 19:28:46 +01:00
Petr Mrázek
88d6b6ea3f
GH-3427 add low effort datapack button to worlds
2020-11-24 22:31:49 +01:00
Petr Mrázek
66c0999901
Merge pull request #3438 from jamierocks/technic-zip-fix
...
GH-3437 Extract Technic single zip packs to correct place
2020-11-14 16:14:50 +01:00
Jamie Mansfield
edfea9894e
NOISSUE Cleanup Technic support
2020-11-13 16:38:18 +00:00
Jamie Mansfield
fd1a8f039a
GH-3437 Extract Technic single zip packs to correct place
2020-11-13 16:33:52 +00:00
Moresteck
49126fa8e2
NOISSUE Corrected the fix for Classic saving, fixes Indev compatibility
2020-11-12 14:58:12 +00:00
Matej Kafka
7da2fd5b8b
Update BUILD.md
...
Extended description of Windows build process based on about 6 hours wasted on trial and error.
2020-10-25 03:54:59 +01:00
Petr Mrázek
eb3e6e4c6a
NOISSUE give technic icon a darker outline
2020-10-13 22:35:43 +02:00
Petr Mrázek
4197ae0128
NOISSUE remove obsolete TODO comment from SolderPackInstallTask
2020-10-13 22:20:28 +02:00
Petr Mrázek
a7216ecca1
NOISSUE use Json parsing helpers to process technic search results
2020-10-13 22:18:42 +02:00
Petr Mrázek
4689571c24
NOISSUE fix build: QTemporaryDir::filePath was added in Qt 5.9
2020-10-13 22:01:01 +02:00
Petr Mrázek
4c62776044
Merge pull request #3195 from kb-1000/technic-import
...
Technic pack import
2020-10-13 21:44:20 +02:00
kb1000
8021fb25d0
GH-469 Implement support for importing and searching for Technic Platform and Solder modpacks
...
This does not support any custom modpack.jar for 1.6 or newer, it simply uses standard Forge then.
Supports Forge and Fabric, and JAR mods for 1.5 and older.
2020-10-13 21:34:16 +02:00
Petr Mrázek
762ddaea65
Merge pull request #3372 from jamierocks/ftb-data-temp-fix
...
GH-3304 Temporarily ignore download failures for FTB packs
2020-10-12 01:36:56 +02:00
Jamie Mansfield
05ffcf706b
GH-3304 Temporarily ignore download failures for FTB packs
...
This is a temporary measure, to match FTB's own installer, to allow
packs to download while FTB work on fixing the data from their API.
2020-10-12 00:28:05 +01:00
Petr Mrázek
dded11004f
NOISSUE adapt to work on Windows, fix reading symlink targets on POSIX
2020-10-12 01:01:51 +02:00
Petr Mrázek
f1284ab96b
NOISSUE just eliminate QCOMPARE. it doesn't work at all.
2020-10-11 23:50:36 +02:00
Petr Mrázek
3aca4cbe20
NOISSUE tweak QCOMPARE vs QVERIFY
...
... the Qt test framework is annoyingly complicated and brittle.
... it may have to be replaced with something more reliable.
2020-10-11 23:45:41 +02:00
Petr Mrázek
015c34bb38
NOISSUE dis-ambiguate call to ensureBoolean in PackageManifest
2020-10-11 23:32:57 +02:00
Petr Mrázek
a49472349d
NOISSUE fix constructing Path from iterators
...
Old Qt doesn't have the iterator-based constructors...
2020-10-11 23:28:38 +02:00
Petr Mrázek
0946c7c138
NOISSUE basic code for downloading JREs from Mojang
...
Not integrated yet, but the logic has tests and shouldn't
be too shaky. Integration comes next.
2020-10-11 23:20:35 +02:00
Petr Mrázek
5180536cc3
NOISSUE add a way to use native system versions of OpenAL and GLFW
...
If your OS comes with patched/fixed/newer versions of those,
you can now check the checkboxes and stop using the old ones
shipped by Mojang.
2020-09-10 23:10:17 +02:00
Petr Mrázek
27e43d037e
NOISSUE remove translations from CheckJava launch step
2020-09-07 22:33:57 +02:00
Petr Mrázek
feae420450
NOISSUE add 'java.vendor' to the checker and display/log the value
2020-09-07 22:28:41 +02:00
AbigailBuccaneer
6995a2e1ba
Avoid undefined behaviour when byteswapping
...
`a << b` is undefined when `a` is negative, and `a >> b` is
implementation-defined. The correct thing to do here is to cast to
unsigned, swap the bytes there and then swap back.
This also improves performance on some compilers: Clang is smart enough
to recognise that we're byteswapping here and reduce it to a single
`bswap` instruction on x86_64, but only for the unsigned versions.
2020-08-24 18:52:08 +01:00
AbigailBuccaneer
0f2757f000
Remove extra semicolons from big-endian handling
...
Fixes #3296 .
2020-08-24 17:43:58 +01:00
Petr Mrázek
8a0027c73a
NOISSUE Add world icons and world icon reset button
2020-08-22 01:34:55 +02:00
Petr Mrázek
c6c9feb3a2
NOISSUE attempt to fix build on macOS
2020-08-21 02:40:19 +02:00
Jamie Mansfield
b0f5f4cb13
GH-3095 New FTB platform support
...
Models are based on the models from my go-modpacksch library.
License:
========
The MIT License (MIT)
Copyright (c) Jamie Mansfield <https://www.jamiemansfield.me/ >
Copyright (c) contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2020-08-21 02:24:29 +02:00
Petr Mrázek
e7f373496e
GH-3234 Add support for custom meta URLs at build time
...
This is not particularly interesting for non-developers.
Also includes some internal restructuring of URL constants in general.
2020-07-18 16:22:05 +02:00
Petr Mrázek
3158082b16
Merge pull request #3239 from haykam821/intermediary-errors
...
Fix Fabric loader error messages being reused for intermediary mappings
2020-07-18 12:31:45 +02:00
Petr Mrázek
814407ccec
Merge pull request #3241 from Bowser65/feature/render-overlay
...
Minor: Render the skin overlay in SkinUtils
2020-07-18 12:31:14 +02:00
Bowser65
155f4f7471
NOISSUE render the skin overlay in SkinUtils
2020-07-12 19:36:40 +02:00
haykam821
90d45d2abf
Fix Fabric loader error messages being reused for intermediary mappings
2020-07-09 12:17:59 -04:00
Petr Mrázek
cd57e354fe
NOISSUE fix a bunch of valgrind errors
2020-06-28 13:25:53 +02:00
Petr Mrázek
a0ef20a264
NOISSUE rename ComponentList to PackProfile
...
It's not just components, so the naming needed cleaning up.
2020-06-27 12:02:31 +02:00
Petr Mrázek
4ca62916f5
GH-3189 update the nbt library
2020-06-07 21:32:42 +02:00
Petr Mrázek
41590f2e50
NOISSUE Switch twitch modpack page to use a QListView
...
This makes the lazy loading of the paginated search results
actually work.
2020-06-07 11:15:17 +02:00
Petr Mrázek
03dc8ddf81
Merge pull request #3169 from kb-1000/fix-accessibility-2
...
Allow compiling MultiMC using Qt builds without accessibility again
2020-05-30 15:34:18 +02:00
kb1000
79208a7383
Allow compiling MultiMC using Qt builds without accessibility again
2020-05-30 15:32:38 +02:00
Petr Mrázek
3680f1e599
Merge pull request #2864 from Hubcapp/patch-1
...
Update BUILD.md
2020-05-29 01:56:53 +02:00
Petr Mrázek
c4779e5a35
Merge pull request #3127 from OverMighty/develop
...
fix: add support for args with spaces to MultiMC::messageReceived()
2020-05-29 01:55:27 +02:00
Petr Mrázek
aad34f3679
Merge pull request #3165 from kvverti/wsl-messages
...
Clarify WSL error messages
2020-05-29 00:59:28 +02:00
Thalia Nero
0047ca454f
Clarify WSL error messages
2020-05-28 17:59:54 -04:00