From 9002ff61fd1df35535fb4e74250dbf75abdaa8f4 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Mon, 26 Aug 2024 09:15:45 +0800 Subject: [PATCH] docs: clarify readme --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9392a2f..4ffef95 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,15 @@ # NightMonkeys -A collection of ImageIO plugins, adding support for newer image formats. NightMonkeys uses the newer Foreign Linker API -available in JDK 22 to access native libraries. +A collection of ImageIO plugins, adding support for newer image formats. NightMonkeys uses the Foreign Linker API +available since JDK 22 to access native libraries. ## How it works NightMonkeys plugins are released as multi-release JARs: - with Java < 22, a no-op version of the plugin will unregister itself on load, basically doing nothing -- with Java 22, the plugin will be available -- the plugins are not compatible with other Java versions, as the Foreign Linker APIs are still changing +- with Java 22+, the plugin will be available This lets you add the dependencies in your project whatever the JDK used, and still enable the plugin at runtime if the necessary JDK is used.