From 4b38ac69f0ff807ec82bf71df517a3937a03c6d3 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 6 Dec 2018 11:54:44 -0800 Subject: [PATCH] Add entry for nresource patch. --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 772d905..71286ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.8.3 - Unreleased +* Added support for `nresource` resources which must be jar files that contain native libraries. + Prior to launching the application, these resources will be unpacked and their contents added to + the `java.library.path` system property. + * When the app is updated to require a new version of the JVM, that JVM will be downloaded and used immediately during that app invocation (instead of one invocation later). Via PR#169.