File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,12 @@ jar.index=${jnlp.enabled}
52
52
javac.classpath =\
53
53
${libs.jme3-core.classpath} :\
54
54
${libs.jme3-blender.classpath} :\
55
- ${libs.jme3-bullet.classpath} :\
56
55
${libs.jme3-bullet-native.classpath} :\
57
56
${libs.jme3-desktop.classpath} :\
58
57
${libs.jme3-lwjgl.classpath} :\
59
58
${libs.jme3-niftygui.classpath} :\
60
59
${libs.jme3-plugins.classpath} :\
60
+ ${libs.jme3-terrain.classpath} :\
61
61
${file.reference.slf4j-api-1.7.25.jar} :\
62
62
${file.reference.logback-core-1.2.3.jar} :\
63
63
${file.reference.logback-classic-1.2.3.jar} :\
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ public static void aboutMaud() {
109
109
String text = "Maud, by Stephen Gold\n \n You are c"
110
110
+ "urrently using Maud, a jMonkeyEngine application for edit"
111
111
+ "ing animated models.\n \n The version you are using "
112
+ + "is designated 1.0.0-alpha.5 .\n \n It "
112
113
+ "includes the following libraries:" ;
113
114
text += String .format ("%n jme3-core version %s" ,
114
115
MyString .quote (JmeVersion .FULL_NAME ));
@@ -131,6 +132,8 @@ public static void aboutMaud() {
131
132
text += String .format ("%n jme3-bullet-native" );
132
133
text += String .format ("%n jme3-desktop" );
133
134
text += String .format ("%n jme3-lwjgl" );
135
+ text += String .format ("%n jme3-niftygui" );
136
+ text += String .format ("%n jme3-plugins" );
134
137
135
138
text += String .format ("%n jme3_xbuf_loader" );
136
139
text += String .format ("%n logback-classic%n%n" );
Original file line number Diff line number Diff line change 1
1
/*
2
- Copyright (c) 2017, Stephen Gold
2
+ Copyright (c) 2017-2018 , Stephen Gold
3
3
All rights reserved.
4
4
5
5
Redistribution and use in source and binary forms, with or without
@@ -59,7 +59,7 @@ public class DisplaySettings {
59
59
/**
60
60
* application name for the window's title bar
61
61
*/
62
- final private static String windowTitle = "Maud" ;
62
+ final private static String windowTitle = "Maud version 1.0.0-alpha.5 " ;
63
63
// *************************************************************************
64
64
// fields
65
65
You can’t perform that action at this time.
0 commit comments