summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-02-07 11:35:19 +0000
committerPaul Buetow <paul@buetow.org>2009-02-07 11:35:19 +0000
commitfd086f5895ba56fb8b6282929c8ed1357e0b5069 (patch)
tree5b392100eb1dd1a4197e9a0608ea0be1d57ad357
parent0031991fad54c376b742b1a425531345638cbf57 (diff)
few mods
-rw-r--r--client/AboutWindow.java8
-rw-r--r--client/LicenseWindow.java2
-rw-r--r--shared/Config.java2
3 files changed, 6 insertions, 6 deletions
diff --git a/client/AboutWindow.java b/client/AboutWindow.java
index 0958644..d3e8008 100644
--- a/client/AboutWindow.java
+++ b/client/AboutWindow.java
@@ -18,8 +18,8 @@ public class AboutWindow extends InfoWindow {
public AboutWindow(NetCalendarClient netCalendarClient) {
super(netCalendarClient, "About",
Config.VERSION + "\n" +
- "Copyright (C) 2006 by Paul C. Bütow; " +
- "Web: impressum.pblabs.net; E-Mail: " + getEmailAddr() + "\n\n" +
+ "Copyright (C) 2006, 2009 by Paul C. Buetow; " +
+ "Web: netcalendar.buetow.org; E-Mail: " + getEmailAddr() + "\n\n" +
"NetCalendar is a network capable and mostly UNIX /usr/bin/calendar database compatible Calendar application " +
"programmed in Java. Its initial motivation was a programming project at the Aachen " +
"University of Applied Sciences (www.fh-aachen.de) for the object oriented " +
@@ -29,7 +29,7 @@ public class AboutWindow extends InfoWindow {
"for testing and suggestions for improvements; Web: www.b78.org\n\n" +
"Prof. Dr. rer. nat. H. Fassbender " +
"for supervision of expert opinion; Web: www.fassbender.fh-aachen.de\n\n" +
- "Florian P. Bütow " +
+ "Florian P. Buetow " +
"for ideas concerning the splash image; Web: www.florianbuetow.com"
);
}
@@ -42,7 +42,7 @@ public class AboutWindow extends InfoWindow {
* @return Returns a string containing the contact email address.
*/
private static String getEmailAddr() {
- String sEmail = "paul at buetow dot org";
+ String sEmail = "netcalendar at dev dot buetow dot org";
sEmail = sEmail.replaceAll(" at ", "@");
return sEmail.replaceAll(" dot ", ".");
}
diff --git a/client/LicenseWindow.java b/client/LicenseWindow.java
index c06f320..0f683ed 100644
--- a/client/LicenseWindow.java
+++ b/client/LicenseWindow.java
@@ -16,7 +16,7 @@ public class LicenseWindow extends InfoWindow {
public LicenseWindow(NetCalendarClient netCalendarClient) {
super(netCalendarClient, "License",
Config.VERSION + "\n" +
- "Copyright (C) 2006 by Paul C. Bütow\n\n" +
+ "Copyright (C) 2006, 2009 by Paul C. Buetow\n\n" +
"This program is free software; you can redistribute it and/or " +
"modify it under the terms of the GNU General Public License " +
"as published by the Free Software Foundation; either version 2 " +
diff --git a/shared/Config.java b/shared/Config.java
index 169f11b..a256eff 100644
--- a/shared/Config.java
+++ b/shared/Config.java
@@ -11,7 +11,7 @@ import java.io.*;
*
*/
public final class Config {
- public static final String VERSION = "NetCalendar 1.0 RC 6 CVS";
+ public static final String VERSION = "NetCalendar 1.0 RC 6 SVN";
private static final String CONFIG_FILE = "config.txt";
private static HashMap mapConfigVals;