Skip to content
Snippets Groups Projects
Commit 30f6e9c4 authored by apvrille's avatar apvrille
Browse files

update on build version: build.txt

parent 994e3f7a
No related branches found
No related tags found
No related merge requests found
12518
\ No newline at end of file
12519
\ No newline at end of file
......@@ -37,8 +37,6 @@
*/
package ui.util;
......@@ -46,39 +44,40 @@ package ui.util;
* Class DefaultText
* Text of some windows
* Creation: 01/12/2003
* @version 1.1 29/01/2004
*
* @author Ludovic APVRILLE
* @version 1.1 29/01/2004
*/
public class DefaultText {
public class DefaultText {
public static String BUILD = "12518";
public static String DATE = "2018/01/08 11:15:31 CET";
public static String BUILD = "12517";
public static String DATE = "2018/01/08 11:11:13 CET";
public static StringBuffer sbAbout = makeAbout();
public static String getAboutText() {
return new String(sbAbout);
}
public static String getVersion() {
return "1.0beta"; /* Set new release Nov. 16th, 2017 */
}
public static String getFullVersion() {
return getVersion() + " -- build: " + DefaultText.BUILD + " date: " + DefaultText.DATE;
return getVersion() + " -- build: " + DefaultText.BUILD + " date: " + DefaultText.DATE;
}
private static StringBuffer makeAbout() {
StringBuffer sb = new StringBuffer();
sb.append("TTool version " + getFullVersion() + "\n");
sb.append("Copyright IMT - Telecom ParisTech / Ludovic Apvrille \n");
sb.append("\nContact: ludovic.apvrille@telecom-paristech.fr\n");
sb.append("Copyright IMT - Telecom ParisTech / Ludovic Apvrille \n");
sb.append("\nContact: ludovic.apvrille@telecom-paristech.fr\n");
sb.append("\nProgrammers\n\tTelecom ParisTech: Ludovic Apvrille, Dominique Blouin, Fabien Tessier, \n\tDaniel Knorreck, Florian Lugou, Letitia Li\n");
sb.append("\n\tNokia: Andrea Enrici\n");
sb.append("\n\tLIP6: Daniela Genius\n");
sb.append("\n\tNokia: Andrea Enrici\n");
sb.append("\n\tLIP6: Daniela Genius\n");
sb.append("\nFor more information:\n");
sb.append("http://ttool.telecom-paristech.fr/\n\n");
return sb;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment