Commit 00c1ad2 1 parent 10e214c commit 00c1ad2 Copy full SHA for 00c1ad2
File tree 10 files changed +29
-13
lines changed
src/main/java/jme3utilities/sky
src/main/java/jme3utilities/ui
src/main/java/jme3utilities/x
10 files changed +29
-13
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ processResources { dependsOn ':textures:skyTextures' }
19
19
dependencies {
20
20
compile " org.jmonkeyengine:jme3-effects:$jmonkeyengineVersion "
21
21
22
- // compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
23
- compile project(' :heart' )
22
+ compile " jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion "
23
+ // compile project(':heart')
24
24
}
25
25
26
26
task pom {
Original file line number Diff line number Diff line change 1
1
# release notes for the SkyControl library and related tests
2
2
3
+ ## Version 0.9.17 released on TBD
4
+
5
+ Notable changes:
6
+ + prevent shadows from being cast by/on a FloorControl
7
+ + add LandscapeControl (from the debug library) to the tests
8
+ + base on version 2.21 of the heart library
9
+
3
10
## Version 0.9.16 released on 14 January 2018
4
11
5
12
Notable changes:
Original file line number Diff line number Diff line change @@ -107,6 +107,6 @@ private Constants() {
107
107
* @return branch and revision (not null, not empty)
108
108
*/
109
109
public static String versionShort () {
110
- return "master 0.9.16+1 " ;
110
+ return "master 0.9.17 " ;
111
111
}
112
112
}
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ ext {
32
32
jcommanderVersion = ' 1.74'
33
33
jme3utilitiesheartVersion = ' 2.21.0'
34
34
jme3utilitiesniftyVersion = ' 0.9.1'
35
- jme3utilitiesuiVersion = ' 0.7.0 '
36
- jme3utilitiesxVersion = ' 0.2.8 '
35
+ jme3utilitiesuiVersion = ' 0.7.1 '
36
+ jme3utilitiesxVersion = ' 0.2.9 '
37
37
jmonkeyengineVersion = ' 3.2.2-stable'
38
- skycontrolVersion = ' 0.9.16 '
38
+ skycontrolVersion = ' 0.9.17 '
39
39
}
40
40
41
41
repositories {
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ javadocJar { baseName project.ext.baseName }
15
15
sourcesJar { baseName project. ext. baseName }
16
16
17
17
dependencies {
18
- // compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
19
- compile project(' :heart' )
18
+ compile " jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion "
19
+ // compile project(':heart')
20
20
}
21
21
22
22
task pom {
Original file line number Diff line number Diff line change 1
1
# release notes for the jme3-utilities-ui library and related tests
2
2
3
+ ## Version 0.7.1 released on TBD
4
+
5
+ + Added a ` CameraOrbitAppState ` class based on the one in MinieExamples.
6
+ + Based on version 2.21 of the jme3-utilities-heart library.
7
+
3
8
## Version 0.7.0 released on 13 January 2019
4
9
5
10
+ Added a ` DisplaySizeLimits ` class.
Original file line number Diff line number Diff line change @@ -60,6 +60,6 @@ private UiVersion() {
60
60
* @return branch and revision (not null, not empty)
61
61
*/
62
62
public static String versionShort () {
63
- return "master 0.7.0+ 1" ;
63
+ return "master 0.7.1" ;
64
64
}
65
65
}
Original file line number Diff line number Diff line change 9
9
baseName = " $artifact -$version "
10
10
}
11
11
12
+ build { dependsOn ' pom' }
12
13
jar { baseName project. ext. baseName }
13
14
javadocJar { baseName project. ext. baseName }
14
15
sourcesJar { baseName project. ext. baseName }
15
16
16
17
dependencies {
17
- // compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
18
- compile project(' :heart' )
18
+ compile " jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion "
19
+ // compile project(':heart')
19
20
}
20
21
21
- build. dependsOn(' pom' )
22
22
task pom {
23
23
doLast {
24
24
pom {
Original file line number Diff line number Diff line change 1
1
# release notes for the jme3-utilities-x library and related tests
2
2
3
+ ## Version 0.2.9 released on TBD
4
+
5
+ Based on version 2.21 of the jme3-utilities-heart library.
6
+
3
7
## Version 0.2.8 released on 6 January 2019
4
8
5
9
+ Allow streaming audio with an ` AudioControl ` .
Original file line number Diff line number Diff line change @@ -60,6 +60,6 @@ private XVersion() {
60
60
* @return branch and revision (not null, not empty)
61
61
*/
62
62
public static String versionShort () {
63
- return "master 0.2.8+1 " ;
63
+ return "master 0.2.9 " ;
64
64
}
65
65
}
You can’t perform that action at this time.
0 commit comments