Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public enum AdditionalLibrary implements TemplateLibrary {
HEART("Heart Library", NbBundle.getMessage(AdditionalLibrary.class,
"additionalLibrary.heart.description"),
"com.github.stephengold", "Heart",
"8.1.0", false),
"9.0.0", false),
PARTICLE_MONKEY("Particle Monkey",
NbBundle.getMessage(AdditionalLibrary.class,
"additionalLibrary.particlemonkey.description"),
Expand All @@ -111,7 +111,11 @@ public enum AdditionalLibrary implements TemplateLibrary {
ZAY_ES_NET("Zay-ES-Net Networking Extension",
NbBundle.getMessage(AdditionalLibrary.class,
"additionalLibrary.zayesnet.description"),
"com.simsilica", "zay-es-net", "1.5.0", false);
"com.simsilica", "zay-es-net", "1.5.0", false),
WES("Wes Library", NbBundle.getMessage(AdditionalLibrary.class,
"additionalLibrary.wes.description"),
"com.github.stephengold", "Wes",
"0.8.1", false),;

/**
* The name of the library. This will be displayed in the jComboBox in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ additionalLibrary.jme3-vr.description=Core jMonkeyEngine library providing Virtu
additionalLibrary.heart.description=The Heart Library provides an assortment of useful classes and assets to augment jMonkeyEngine.
additionalLibrary.particlemonkey.description=Particle Monkey is a more modern particle system with better artistic controls.
additionalLibrary.shaderblowex.description=Extended filters library for JMonkey Game Engine.
additionalLibrary.sio2.description=A base library of useful utility code for JME-based games. \
additionalLibrary.sio2.description=A base library of useful utility code for JME-based games.
additionalLibrary.wes.description=An animation editing and retargeting library for jMonkeyEngine. \
Includes game system management infrastructure, useful base app states, an event bus, and useful Zay-ES utilities. \
This is a useful base library for any JME game.
additionalLibrary.zayes.description=Zay-ES (pronounced like Doctor Zaius from Planet of the Apes) is a high-performance \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public enum NetworkingLibrary implements TemplateLibrary {
SIMETHEREAL("SimEthereal", NbBundle.getMessage(NetworkingLibrary.class,
"networkinglibrary.simethereal.description"),
"com.simsilica", "sim-ethereal",
"1.7.0", false);
"1.8.0", false);

/**
* The name of the library. This will be displayed in the jComboBox in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public enum PhysicsLibrary implements TemplateLibrary {
MINIE("Minie", NbBundle.getMessage(PhysicsLibrary.class,
"physicslibrary.minie.description"),
"com.github.stephengold", "Minie",
"5.0.0", false);
"8.2.0", false);

/**
* The name of the library. This will be displayed in the jComboBox in the
Expand Down