From 105524d9c07ce67cb9f8a43dc7995171df9e3467 Mon Sep 17 00:00:00 2001
From: zzz
Date: Tue, 24 Nov 2009 20:22:31 +0000
Subject: [PATCH] remove another 8887 reference
---
history.txt | 18 ++++++++++++++++++
.../resources/checklist.txt | 0
installer/resources/readme/readme.html | 2 +-
.../java/src/net/i2p/router/RouterVersion.java | 2 +-
4 files changed, 20 insertions(+), 2 deletions(-)
rename checklist.txt => installer/resources/checklist.txt (100%)
diff --git a/history.txt b/history.txt
index 66c39bf3d..c82497128 100644
--- a/history.txt
+++ b/history.txt
@@ -1,4 +1,22 @@
+2009-11-24 zzz
+ * DataStructures: Remove unused Logs
+ * OrderedProperties: Simplify, use in i2psnark
+ * Profiles: Record successes in the DB fail rate
+ too, so we can calculate a percentage
+ * profiles.jsp:
+ - Change fail rate from count to percent
+ - Hide standard profiles by default
+ * Streaming:
+ - When an "immediate" ack is requested, do it within
+ 250 ms (was 2000)
+ - Request immediate acks when < 1/3 of window remains,
+ or when < 3 packets remain in window,
+ and every 8 packets (was when < 2 packets in window remain)
+ - Change requested delay to RTT/2 (was RTO/2)
+ - Log cleanup and javadoc
+
2009-11-21 zzz
+ * GeoIP: Update to Nov 17 2009 data
* Netdb Floodfill rework part 4 of N:
- Search closest-to-the-key
- Put closest-to-the-key in explore don't-include-list
diff --git a/checklist.txt b/installer/resources/checklist.txt
similarity index 100%
rename from checklist.txt
rename to installer/resources/checklist.txt
diff --git a/installer/resources/readme/readme.html b/installer/resources/readme/readme.html
index fdb3682a9..79b7560ca 100644
--- a/installer/resources/readme/readme.html
+++ b/installer/resources/readme/readme.html
@@ -73,7 +73,7 @@ up, you can:
Be patient - I2P may be slow to start the first time as it searches for peers.
If, after 30 minutes, your Active: connected/recent count has less than 10 connected
- peers, you should open port 8887 on your firewall for better connectivity. If
+ peers, you should open I2P's port on your firewall for better connectivity. If
you cannot see any eepsites at all (even www.i2p2.i2p),
be sure your browser proxy is set to 127.0.0.1 port 4444. You may also want
to review the information on the I2P website,
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 67b9de3fe..1ca622af5 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
- public final static long BUILD = 20;
+ public final static long BUILD = 21;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;