Author: toad
Date: 2005-12-07 21:56:38 +0000 (Wed, 07 Dec 2005)
New Revision: 7688
Modified:
trunk/freenet/src/freenet/node/Version.java
trunk/freenet/src/freenet/support/FileLoggerHook.java
Log:
287:
Doh.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2005-12-07 21:55:27 UTC (rev
7687)
+++ trunk/freenet/src/freenet/node/Version.java 2005-12-07 21:56:38 UTC (rev
7688)
@@ -20,10 +20,10 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- public static final int buildNumber = 286;
+ public static final int buildNumber = 287;
/** Oldest build of Fred we will talk to */
- public static final int lastGoodBuild = 286;
+ public static final int lastGoodBuild = 287;
/** The highest reported build of fred */
public static int highestSeenBuild = buildNumber;
Modified: trunk/freenet/src/freenet/support/FileLoggerHook.java
===================================================================
--- trunk/freenet/src/freenet/support/FileLoggerHook.java 2005-12-07
21:55:27 UTC (rev 7687)
+++ trunk/freenet/src/freenet/support/FileLoggerHook.java 2005-12-07
21:56:38 UTC (rev 7688)
@@ -159,6 +159,7 @@
StringBuffer buf = new StringBuffer(50);
buf.append(baseFilename).append('-');
buf.append(Version.buildNumber);
+ buf.append('-');
buf.append(c.get(Calendar.YEAR)).append('-');
pad2digits(buf, c.get(Calendar.MONTH) + 1);
buf.append('-');