Author: toad
Date: 2006-09-27 22:34:37 +0000 (Wed, 27 Sep 2006)
New Revision: 10525
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
978:
- Fixes to DSA signature verification.
- Fixed to DSA group generation (not used? in DSA, not DSAGroupGenerator)
- Minor refactoring related to config file code
- Fix error reporting when NIM insert failed
- New error code: META_DATA_NOT_SUPPORTED. Means you tried to insert to e.g.
KSK at something/with/a/subdir - this is not allowed because / indicates a
manifest lookup.
- Make failure to load native FEC very obvious
- Probe request fixes
- Don't wait for a DH pair to be generated, make one in-thread if none are
queued
- New Statistics page, with old stats and a few new swapping stats
- Minor changes to pre-emptive rejection
- Better sanity checking for throttle.dat
- Fix KSK at freesite/file
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-09-27 22:06:02 UTC (rev
10524)
+++ trunk/freenet/src/freenet/node/Version.java 2006-09-27 22:34:37 UTC (rev
10525)
@@ -21,17 +21,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 977;
+ private static final int buildNumber = 978;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 950;
- private static final int newLastGoodBuild = 970;
+ private static final int oldLastGoodBuild = 970;
+ private static final int newLastGoodBuild = 978;
private static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
- // year, month - 1 (or constant), day, jour, minute, second
- _cal.set( 2006, Calendar.SEPTEMBER, 12, 0, 0, 0 );
+ // year, month - 1 (or constant), day, hour, minute, second
+ _cal.set( 2006, Calendar.OCTOBER, 4, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}