A library for my smaller mods https://pages.frohnmeyer-wds.de/JfMods/LibJF/
Go to file
Johannes Frohnmeyer e2a891c2e2
feat(config-core): Configurable config watch service
2023-07-09 13:42:08 +02:00
docs [root] update for 1.19.4-pre1 2023-02-26 12:49:00 +01:00
libjf-base [config-core] sleep 1s between iterations in watch service loop to free up CPU (wasn't needed that often anyway) 2023-03-18 10:36:02 +01:00
libjf-config-commands-v1 Update to 1.20 2023-06-09 15:04:53 +02:00
libjf-config-compiler-plugin feat(config-core): Configurable config watch service 2023-07-09 13:42:08 +02:00
libjf-config-compiler-plugin-v2 Update to 1.20 2023-06-09 15:04:53 +02:00
libjf-config-core-v1 feat(config-core): Configurable config watch service 2023-07-09 13:42:08 +02:00
libjf-config-reflect-v1 feat(config-core): Configurable config watch service 2023-07-09 13:42:08 +02:00
libjf-config-ui-tiny-v1 Update to 1.20 2023-06-09 15:04:53 +02:00
libjf-data-manipulation-v0 [*] optimize imports 2023-03-11 21:24:59 +01:00
libjf-data-v0 [*] enhance testmod metadata 2023-02-23 17:49:07 +01:00
libjf-devutil Update to 1.20 2023-06-09 15:04:53 +02:00
libjf-translate-v1 [translate] delay translate service initialization since it takes up to 1.5 seconds on startup 2023-05-18 14:51:09 +02:00
libjf-unsafe-v0 [*] optimize imports 2023-03-11 21:24:59 +01:00
libjf-web-v0 Update to 1.20 2023-06-09 15:04:53 +02:00
src [config-ui-tiny] use tabs if upper level contains nothing of note 2023-03-11 21:21:53 +01:00
.gitignore [docs] Move to mdbook and document libjf-config v1 modules 2022-08-27 20:17:13 +02:00
.woodpecker.yml [build] Remove log 2022-11-25 16:18:04 +01:00
LICENSE Add files 2021-04-11 16:00:37 +02:00
README.md [root] update README 2023-03-18 11:09:34 +01:00
book.toml [docs] Fix references in libjf-config-compiler-plugin 2022-11-25 14:57:40 +01:00
build.gradle.kts [root] fix runClient 2023-02-23 20:36:00 +01:00
gradle.properties Update to 1.20 2023-06-09 15:04:53 +02:00
settings.gradle.kts Implement config compiler plugin v2 powered by annotation processing 2022-12-14 19:38:29 +01:00

README.md

LibJF is a library for my smaller mods which contains several common components. Namely it provides:

  • a complete config system with UIs, commands, compile-time codegen, presets, verifiers, etc
  • a framework for manipulating loaded data and resources
  • two new tags (which you can also use in data packs):
    • libjf:overpowered: if an entity only wears armor items with this tag, it will become invulnerable
    • libjf:shulker_boxes_illegal: items with this tag cannot be placed inside shulker boxes. Intended to be used for backpacks or similar items
  • utility code for serialization, script loading, co-processes, IO, etc.
  • network utilities including a HTTP client and server
  • a configurable and extensible translation system supporting various providers
  • utilities for early initialization and ASM patching

If a mod is made by me, it is generally safe to assume it requires LibJF (or ships with parts of it)

If you want to use LibJF yourself, you can find documentation here