Author: toad
Date: 2007-06-22 17:16:57 +0000 (Fri, 22 Jun 2007)
New Revision: 13710
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1039:
- MANDATORY 0:00 MONDAY 25 JUNE
- Further improvements to probe requests.
- Detect the difference between our clock and that of our peers. If there is
more than 24h difference, refuse to route to that node. Display the delta on
the friends page in advanced mode.
- Use a long-lived MersenneTwister rather than Yarrow to generate padding.
- Container bugfixes.
- A few bugfixes related to swati's work on spiders: AllowedMIMETypes will now
work with containers, we don't let a client subscribe twice to the same USK,
NOT_ENOUGH_METASTRINGS is handled at the client layer (so when you get such an
error as a plugin or over FCP, you get the suggested redirect).
- Fix constant "In wrong priority class:" (NORMAL log level) messages when
change priority of the highest prio request.
- Logging fixes
Related:
- Swati's XMLSpider seems to be working now. She's also been working on
XMLLibrarian.
- Lots of work on JFCP
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-06-22 17:03:52 UTC (rev
13709)
+++ trunk/freenet/src/freenet/node/Version.java 2007-06-22 17:16:57 UTC (rev
13710)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1038;
+ private static final int buildNumber = 1039;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1037;
- private static final int newLastGoodBuild = 1038;
+ private static final int oldLastGoodBuild = 1038;
+ private static final int newLastGoodBuild = 1039;
static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2007, Calendar.JUNE, 22, 0, 0, 0 );
+ _cal.set( 2007, Calendar.JUNE, 25, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}