Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-25 | NOISSUE bulk addition of code from Katabasis | Petr Mrázek | |
2021-06-23 | NOISSUE Use MiB suffix for Java memory options | Jamie Mansfield | |
2021-05-22 | NOISSUE Make LauncherPart aware of server to join | Janrupf | |
2021-05-15 | Merge pull request #3735 from kumquat-ir/develop | Petr Mrázek | |
NOISSUE Parse META-INF/mods.toml for Forge 1.14+ mod metadata | |||
2021-04-29 | Add limits header | Trung Lê | |
2021-04-17 | switch to new toml library | kumquat-ir | |
2021-04-16 | allow parsing toml from a QByteArray | kumquat-ir | |
2021-04-15 | add toml11 as dependency | kumquat-ir | |
2021-04-08 | NOISSUE Fix string formatting issues | Jamie Mansfield | |
This allows translations to have more control over the output :) | |||
2021-02-09 | Merge pull request #3311 from AbigailBuccaneer/develop | Petr Mrázek | |
Fix endianness handling errors | |||
2021-02-07 | Merge pull request #3538 from Scotsguy/develop | Petr Mrázek | |
NOISSUE Update Copyright Year | |||
2021-02-06 | GH-3229 fix copy seed button not working for newer worlds | Petr Mrázek | |
Added the `optional-bare` library and refactored NBT reading code to support this change. | |||
2021-01-18 | NOISSUE Update Copyright Year | AppleTheGolden | |
2020-11-12 | NOISSUE Corrected the fix for Classic saving, fixes Indev compatibility | Moresteck | |
2020-09-07 | NOISSUE add 'java.vendor' to the checker and display/log the value | Petr Mrázek | |
2020-08-24 | Avoid undefined behaviour when byteswapping | AbigailBuccaneer | |
`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 | Remove extra semicolons from big-endian handling | AbigailBuccaneer | |
Fixes #3296. | |||
2020-06-07 | GH-3189 update the nbt library | Petr Mrázek | |
2020-05-19 | Remove some old forge hacks | Petr Mrázek | |
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. | |||
2020-04-19 | NOISSUE Fixed online saving in early Classic versions | Moresteck | |
2019-01-16 | Update Copyright Year | AppleTheGolden | |
2018-11-01 | iNOISSUE fix build issue with pack200 on rhel 7.6 | Petr Mrázek | |
2018-11-01 | GH-2238 fix issues with whitespace/newlines in folder and instance names | Petr Mrázek | |
2018-07-15 | NOISSUE tabs -> spaces | Petr Mrázek | |
2018-07-06 | NOISSUE fix unitialized data warning on Arch Linux | Petr Mrázek | |
2018-06-28 | NOISSUE fix a bug with mutexes on Windows, more warnings | Petr Mrázek | |
2018-06-28 | NOISSUE fix some warnings so builds can go further | Petr Mrázek | |
2018-06-28 | NOISSUE fix all sorts of warnings, enable `Werror` and `pedantic` | Petr Mrázek | |
2018-06-05 | NOISSUE sync up quazip merge commit | Petr Mrázek | |
2018-06-02 | GH-2291 Fix build with Qt 5.11+ | Sergey Shatunov | |
2018-05-20 | GH-2277 fix even more exception catches by value | Petr Mrázek | |
2018-05-19 | Catch C++ exceptions by const reference | Charles Milette | |
Fixes #2277 | |||
2018-03-13 | NOISSUE disable useless broken unit test to fix win32 and osx64 builds | Petr Mrázek | |
2018-03-13 | NOISSUE add linux distro name and release stats to analytics | Petr Mrázek | |
Hopefully this can serve as some sort of guideline for focusing effort towards the right distro packages to make. | |||
2018-02-11 | NOISSUE fix some warnings | Petr Mrázek | |
2018-02-11 | NOISSUE update copyright dates | Petr Mrázek | |
2018-01-27 | NOISSUE do not install .a files for shared libraries on Windows | Petr Mrázek | |
2018-01-27 | NOISSUE rearrange build system | Petr Mrázek | |
* Added install commands to the libraries instead of force installing files * Most of the application cmake stuff moved to top level * RPATH should now be set/cleared correctly * Contains a fix for GH-1780 | |||
2017-11-18 | Support for classic multiplayer via mpticket | MinecraftZuriki | |
2017-10-29 | NOISSUE fix build some more | Petr Mrázek | |
2017-10-29 | NOISSUE fix build | Petr Mrázek | |
2017-10-29 | GH-2026 avoid using awt Dimension class to fix input issues on macOS | Petr Mrázek | |
2017-10-29 | GH-2026 remove some macOS stuff from launcher part to fix input issues on 1.13 | Petr Mrázek | |
2017-09-27 | NOISSUE use classparser for importing Legacy instances with undecided ↵ | Petr Mrázek | |
Minecraft versions | |||
2017-09-27 | GH-1997 replace use of weird hacks with normal java arguments | Petr Mrázek | |
This affects classpath and java.library.path. The catch is that if the strings cannot be expressed in system codepage on Windows, it tries to use 8.3 paths. | |||
2017-09-20 | NOISSUE set haspaid parameter to true when launching old versions | Petr Mrázek | |
2017-07-14 | NOISSUE allow running legacy without the applet wrapper | Petr Mrázek | |
Add 'noapplet' as a trait to do that. | |||
2017-07-11 | NOISSUE set max of java heap spinboxes to detected physical memory | Petr Mrázek | |
2017-05-31 | NOISSUE finish cleaning quazip | Petr Mrázek | |
All LGPL code is back in the customized quazip fork | |||
2017-05-31 | NOISSUE move some zip utility functions back to quazip | Petr Mrázek | |
It's not entirely clean yet. |