Author: toad
Date: 2006-11-11 00:52:29 +0000 (Sat, 11 Nov 2006)
New Revision: 10874
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
994 changelog:
- fix always-shrink-on-startup bug (would also result in node exceeding its
maximum size eventually)
- fix "lowering the priority of a request doesn't work" bug
- implement TOO_MANY_PATH_COMPONENTS (any file you accessed as CHK at
blah,blah,blah/filename that doesn't actually include the filename must now be
accessed as CHK at blah,blah,blah; may be disruptive; this is always on for
fproxy and some internal stuff, but is off by default for FCP; control it with
node.ignoreTooManyPathComponents).
- more/better/renamed stats via FCP
- fix minor bug in RequestHandler, might have an effect on load limiting
(thanks UniquePerson)
- fix FINs and require confirmation
- much faster HTMLEncoder (thanks UniquePerson), also escape null character
- first draft of a browser test toadlet (a page which identifies whether your
browser is configured for optimal performance/security with freenet)
- fix "wget not able to access fproxy" bug (Connection header)
- fix Null: data block 0 bug (maybe also some infinite recursions)
- minor fixes to N2NTM's
- fix possible bug in copying bugckets
- always write fproxy.port to freenet.ini
- fproxy use of javascript is optional and off by default
- fix can't-remove-peer bug
- add encoding type to some forms
- fix some feedback bugs in TMCI (nextgens)
- make HTTPRequest always turn POSTed data into Part's and url parameters as
Param's; adjust toadlets to deal with this
- allow larger files to be uploaded through the browser (remove 1MB limit)
- don't use ' because it's not in HTML
- variable and css changes: backedoff -> backedOff / backed_off, misRouting ->
routingMiss
- refactoring of toadlets
- minor refactorings
- lots of trivial optimisations (UniquePerson)
- time formatting changes
- logging
- indenting, imports, etc
Thanks to:
- toad
- nextgens
- Unique Person (on Frost)
- zothar
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-11-11 00:51:36 UTC (rev
10873)
+++ trunk/freenet/src/freenet/node/Version.java 2006-11-11 00:52:29 UTC (rev
10874)
@@ -24,7 +24,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 993;
+ private static final int buildNumber = 994;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 978;