summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/gui/intro/About_GUI.java
diff options
context:
space:
mode:
authorMichael Wilson2014-08-25 17:53:02 +0200
committerMichael Wilson2014-08-25 17:53:02 +0200
commit3a2fe7fccd3acaeea925a6765b8a55826096edab (patch)
treecb60e777e580d27a4463fa9eb6d4368dc31d974e /Dozentenmodul/src/gui/intro/About_GUI.java
parentMerge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module (diff)
downloadtutor-module-3a2fe7fccd3acaeea925a6765b8a55826096edab.tar.gz
tutor-module-3a2fe7fccd3acaeea925a6765b8a55826096edab.tar.xz
tutor-module-3a2fe7fccd3acaeea925a6765b8a55826096edab.zip
date geändert
Diffstat (limited to 'Dozentenmodul/src/gui/intro/About_GUI.java')
-rw-r--r--Dozentenmodul/src/gui/intro/About_GUI.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dozentenmodul/src/gui/intro/About_GUI.java b/Dozentenmodul/src/gui/intro/About_GUI.java
index 03ca2d16..644e84dc 100644
--- a/Dozentenmodul/src/gui/intro/About_GUI.java
+++ b/Dozentenmodul/src/gui/intro/About_GUI.java
@@ -23,6 +23,8 @@ public class About_GUI extends JFrame {
private JPanel contentPane;
private JTextPane txtpnVersionVBuilddate;
+ private String buildDate ="25.08.2014";
+ private String version="1.01";
/**
* Create the frame.
@@ -86,7 +88,7 @@ public class About_GUI extends JFrame {
txtpnVersionVBuilddate = new JTextPane();
txtpnVersionVBuilddate
- .setText("Version: v1.0\r\nBuild-Date: 22.08.2014\r\n\r\nContact: michael.wilson@hs-offenburg.de\r\nWebsite: http://bwlehrpool.hs-offenburg.de/");
+ .setText("Version: "+version+"\r\nBuild-Date: "+buildDate+"\r\n\r\nContact: michael.wilson@hs-offenburg.de\r\nWebsite: http://bwlehrpool.hs-offenburg.de/");
txtpnVersionVBuilddate.setEditable(false);
txtpnVersionVBuilddate.setBackground(SystemColor.menu);
txtpnVersionVBuilddate.setBounds(62, 95, 224, 90);