Skip to content

Commit e39da6a

Browse files
committed
designate version 1.0.0-alpha.5
1 parent 0c0e845 commit e39da6a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

nbproject/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jar.index=${jnlp.enabled}
5252
javac.classpath=\
5353
${libs.jme3-core.classpath}:\
5454
${libs.jme3-blender.classpath}:\
55-
${libs.jme3-bullet.classpath}:\
5655
${libs.jme3-bullet-native.classpath}:\
5756
${libs.jme3-desktop.classpath}:\
5857
${libs.jme3-lwjgl.classpath}:\
5958
${libs.jme3-niftygui.classpath}:\
6059
${libs.jme3-plugins.classpath}:\
60+
${libs.jme3-terrain.classpath}:\
6161
${file.reference.slf4j-api-1.7.25.jar}:\
6262
${file.reference.logback-core-1.2.3.jar}:\
6363
${file.reference.logback-classic-1.2.3.jar}:\

src/main/java/maud/dialog/EditorDialogs.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ public static void aboutMaud() {
109109
String text = "Maud, by Stephen Gold\n\nYou are c"
110110
+ "urrently using Maud, a jMonkeyEngine application for edit"
111111
+ "ing animated models.\n\nThe version you are using "
112+
+ "is designated 1.0.0-alpha.5 .\n\nIt "
112113
+ "includes the following libraries:";
113114
text += String.format("%n jme3-core version %s",
114115
MyString.quote(JmeVersion.FULL_NAME));
@@ -131,6 +132,8 @@ public static void aboutMaud() {
131132
text += String.format("%n jme3-bullet-native");
132133
text += String.format("%n jme3-desktop");
133134
text += String.format("%n jme3-lwjgl");
135+
text += String.format("%n jme3-niftygui");
136+
text += String.format("%n jme3-plugins");
134137

135138
text += String.format("%n jme3_xbuf_loader");
136139
text += String.format("%n logback-classic%n%n");

src/main/java/maud/model/option/DisplaySettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2017, Stephen Gold
2+
Copyright (c) 2017-2018, Stephen Gold
33
All rights reserved.
44
55
Redistribution and use in source and binary forms, with or without
@@ -59,7 +59,7 @@ public class DisplaySettings {
5959
/**
6060
* application name for the window's title bar
6161
*/
62-
final private static String windowTitle = "Maud";
62+
final private static String windowTitle = "Maud version 1.0.0-alpha.5";
6363
// *************************************************************************
6464
// fields
6565

0 commit comments

Comments
 (0)