Skip to content

Commit eecc7f3

Browse files
committed
Updated version number in main window and about box.
1 parent f3480ce commit eecc7f3

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

nbproject/genfiles.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build.xml.script.CRC32=c2c696bc
33
build.xml.stylesheet.CRC32=be360661
44
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
55
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6-
nbproject/build-impl.xml.data.CRC32=930eed51
6+
nbproject/build-impl.xml.data.CRC32=c8e1978b
77
nbproject/build-impl.xml.script.CRC32=641abd20
88
nbproject/build-impl.xml.stylesheet.CRC32=[email protected]
99
nbproject/profiler-build-impl.xml.data.CRC32=dd25991d

nbproject/project.xml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<word>field's</word>
2020
<word>filesystem</word>
2121
<word>Fisherian</word>
22+
<word>initialize</word>
2223
<word>magnetization</word>
2324
<word>normalized</word>
2425
<word>panel's</word>

src/net/talvi/puffinplot/window/AboutBox.form

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<Properties>
7878
<Property name="horizontalAlignment" type="int" value="0"/>
7979
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
80-
<Connection code="&quot;Version 1.0. Build date: &quot;+PuffinApp.getInstance().getBuildProperty(&quot;build.date&quot;)" type="code"/>
80+
<Connection code="&quot;Version 1.01. Build date: &quot;+PuffinApp.getInstance().getBuildProperty(&quot;build.date&quot;)" type="code"/>
8181
</Property>
8282
<Property name="alignmentX" type="float" value="0.5"/>
8383
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">

src/net/talvi/puffinplot/window/AboutBox.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private void initComponents() {
109109
getContentPane().add(jScrollPane1);
110110

111111
jLabel3.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
112-
jLabel3.setText("Version 1.0. Build date: "+PuffinApp.getInstance().getBuildProperty("build.date"));
112+
jLabel3.setText("Version 1.01. Build date: "+PuffinApp.getInstance().getBuildProperty("build.date"));
113113
jLabel3.setAlignmentX(0.5F);
114114
jLabel3.setMaximumSize(new java.awt.Dimension(500, 30));
115115
jLabel3.setMinimumSize(new java.awt.Dimension(45, 30));

src/net/talvi/puffinplot/window/MainWindow.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public WelcomeMessage() {
103103
super();
104104
setBorder(new EmptyBorder(12, 12, 12, 12));
105105
setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
106-
add(new JLabel("Welcome to PuffinPlot, version 1.0. This puffin hatched on "+
106+
add(new JLabel("Welcome to PuffinPlot, version 1.01. This puffin hatched on "+
107107
app.getBuildProperty("build.date") +"."));
108108
add(new JLabel("PuffinPlot is copyright 2012 by Pontus Lurcock."));
109109
add(new JLabel("PuffinPlot is distributed under the GNU General Public License."));

0 commit comments

Comments
 (0)