pollymc/libraries
Rachel Powers e61d8e4dc8 fix: katabasis and QStyle leaks
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
2023-05-25 16:16:58 -07:00
..
LocalPeer Change old style cast to C++ cast 2022-10-22 13:04:48 +02:00
cmark@5ba25ff40e fix: update cmark to fix a CVE 2023-01-24 15:05:13 +01:00
extra-cmake-modules@bbcbaff782 Libraries: Add ECM 2022-11-04 18:11:36 +00:00
filesystem@8a2edd6d92 chore: bump ghc-filesystem 2023-03-05 14:21:07 +01:00
gamemode Add Performance related settings 2022-07-06 09:34:14 +02:00
javacheck Compile JavaCheck for Java 7 2022-06-12 17:46:40 +01:00
katabasis fix: katabasis and QStyle leaks 2023-05-25 16:16:58 -07:00
launcher Remove dirty printStackTrace hacks 2022-11-19 13:59:22 +00:00
libnbtplusplus@2203af7eeb libs: update bundled submodules 2022-04-16 10:23:15 -03:00
murmur2 Merge pull request #228 from bensuperpc/change_cast 2022-10-28 21:34:59 +02:00
qdcss license stuff 2023-02-24 15:01:59 -05:00
quazip@6117161af0 libs: update bundled submodules 2022-04-16 10:23:15 -03:00
rainbow feat: add Qt 6 support to CMake 2022-07-10 12:19:14 +02:00
systeminfo refactor: drop 64-bit check 2022-09-20 16:01:08 +02:00
tomlplusplus@7eb2ffcc09 Update `tomlplusplus` library 2023-03-12 18:33:48 -04:00
zlib@04f42ceca4 Libraries: Add zlib 2022-11-03 21:35:28 +00:00
README.md switch to qdcss for parsing 2023-02-12 17:23:15 -05:00

README.md

Third-party libraries

This folder has third-party or otherwise external libraries needed for other parts to work.

filesystem

Gulrak's implementation of C++17 std::filesystem for C++11 /C++14/C++17/C++20 on Windows, macOS, Linux and FreeBSD.

See github repo.

MIT licensed.

gamemode

A performance optimization daemon.

See github repo.

BSD-3-Clause licensed

cmark

The C reference implementation of CommonMark, a standardized Markdown spec.

See github_repo.

BSD2 licensed.

javacheck

Simple Java tool that prints the JVM details - version and platform bitness.

Do what you want with it. It is so trivial that noone cares.

Katabasis

Oauth2 library customized for Microsoft authentication.

This is a fork of the O2 library.

MIT licensed.

launcher

Java launcher part for Minecraft.

It does the following:

  • Waits for a launch script on stdin.
  • Consumes the launch script you feed it.
  • Proceeds with launch when it gets the launcher command.

If "abort" is sent, the process will exit.

This means the process is essentially idle until the final command is sent. You can, for example, attach a profiler before you send it.

The standard and legacy launchers are available.

  • standard can handle launching any Minecraft version, at the cost of some extra features legacy enables (custom window icon and title).
  • legacy is intended for use with Minecraft versions < 1.6 and is deprecated.

Example (some parts have been censored):

mod legacyjavafixer-1.0
mainClass net.minecraft.launchwrapper.Launch
param --username
param CENSORED
param --version
param Prism Launcher
param --gameDir
param /home/peterix/minecraft/FTB/17ForgeTest/minecraft
param --assetsDir
param /home/peterix/minecraft/mmc5/assets
param --assetIndex
param 1.7.10
param --uuid
param CENSORED
param --accessToken
param CENSORED
param --userProperties
param {}
param --userType
param mojang
param --tweakClass
param cpw.mods.fml.common.launcher.FMLTweaker
windowTitle Prism Launcher: 172ForgeTest
windowParams 854x480
userName CENSORED
sessionId token:CENSORED:CENSORED
launcher standard

Available under GPL-3.0-only (with classpath exception), sublicensed from its original Apache-2.0 codebase

libnbtplusplus

libnbt++ is a free C++ library for Minecraft's file format Named Binary Tag (NBT). It can read and write compressed and uncompressed NBT files and provides a code interface for working with NBT data.

See github repo.

Available either under LGPL version 3 or later.

LocalPeer

Library for making only one instance of the application run at all times.

BSD licensed, derived from QtSingleApplication.

Changes are made to make the code more generic and useful in less usual conditions.

murmur2

Canonical implementation of the murmur2 hash, taken from SMHasher.

Public domain (the author disclaimed the copyright).

quazip

A zip manipulation library.

LGPL 2.1 with linking exception.

rainbow

Color functions extracted from KGuiAddons. Used for adaptive text coloring.

Available either under LGPL version 2.1 or later.

systeminfo

A Prism Launcher-specific library for probing system information.

Apache 2.0

tomlplusplus

A TOML language parser. Used by Forge 1.14+ to store mod metadata.

See github repo.

Licenced under the MIT licence.

qdcss

A quick and dirty css parser, used by NilLoader to store mod metadata.

Translated (and heavily trimmed down) from the original Java code from NilLoader

Licensed under LGPL version 3.