This commit is contained in:
zzz
2013-03-08 13:03:50 +00:00
parent 77cfe0be01
commit 9b0c481525
7 changed files with 9 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ package net.i2p;
public class CoreVersion { public class CoreVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = "0.9.4"; public final static String VERSION = "0.9.5";
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION); System.out.println("I2P Core version: " + VERSION);

View File

@@ -55,7 +55,7 @@ public final class I2PDatagramDissector {
* Load an I2P repliable datagram into the dissector. * Load an I2P repliable datagram into the dissector.
* Does NOT verify the signature. * Does NOT verify the signature.
* *
* @param dgram non-null I2P repliable datagram to be loader * @param dgram non-null I2P repliable datagram to be loaded
* *
* @throws DataFormatException If there's an error in the datagram format * @throws DataFormatException If there's an error in the datagram format
*/ */

View File

@@ -1,3 +1,5 @@
* 2013-03-08 0.9.5 released
2013-03-03 zzz 2013-03-03 zzz
* graphs.jsp: Fix saving settings (ticket #857) * graphs.jsp: Fix saving settings (ticket #857)

View File

@@ -4,7 +4,7 @@
<info> <info>
<appname>i2p</appname> <appname>i2p</appname>
<appversion>0.9.4</appversion> <appversion>0.9.5</appversion>
<authors> <authors>
<author name="I2P" email="http://www.i2p2.de/"/> <author name="I2P" email="http://www.i2p2.de/"/>
</authors> </authors>

View File

@@ -67,7 +67,7 @@ public class DeliveryInstructions extends DataStructureImpl {
public boolean getEncrypted() { return _encrypted; } public boolean getEncrypted() { return _encrypted; }
/** /**
* For cloves only (not tunnels), default null, unused * For cloves only (not tunnels), default false, unused
* @deprecated unused * @deprecated unused
*/ */
public void setEncrypted(boolean encrypted) { _encrypted = encrypted; } public void setEncrypted(boolean encrypted) { _encrypted = encrypted; }
@@ -79,7 +79,7 @@ public class DeliveryInstructions extends DataStructureImpl {
public SessionKey getEncryptionKey() { return _encryptionKey; } public SessionKey getEncryptionKey() { return _encryptionKey; }
/** /**
* For cloves only (not tunnels), default false, unused * For cloves only (not tunnels), default null, unused
* @deprecated unused * @deprecated unused
*/ */
public void setEncryptionKey(SessionKey key) { _encryptionKey = key; } public void setEncryptionKey(SessionKey key) { _encryptionKey = key; }

View File

@@ -132,7 +132,7 @@ public class JobQueue {
"How many jobs do we drop due to insane overload?", "How many jobs do we drop due to insane overload?",
"JobQueue", "JobQueue",
new long[] { 60*1000l, 60*60*1000l, 24*60*60*1000l }); new long[] { 60*1000l, 60*60*1000l, 24*60*60*1000l });
// following are for JobQueue // following are for JobQueueRunner
_context.statManager().createRateStat("jobQueue.jobRun", "How long jobs take", "JobQueue", new long[] { 60*60*1000l, 24*60*60*1000l }); _context.statManager().createRateStat("jobQueue.jobRun", "How long jobs take", "JobQueue", new long[] { 60*60*1000l, 24*60*60*1000l });
_context.statManager().createRateStat("jobQueue.jobRunSlow", "How long jobs that take over a second take", "JobQueue", new long[] { 60*60*1000l, 24*60*60*1000l }); _context.statManager().createRateStat("jobQueue.jobRunSlow", "How long jobs that take over a second take", "JobQueue", new long[] { 60*60*1000l, 24*60*60*1000l });
_context.statManager().createRequiredRateStat("jobQueue.jobLag", "Job run delay (ms)", "JobQueue", new long[] { 60*1000l, 60*60*1000l, 24*60*60*1000l }); _context.statManager().createRequiredRateStat("jobQueue.jobLag", "Job run delay (ms)", "JobQueue", new long[] { 60*1000l, 60*60*1000l, 24*60*60*1000l });

View File

@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 12; public final static long BUILD = 0;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";