Author: toad
Date: 2009-01-13 21:45:17 +0000 (Tue, 13 Jan 2009)
New Revision: 25053

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1197: (mandatory midnight)
Transfer optimisation/load limiting:
- Comment out Saturday's load limiting for transfer optimisation code, and 
yesterday's backoff code.
- Both have been interesting but haven't really solved any problems.
- Bandwidth should go back to normal now.
- We will analyse the performance with the new tools we've added, and then 
probably implement "Proposal for dealing with slow transfers".
Web interface:
- Pass ToadletContainer into useralerts, rather than a LinkFixer.
- Fix some forms which didn't include the formPassword, introduced in 1195, 
including bug #2867.
- Refactor, use addFormChild more widely in useralerts.
L10n:
- French translation update.

toad
regivanx


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2009-01-13 20:16:44 UTC (rev 
25052)
+++ trunk/freenet/src/freenet/node/Version.java 2009-01-13 21:45:17 UTC (rev 
25053)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";
 
        /** The build number of the current revision */
-       private static final int buildNumber = 1196;
+       private static final int buildNumber = 1197;
 
        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 1196;
-       private static final int newLastGoodBuild = 1196;
+       private static final int newLastGoodBuild = 1197;
        static final long transitionTime;
        
        static {
                final Calendar _cal = 
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
                // year, month - 1 (or constant), day, hour, minute, second
-               _cal.set( 2009, Calendar.JANUARY, 12, 0, 0, 0 );
+               _cal.set( 2009, Calendar.JANUARY, 14, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }
        

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to