Age | Commit message (Collapse) | Author |
|
The RPM package reuses the files from the Ubuntu package.
|
|
|
|
GH-3437 Extract Technic single zip packs to correct place
|
|
|
|
|
|
|
|
Extended description of Windows build process based on about 6 hours wasted on trial and error.
|
|
|
|
|
|
|
|
|
|
Technic pack import
|
|
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.
|
|
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.
|
|
|
|
|
|
... the Qt test framework is annoyingly complicated and brittle.
... it may have to be replaced with something more reliable.
|
|
|
|
Old Qt doesn't have the iterator-based constructors...
|
|
Not integrated yet, but the logic has tests and shouldn't
be too shaky. Integration comes next.
|
|
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.
|
|
|
|
|
|
`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.
|
|
Fixes #3296.
|
|
|
|
|
|
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.
|
|
This is not particularly interesting for non-developers.
Also includes some internal restructuring of URL constants in general.
|
|
Fix Fabric loader error messages being reused for intermediary mappings
|
|
Minor: Render the skin overlay in SkinUtils
|
|
|
|
|
|
|
|
It's not just components, so the naming needed cleaning up.
|
|
|
|
This makes the lazy loading of the paginated search results
actually work.
|
|
Allow compiling MultiMC using Qt builds without accessibility again
|
|
|
|
Update BUILD.md
|
|
fix: add support for args with spaces to MultiMC::messageReceived()
|
|
Clarify WSL error messages
|
|
|
|
|
|
|
|
Forge apparently removed all `.pack.xz` files without warning.
It broke a bunch of stuff, as always. But it also means we don't need some ugly code anymore.
This is removed:
- Support for 'forge-pack-xz' and the forge-specific file download compression.
- The pack200 library we no longer need.
This stays:
- The LZMA decompression library - we may still want to use it.
|
|
|
|
|
|
Previously, when the main instance of MultiMC would receive an `import`
or `launch` message from another instance, it would split the message on
each space, and only read the first word of the argument (zip path/URL
or instance ID). This commit fixes that problem by sectioning the
message string instead.
|