(not yet tagging this 0.5, but I don't think there's anytihng left)

2005-02-17  jrandom
    * If the clock is adjusted during a job run, don't act as if the job took
      negative time.
This commit is contained in:
jrandom
2005-02-17 22:57:53 +00:00
committed by zzz
parent aa3a44c42a
commit 15a0dcf4d8
6 changed files with 15 additions and 8 deletions

View File

@ -14,8 +14,8 @@ package net.i2p;
* *
*/ */
public class CoreVersion { public class CoreVersion {
public final static String ID = "$Revision: 1.26.2.1 $ $Date: 2005/02/09 13:46:58 $"; public final static String ID = "$Revision: 1.27 $ $Date: 2005/02/16 17:23:50 $";
public final static String VERSION = "0.5-pre"; public final static String VERSION = "0.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

@ -1,4 +1,8 @@
$Id: history.txt,v 1.144 2005/02/17 12:59:29 jrandom Exp $ $Id: history.txt,v 1.145 2005/02/17 15:55:07 jrandom Exp $
2005-02-17 jrandom
* If the clock is adjusted during a job run, don't act as if the job took
negative time.
2005-02-17 jrandom 2005-02-17 jrandom
* Included the GPL'ed susimail 0.13 by default (thanks susi23!) * Included the GPL'ed susimail 0.13 by default (thanks susi23!)

View File

@ -4,7 +4,7 @@
<info> <info>
<appname>i2p</appname> <appname>i2p</appname>
<appversion>0.4.2.6</appversion> <appversion>0.5</appversion>
<authors> <authors>
<author name="I2P" email="support@i2p.net"/> <author name="I2P" email="support@i2p.net"/>
</authors> </authors>

View File

@ -50,7 +50,7 @@ and they'll show up. Your eepsite's
<a href="/i2ptunnel/">configuration page</a> - if you want other people to see your eepsite, <a href="/i2ptunnel/">configuration page</a> - if you want other people to see your eepsite,
you need to give them that really huge string. Just paste it into the you need to give them that really huge string. Just paste it into the
<a href="http://forum.i2p/viewforum.php?f=16">Eepsite announce</a> forum, add it to <a href="http://forum.i2p/viewforum.php?f=16">Eepsite announce</a> forum, add it to
ugha's <a href="http://ugha.i2p/I2pLinks">wiki</a>, or paste it in the #i2p or #i2p-chat channels on ugha's <a href="http://ugha.i2p/I2pLinks">wiki</a>, <a href="http://orion.i2p/">orion's list</a>, or paste it in the #i2p or #i2p-chat channels on
IRC (be sure to split it into two lines, as its too long for one).</p> IRC (be sure to split it into two lines, as its too long for one).</p>
<h2><a name="trouble">Troubleshooting</a></h2> <h2><a name="trouble">Troubleshooting</a></h2>

View File

@ -499,6 +499,9 @@ public class JobQueue {
MessageHistory hist = _context.messageHistory(); MessageHistory hist = _context.messageHistory();
long uptime = _context.router().getUptime(); long uptime = _context.router().getUptime();
if (lag < 0) lag = 0;
if (duration < 0) duration = 0;
JobStats stats = null; JobStats stats = null;
if (!_jobStats.containsKey(key)) { if (!_jobStats.containsKey(key)) {
_jobStats.put(key, new JobStats(key)); _jobStats.put(key, new JobStats(key));

View File

@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
* *
*/ */
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.140 $ $Date: 2005/02/16 23:08:35 $"; public final static String ID = "$Revision: 1.141 $ $Date: 2005/02/17 12:59:28 $";
public final static String VERSION = "0.5-pre"; public final static String VERSION = "0.5";
public final static long BUILD = 14; public final static long BUILD = 0;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION); System.out.println("I2P Router version: " + VERSION);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);