Committing GPL 3.

This commit is contained in:
Marcel Kronfeld 2009-03-18 15:54:07 +00:00
parent b41d34a634
commit df0d2ced0e
2 changed files with 8 additions and 5 deletions

View File

@ -55,11 +55,12 @@ package eva2;
public class EvAInfo {
public static final String productName = "EvA 2";
public static final String productLongName = "Evolutionary Algorithms Workbench 2";
public static final String versionNum = new String ("2.030");
public static final String versionNum = new String ("2.034");
public static final String url = "http://www.ra.cs.uni-tuebingen.de/software/EvA2";
public static final String propertyFile = "resources/EvA2.props";
public static final String licenseFile = "lgpl-3.0.txt";
public static final String LGPLFile = "lgpl-3.0.txt";
public static final String GPLFile= "gpl-3.0.txt";
public static final String iconLocation = "resources/images/icon4.gif";
public static final String splashLocation = "resources/images/splashScreen2.png";

View File

@ -725,9 +725,11 @@ public class EvAClient implements RemoteStateListener, Serializable {
}
private void showLicense() {
HtmlDemo temp = new HtmlDemo(EvAInfo.licenseFile);
temp.show();
}
HtmlDemo lgpl = new HtmlDemo(EvAInfo.LGPLFile);
HtmlDemo gpl = new HtmlDemo(EvAInfo.GPLFile);
gpl.show();
lgpl.show();
}
private void showNoHostFoundDialog() {
JOptionPane.showMessageDialog(m_Frame.getContentPane(), "No host with running EVASERVER found. Please start one or \nadd the correct address to the properties list.", EvAInfo.infoTitle, 1);