Author: toad
Date: 2007-12-04 20:08:01 +0000 (Tue, 04 Dec 2007)
New Revision: 16287
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1088:
Opennet Announcements:
- Send our noderef if we want the ref when we accept an announcement.
Unfortunately this wasn't implemented before...
- If we don't want a ref, send a message to say so. Propagate this back to
source.
- Local announcement support and fixes.
- ANNOUNCE:<target> function in TMCI.
- Reject if not an opennet peer and pass opennet refs through darknet is
disabled.
- Fix a bug forwarding announcement replies that caused them to be bounced back
to the sender.
Opennet:
- Pad noderefs with random data, not zeros.
- Allow sending noderefs up to 32K, pad them as appropriate.
L10n:
- Updates to the French translation by batosai.
IP detection:
- Don't run network interface detection more than once every 10 seconds.
Misc Internals:
- Don't hold the lock in USKInserter while running the callbacks.
- Simplify code and locking in ARK insertion code.
Dev stuff:
- Logging.
- Indenting.
- Get rid of PeerNode.opennetDisabled().
- Node.addNewOpennetNode, OpennetManager.addNewOpennetNode now return the added
PeerNode, or null.
- Some newline fixes to TMCI.
batosai
nextgens
toad
Website changes:
- add batosai to the people page. if you want to be on the people page, either
add yourself, or ask me.
- add a postfix to the people page.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-12-04 19:34:38 UTC (rev
16286)
+++ trunk/freenet/src/freenet/node/Version.java 2007-12-04 20:08:01 UTC (rev
16287)
@@ -24,11 +24,11 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1087;
+ private static final int buildNumber = 1088;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1085;
- private static final int newLastGoodBuild = 1087;
+ private static final int newLastGoodBuild = 1088;
static final long transitionTime;
static {