A library for my smaller mods https://pages.frohnmeyer-wds.de/JfMods/LibJF/
Go to file
JFronny 4c3e81570c
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/jfmod Pipeline was successful
feat(resource-pack-entry-widgets): add forge port
2024-07-17 21:45:20 +02:00
docs feat(web): support hosting on game port 2023-08-30 17:24:14 +02:00
gradle feat(resource-pack-entry-widgets): add forge port 2024-07-17 21:45:20 +02:00
libjf-base feat: update to 1.21 2024-06-14 09:59:48 +02:00
libjf-bom build: publish bom/catalog on release 2024-04-25 09:15:13 +02:00
libjf-catalog build: publish bom/catalog on release 2024-04-25 09:15:13 +02:00
libjf-config-commands build: update build for changes in scripts 2024-03-25 16:16:25 +01:00
libjf-config-compiler-plugin-v2 chore(config-core): plumb TypeTokens throughout internal representation 2024-04-26 09:11:28 +02:00
libjf-config-core-v2 chore: update jfCommons 2024-06-09 13:35:57 +02:00
libjf-config-network-v0 feat: update to 1.21-pre4 2024-06-09 12:43:18 +02:00
libjf-config-ui-tiny feat: update to 1.21-pre4 2024-06-09 12:43:18 +02:00
libjf-data-manipulation-v0 fix: add additional null check to hook and update commons 2024-05-05 13:09:02 +02:00
libjf-data-v0 feat: update to 1.21-pre4 2024-06-09 12:43:18 +02:00
libjf-devutil chore: bump deps 2023-09-22 18:41:55 +02:00
libjf-mainhttp-v0 feat: update to 1.21-pre4 2024-06-09 12:43:18 +02:00
libjf-resource-pack-entry-widgets-forge feat(resource-pack-entry-widgets): add forge port 2024-07-17 21:45:20 +02:00
libjf-resource-pack-entry-widgets-v0 chore(resource-pack-entry-widgets): add testmod and clean up a bit 2024-07-17 20:54:09 +02:00
libjf-translate-v1 style: make variant names common 2024-05-11 21:18:58 +02:00
libjf-unsafe-v0 build: update build for changes in scripts 2024-03-25 16:16:25 +01:00
libjf-web-v1 build: update build for changes in scripts 2024-03-25 16:16:25 +01:00
src [config-ui-tiny] use tabs if upper level contains nothing of note 2023-03-11 21:21:53 +01:00
.gitignore feat(resource-pack-entry-widgets): add forge port 2024-07-17 21:45:20 +02:00
.woodpecker.yml [build] Remove log 2022-11-25 16:18:04 +01:00
book.toml [docs] Fix references in libjf-config-compiler-plugin 2022-11-25 14:57:40 +01:00
build.gradle.kts feat: update to 1.20.5-rc2 2024-04-19 20:09:09 +02:00
gradle.properties chore(build): Use jfMod DSL instead of properties 2023-07-09 16:50:53 +02: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
settings.gradle.kts feat(resource-pack-entry-widgets): add forge port 2024-07-17 21:45:20 +02:00

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