Author: toad
Date: 2007-11-19 20:42:42 +0000 (Mon, 19 Nov 2007)
New Revision: 15856

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1074: (mandatory 21/nov)
- Remove old (insecure w.r.t. packet size) noderef transfer code. We now only 
send noderefs by padded bulk transfer.
- Optional activelinks for bookmarks. Fix a bug preventing re-editing of 
bookmarks.
- Infrastructure for port forwarding detection. Not complete yet.
- Plugins may now register FCP commands. We pass in the has-full-access flag so 
plugins may restrict access. GetPluginInfo command to find out whether an FCP 
plugin is loaded. Do not use this API yet, it will change significantly in next 
build.
- Big red warning on plugins page.
- Fix multi-byte UTF-8 encoded URLs (decoding) - caused problems with encoded 
freenet URLs involving foreign chars. Fix some unit tests. Actually encode URLs 
in some places where we intended to but didn't.
- Fix an NPE on completing a probe request
- Fix TMCI preventing startup when no IPv6 support
- Refactoring prior to adding SSL support for FCP etc. (Thanks ET at frost!)
- Filter: Fix broken JPEGs
- Restart immediately when have a corrupt datastore database.
- Don't make the user think we changed the persistent temp directory when we 
didn't.
- Update default freesite indexes, add The Ultimate FreeNet Index, update 
descriptions, editions, move Entry Point to the bottom as it's not been 
maintained since july
- Don't leak a filehandle filtering JPEGs
- Move plugins cache to nodeDir/plugins not ./plugins
- HTML tidy up (wrong infobox) in config page
- Tidy up startup toadlet: don't show chopped off lines, don't try to show log 
and fail if it's less than 2000 bytes.
- Move fetch-a-key box below bookmarks
- Minor fix to allowed hosts code - fallback to default if set to empty
- Make sure we unregister the no-node-name-set alert when setting it in the 
first time wizard
- Optimise startup toadlet: Read the config file only once.
- Trivial refactorings
- Fix tempIPAddressHint when includeLocalAddresses = true
- German translation update

nextgens
bombe
saces
ET at mj+bSV4hxRMtCj9fcwy4Ww9_3mc
toad

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-11-19 20:38:13 UTC (rev 
15855)
+++ trunk/freenet/src/freenet/node/Version.java 2007-11-19 20:42:42 UTC (rev 
15856)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 1073;
+       private static final int buildNumber = 1074;

        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 1069;
-       private static final int newLastGoodBuild = 1070;
+       private static final int oldLastGoodBuild = 1070;
+       private static final int newLastGoodBuild = 1074;
        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.OCTOBER, 30, 0, 0, 0 );
+               _cal.set( 2007, Calendar.NOVEMBER, 21, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to