File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
src/main/java/jme3utilities/wes Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11# release log for the Wes library and related examples
22
3+ ## Version 0.7.1: released on TBD
4+
5+ + Bugfix: ` TweenTransforms ` uses the wrong cycle time
6+ to interpolate a ` TransformTrack ` .
7+ + In WesExamples:
8+ + Added a demo app for ` AnimationEdit.convertToInPlace() ` .
9+ + Added Adi Barda's "ninja-fighter" model.
10+
311## Version 0.7.0: released on 10 February 2022
412
513 + Made ` TrackEdit.cloneTrack() ` into a generic method. (API change)
614 + Finalized the ` AnimationEdit ` and ` TrackEdit ` classes. (API change)
7- + Bugfix: ` TrackEdit.reverse() ` assumes a ` MorphTrack `
15+ + Bugfix: ` TrackEdit.reverse() ` assumes a ` MorphTrack ` .
816 has a exactly one target
917 + Added 7 public methods:
1018 + ` AnimationEdit.convertToInPlace() `
Original file line number Diff line number Diff line change @@ -59,6 +59,6 @@ private WesVersion() {
5959 * @return branch and revision (not null, not empty)
6060 */
6161 public static String versionShort () {
62- return "master 0.7.1-SNAPSHOT " ;
62+ return "master 0.7.1" ;
6363 }
6464}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apply plugin: 'java'
55ext {
66 // current versions of libraries:
77 jme3Version = ' 3.5.0-stable'
8- wesVersion = ' 0.7.1-SNAPSHOT '
8+ wesVersion = ' 0.7.1'
99}
1010
1111sourceCompatibility = JavaVersion . VERSION_1_7
@@ -29,6 +29,6 @@ tasks.withType(JavaExec) { // Java runtime options:
2929}
3030
3131repositories {
32- // mavenLocal()
32+ // mavenLocal() // to use local SNAPSHOTs of libraries
3333 mavenCentral()
3434}
You can’t perform that action at this time.
0 commit comments