Author: toad
Date: 2008-04-23 23:18:53 +0000 (Wed, 23 Apr 2008)
New Revision: 19539

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1143:
Web interface:
- Fix HTML-based useralerts, were not showing on the homepage summary.
- Some UserAlert's are events: download/upload completion and updated bookmarks.
- If there are at least 2 in the summary, offer a button to delete all of them.
- Bookmarks: Add wavey's flog.
- Bookmark update notifications had broken links ("USK at ..." instead of "/USK 
at ...").
- When hiding an alert, go back to the alerts page unless there are none left 
(in which case go to the homepage).
Config:
- If wrapper.conf exists and is readable, writable, and parent dir is writable, 
make maximum memory usage configurable on the config page and in the first-time 
config wizard.
- Get rid of "I don't know" as default option meaning 15K. Default to 512/128k, 
meaning 12K.
Client layer:
- SimpleManifestPutter.PutHandler.finished is never written, use parent's 
finished.
L10n:
- Shorter and clearer announcement warning text mostly from mrogers.
- Some wording cleanups of config options.
- Localise some english strings in the dropdowns in the first-time wizard.
Stats:
- Track running local UIDs and remote UIDs separately for each request type.
- Check the global UID tracker before adding to the UIDs list for the specific 
type. Prevents a leak when a UID is reused across two types of request. Only a 
big problem given the previous item.
- Show how many are local.
- Factor out the code that displays the count of each type of peer. This was 
duplicated, also fix a few types that were in one but not the other.
- Fix a small CSS glitch in that code.
Dev stuff:
- Rename Node.storeShutdownHook to Node.shutdownHook, and move some code around.
- Factor out BDB Environment init to a static method on BDBFS. **** WILL BE 
REMOVED SOON ****
- Make some variables final.
- Logging.
- Imports.
Unit tests:
- Fix a nonfunctional test for SimpleFieldSet.

Installer:
- Set revision to -rc1 for now.
- Tell the user we are done after finishing the install, on Windows as well as 
*nix.

dbkr
j16sdiz
(mrogers contributed some improved text)
nextgens
toad
wavey

Thingamablog (dieppe, nextgens):
- Fix NPE.
- build.xml change w.r.t. l10n.
- Fix bugs w.r.t. importing old flogs and importing flogs from upstream 
thingamablog.


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-04-23 23:15:44 UTC (rev 
19538)
+++ trunk/freenet/src/freenet/node/Version.java 2008-04-23 23:18:53 UTC (rev 
19539)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";

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

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 1140;
-       private static final int newLastGoodBuild = 1142;
+       private static final int newLastGoodBuild = 1143;
        static final long transitionTime;

        static {
                final Calendar _cal = 
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
                // year, month - 1 (or constant), day, hour, minute, second
-               _cal.set( 2008, Calendar.APRIL, 24, 0, 0, 0 );
+               _cal.set( 2008, Calendar.APRIL, 25, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to