From 58994b04807ef64aed2b536154c7d926cebb3bd9 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Tue, 19 Sep 2017 20:04:09 -0700 Subject: [PATCH] bump lib versions: debug->0.7.5, nifty->0.7.0, sky->0.9.6 --- SkyControl/build.gradle | 6 +++--- SkyControl/release-notes.md | 8 ++++++++ .../src/main/java/jme3utilities/sky/Constants.java | 2 +- common.gradle | 6 +++--- debug/build.gradle | 6 +++--- debug/release-notes.md | 5 +++++ .../main/java/jme3utilities/debug/DebugVersion.java | 6 +++--- nifty/build.gradle | 10 +++++----- nifty/release-notes.md | 6 ++++++ .../main/java/jme3utilities/nifty/LibraryVersion.java | 6 +++--- 10 files changed, 40 insertions(+), 21 deletions(-) diff --git a/SkyControl/build.gradle b/SkyControl/build.gradle index 7bff5cbce..70dafae37 100644 --- a/SkyControl/build.gradle +++ b/SkyControl/build.gradle @@ -6,7 +6,7 @@ description = 'sky simulation library for jMonkeyEngine' ext { artifact = 'SkyControl' version = "$skycontrolVersion" - baseName = "${artifact}-${version}" + baseName = "$artifact-$version" } build { dependsOn 'pom' } @@ -21,8 +21,8 @@ dependencies { compile "org.jmonkeyengine:jme3-effects:$jmonkeyengineVersion" compile "org.jmonkeyengine:jme3-terrain:$jmonkeyengineVersion" - //compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" - compile project(':heart') + compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" + //compile project(':heart') } task pom { diff --git a/SkyControl/release-notes.md b/SkyControl/release-notes.md index 5f8791043..fffa911ca 100644 --- a/SkyControl/release-notes.md +++ b/SkyControl/release-notes.md @@ -1,5 +1,13 @@ # release notes for the SkyControl library and related tests +## Version 0.9.6 released TBD + + + use the DomeMesh class from the heart library + + move wireframe material to heart library + + make SkyControl JmeCloneable + + fix some potential aliasing bugs related to Material.setColor() + + standardize the BSD license texts + ## Version 0.9.5 released on 20 May 2017 Moved 2 general-purpose packages to new "jme3-utilites-heart" library, which diff --git a/SkyControl/src/main/java/jme3utilities/sky/Constants.java b/SkyControl/src/main/java/jme3utilities/sky/Constants.java index 2888ccfad..7a3b48a03 100644 --- a/SkyControl/src/main/java/jme3utilities/sky/Constants.java +++ b/SkyControl/src/main/java/jme3utilities/sky/Constants.java @@ -107,6 +107,6 @@ private Constants() { * @return branch and revision (not null, not empty) */ public static String getVersionShort() { - return "master 0.9.5+1"; + return "master 0.9.6"; } } diff --git a/common.gradle b/common.gradle index eb9b7c2fc..e8b6e386d 100644 --- a/common.gradle +++ b/common.gradle @@ -18,14 +18,14 @@ gradle.projectsEvaluated { ext { // current versions of the libraries jcommanderVersion = '1.72' - jme3utilitiesdebugVersion = '0.7.4' + jme3utilitiesdebugVersion = '0.7.5' jme3utilitiesheartVersion = '0.9.23' - jme3utilitiesniftyVersion = '0.6.10' + jme3utilitiesniftyVersion = '0.7.0' jme3utilitiesuiVersion = '0.5.9' jme3utilitieswesVersion = '0.2.3' jme3utilitiesxVersion = '0.2.1' jmonkeyengineVersion = '3.1.0-stable' - skycontrolVersion = '0.9.5' + skycontrolVersion = '0.9.6' } repositories { diff --git a/debug/build.gradle b/debug/build.gradle index 4bc10e382..0b2826bc2 100644 --- a/debug/build.gradle +++ b/debug/build.gradle @@ -6,7 +6,7 @@ description = 'debugging library for jMonkeyEngine' ext { artifact = 'jme3-utilities-debug' version = "$jme3utilitiesdebugVersion" - baseName = "${artifact}-${version}" + baseName = "$artifact-$version" } build { dependsOn 'pom' } @@ -17,8 +17,8 @@ sourcesJar { baseName "${project.ext.baseName}" } dependencies { compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion" - //compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" - compile project(':heart') + compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" + //compile project(':heart') } task pom { diff --git a/debug/release-notes.md b/debug/release-notes.md index f42ebee6f..11358f57d 100644 --- a/debug/release-notes.md +++ b/debug/release-notes.md @@ -1,5 +1,10 @@ # release notes for the jme3-utilities-debug library and related tests +## Version 0.7.5 released TBD + + + Added hooks for describing materials and meshes + + Standardized the BSD license texts + ## Version 0.7.4 released on 17 August 2017 + Split Describer off from the Dumper class diff --git a/debug/src/main/java/jme3utilities/debug/DebugVersion.java b/debug/src/main/java/jme3utilities/debug/DebugVersion.java index 81e998a09..c71d69207 100644 --- a/debug/src/main/java/jme3utilities/debug/DebugVersion.java +++ b/debug/src/main/java/jme3utilities/debug/DebugVersion.java @@ -41,8 +41,8 @@ public class DebugVersion { /** * message logger for this class */ - final private static Logger logger = Logger.getLogger( - DebugVersion.class.getName()); + final private static Logger logger + = Logger.getLogger(DebugVersion.class.getName()); // ************************************************************************* // constructors @@ -60,6 +60,6 @@ private DebugVersion() { * @return branch and revision (not null, not empty) */ public static String getVersionShort() { - return "master 0.7.4+1"; + return "master 0.7.5"; } } diff --git a/nifty/build.gradle b/nifty/build.gradle index 126fd1828..adb8da3d4 100644 --- a/nifty/build.gradle +++ b/nifty/build.gradle @@ -6,7 +6,7 @@ description = 'NiftyGUI library for jMonkeyEngine' ext { artifact = 'jme3-utilities-nifty' version = "$jme3utilitiesniftyVersion" - baseName = "${artifact}-${version}" + baseName = "$artifact-$version" } build { dependsOn 'pom' } @@ -18,11 +18,11 @@ dependencies { compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion" compile "org.jmonkeyengine:jme3-niftygui:$jmonkeyengineVersion" - //compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" - compile project(':heart') + compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" + //compile project(':heart') - //compile "jme3utilities:jme3-utilities-ui:$jme3utilitiesuiVersion" - compile project(':ui') + compile "jme3utilities:jme3-utilities-ui:$jme3utilitiesuiVersion" + //compile project(':ui') } task pom { diff --git a/nifty/release-notes.md b/nifty/release-notes.md index 40844c98d..a68b1b5fb 100644 --- a/nifty/release-notes.md +++ b/nifty/release-notes.md @@ -1,5 +1,11 @@ # release notes for the jme3-utilities-nifty library and related tests +## Version 0.7.0 released TBD + + + Require a list or array to invoke PopScreenController.showPopupMenu(). + + Add multiSelect dialog box. + + Standardized the BSD license texts + ## Version 0.6.10 released 5 September 2017 + Align infobox body text with the top of its panel. diff --git a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java index db07de649..d19db946c 100644 --- a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java +++ b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java @@ -41,8 +41,8 @@ public class LibraryVersion { /** * message logger for this class */ - final private static Logger logger = Logger.getLogger( - LibraryVersion.class.getName()); + final private static Logger logger + = Logger.getLogger(LibraryVersion.class.getName()); // ************************************************************************* // constructors @@ -60,6 +60,6 @@ private LibraryVersion() { * @return branch and revision (not null, not empty) */ public static String getVersionShort() { - return "master 0.6.10+1"; + return "master 0.7.0"; } }