diff --git a/buildnum.properties b/buildnum.properties index e07de5f..cc5bbaa 100644 --- a/buildnum.properties +++ b/buildnum.properties @@ -1,3 +1,3 @@ #ANT Task: ch.oscg.jreleaseinfo.BuildNumberHandler -#Fri Jun 29 06:58:32 PDT 2012 -build.num.last=3 +#Fri Aug 24 02:59:30 PDT 2012 +build.num.last=4 diff --git a/mobibot.iws b/mobibot.iws index 2ceddf4..d18b42a 100644 --- a/mobibot.iws +++ b/mobibot.iws @@ -34,12 +34,8 @@ - - - - @@ -142,9 +138,9 @@ - + - + @@ -295,9 +291,10 @@ - @@ -361,7 +358,7 @@ - + @@ -413,6 +410,34 @@ + + + + + + + + + + + + + + + + + + @@ -461,34 +486,6 @@ - - - - - - - - - - - - - - - - - - @@ -510,12 +507,12 @@ - + - + @@ -549,8 +546,8 @@ - + @@ -560,8 +557,8 @@ - + @@ -610,24 +607,6 @@ - + - - + - + - + @@ -916,6 +912,7 @@ + @@ -923,8 +920,8 @@ - + @@ -1099,9 +1096,19 @@ - + - + + + + + + + + + + + @@ -1114,30 +1121,16 @@ - + - - - - - - - - - - - - - - - + - + - + diff --git a/src/net/thauvin/erik/mobibot/Mobibot.java b/src/net/thauvin/erik/mobibot/Mobibot.java index a117ede..e6880b9 100644 --- a/src/net/thauvin/erik/mobibot/Mobibot.java +++ b/src/net/thauvin/erik/mobibot/Mobibot.java @@ -96,7 +96,8 @@ public class Mobibot extends PircBot * The version strings. */ private static final String[] VERSION_STRS = - {"Version: " + ReleaseInfo.getVersion() + '.' + ReleaseInfo.getBuildNumber() + " (" + ISO_SDF.format(ReleaseInfo.getBuildDate()) + ')', + {"Version: " + ReleaseInfo.getVersion() + '.' + ReleaseInfo.getBuildNumber() + " (" + ISO_SDF + .format(ReleaseInfo.getBuildDate()) + ')', "Platform: " + System.getProperty("os.name") + " (" + System.getProperty("os.version") + ", " + System .getProperty("os.arch") + ", " + System.getProperty("user.country") + ')', "Runtime: " + System.getProperty("java.runtime.name") + " (build " + System @@ -2757,7 +2758,8 @@ public class Mobibot extends PircBot if (split != -1) { - entry.addComment(comments[j].substring(split + 2).trim(), comments[j].substring(0, split)); + entry.addComment(comments[j].substring(split + 2).trim(), + comments[j].substring(0, split).trim()); } } @@ -2903,7 +2905,7 @@ public class Mobibot extends PircBot if (entry.getCommentsCount() > 0) { - buff.append("

"); + buff.append("

"); final EntryComment[] comments = entry.getComments(); @@ -2913,7 +2915,7 @@ public class Mobibot extends PircBot if (j > 0) { - buff.append("
"); + buff.append("
"); } buff.append(comment.getNick()).append(": ").append(comment.getComment()); diff --git a/src/net/thauvin/erik/mobibot/ReleaseInfo.java b/src/net/thauvin/erik/mobibot/ReleaseInfo.java index ea5f250..f02a294 100644 --- a/src/net/thauvin/erik/mobibot/ReleaseInfo.java +++ b/src/net/thauvin/erik/mobibot/ReleaseInfo.java @@ -1,5 +1,5 @@ /* Created by JReleaseInfo AntTask from Open Source Competence Group */ -/* Creation date Fri Jun 29 06:58:32 PDT 2012 */ +/* Creation date Fri Aug 24 02:59:30 PDT 2012 */ package net.thauvin.erik.mobibot; import java.util.Date; @@ -20,21 +20,21 @@ public class ReleaseInfo { } - /** buildDate (set during build process to 1340978312640L). */ - private static final Date buildDate = new Date(1340978312640L); + /** buildDate (set during build process to 1345802370733L). */ + private static final Date buildDate = new Date(1345802370733L); /** - * Get buildDate (set during build process to Fri Jun 29 06:58:32 PDT 2012). + * Get buildDate (set during build process to Fri Aug 24 02:59:30 PDT 2012). * @return Date buildDate */ public static Date getBuildDate() { return buildDate; } /** - * Get buildNumber (set during build process to 3). + * Get buildNumber (set during build process to 4). * @return int buildNumber */ - public static int getBuildNumber() { return 3; } + public static int getBuildNumber() { return 4; } /** project (set during build process to "mobibot"). */