Skip to content

Commit 82affd9

Browse files
authored
Merge pull request #627 from neph1/update_template_libs
update template libs
2 parents 3edabe7 + 2fc14ed commit 82affd9

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed
Binary file not shown.

jme3-templates/src/com/jme3/gde/templates/gradledesktop/options/AdditionalLibrary.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public enum AdditionalLibrary implements TemplateLibrary {
9090
HEART("Heart Library", NbBundle.getMessage(AdditionalLibrary.class,
9191
"additionalLibrary.heart.description"),
9292
"com.github.stephengold", "Heart",
93-
"8.1.0", false),
93+
"9.0.0", false),
9494
PARTICLE_MONKEY("Particle Monkey",
9595
NbBundle.getMessage(AdditionalLibrary.class,
9696
"additionalLibrary.particlemonkey.description"),
@@ -111,7 +111,11 @@ public enum AdditionalLibrary implements TemplateLibrary {
111111
ZAY_ES_NET("Zay-ES-Net Networking Extension",
112112
NbBundle.getMessage(AdditionalLibrary.class,
113113
"additionalLibrary.zayesnet.description"),
114-
"com.simsilica", "zay-es-net", "1.5.0", false);
114+
"com.simsilica", "zay-es-net", "1.5.0", false),
115+
WES("Wes Library", NbBundle.getMessage(AdditionalLibrary.class,
116+
"additionalLibrary.wes.description"),
117+
"com.github.stephengold", "Wes",
118+
"0.8.1", false),;
115119

116120
/**
117121
* The name of the library. This will be displayed in the jComboBox in the

jme3-templates/src/com/jme3/gde/templates/gradledesktop/options/Bundle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ additionalLibrary.jme3-vr.description=Core jMonkeyEngine library providing Virtu
55
additionalLibrary.heart.description=The Heart Library provides an assortment of useful classes and assets to augment jMonkeyEngine.
66
additionalLibrary.particlemonkey.description=Particle Monkey is a more modern particle system with better artistic controls.
77
additionalLibrary.shaderblowex.description=Extended filters library for JMonkey Game Engine.
8-
additionalLibrary.sio2.description=A base library of useful utility code for JME-based games. \
8+
additionalLibrary.sio2.description=A base library of useful utility code for JME-based games.
9+
additionalLibrary.wes.description=An animation editing and retargeting library for jMonkeyEngine. \
910
Includes game system management infrastructure, useful base app states, an event bus, and useful Zay-ES utilities. \
1011
This is a useful base library for any JME game.
1112
additionalLibrary.zayes.description=Zay-ES (pronounced like Doctor Zaius from Planet of the Apes) is a high-performance \

jme3-templates/src/com/jme3/gde/templates/gradledesktop/options/NetworkingLibrary.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public enum NetworkingLibrary implements TemplateLibrary {
7979
SIMETHEREAL("SimEthereal", NbBundle.getMessage(NetworkingLibrary.class,
8080
"networkinglibrary.simethereal.description"),
8181
"com.simsilica", "sim-ethereal",
82-
"1.7.0", false);
82+
"1.8.0", false);
8383

8484
/**
8585
* The name of the library. This will be displayed in the jComboBox in the

jme3-templates/src/com/jme3/gde/templates/gradledesktop/options/PhysicsLibrary.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public enum PhysicsLibrary implements TemplateLibrary {
7575
MINIE("Minie", NbBundle.getMessage(PhysicsLibrary.class,
7676
"physicslibrary.minie.description"),
7777
"com.github.stephengold", "Minie",
78-
"5.0.0", false);
78+
"8.2.0", false);
7979

8080
/**
8181
* The name of the library. This will be displayed in the jComboBox in the

0 commit comments

Comments
 (0)