[Webfunds-commits] lib SOX.jar WebFunds.jar javadoc.zip jdimages.zip src.zip
Ian Grigg
iang@cypherpunks.ai
Wed, 15 Nov 2000 05:00:08 -0400 (AST)
iang 00/11/15 05:00:07
Modified: download Makefile README.html
webfunds/client/utils UpgradesManager.java
webfunds/utils SecureRandomHack.java
. SOX.jar WebFunds.jar javadoc.zip jdimages.zip
src.zip
Log:
for 1.7.4
Revision Changes Path
1.15 +1 -1 html/download/Makefile
Index: Makefile
===================================================================
RCS file: /home/webfunds/cvsroot/html/download/Makefile,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- Makefile 2000/10/02 14:16:05 1.14
+++ Makefile 2000/11/15 08:59:56 1.15
@@ -36,7 +36,7 @@
all: $(FUNZJAR) $(SRCZIP)
# makezip is the primary, not make
- ./makezip www export -d 'Glitter.asc'
+ ./makezip www export -d 'Glitter.asc' -d 'BeerVouchers.asc'
test: $(FUNZJAR) $(SRCZIP)
# makezip is the primary, not make
1.4 +21 -2 html/download/README.html
Index: README.html
===================================================================
RCS file: /home/webfunds/cvsroot/html/download/README.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.html 2000/10/28 18:14:25 1.3
+++ README.html 2000/11/15 08:59:56 1.4
@@ -52,9 +52,28 @@
<p>
Current Version:
-<a href="http://www.webfunds.org/download/WebFunds-1.7.3.zip">
- <b>1.7.3</b></a>:
+<a href="http://www.webfunds.org/download/WebFunds-1.7.4.zip">
+ <b>1.7.4</b></a>:
+ <p></p>
+ <p align=center><b><i>
+ Changes in 1.7.4 (mostly a checkpoint release):
+ </i></b></p>
+
+ <ul><li>
+ Added a new test contract called BeerVouchers.
+ </li><li>
+ Fixed bug in Contracts to permit shares to be read
+ and added as subaccounts.
+ </li><li>
+ Abstract Payments now "complete" in WebFunds, Tokens
+ can be sent, but server treats them as ordinary.
+ </li><li>
+ Added new Pay box inside the SOXWallet, same as other
+ one but adds some wallet specific things such as a
+ Token Payment, and a Rollover (do not use this latter,
+ completely untested :<).
+ </li></ul>
<p></p>
<p align=center><b><i>
Changes in 1.7.3:
1.3 +4 -3 java/webfunds/client/utils/UpgradesManager.java
Index: UpgradesManager.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/utils/UpgradesManager.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- UpgradesManager.java 2000/11/09 13:28:21 1.2
+++ UpgradesManager.java 2000/11/15 08:59:56 1.3
@@ -1,5 +1,5 @@
/*
- * $Id: UpgradesManager.java,v 1.2 2000/11/09 13:28:21 iang Exp $
+ * $Id: UpgradesManager.java,v 1.3 2000/11/15 08:59:56 iang Exp $
*
* Copyright (c) 2000 Systemics Inc on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -624,8 +624,9 @@
}
ui.infoMessage("package " + f.getName() + " is installed.\n\n" +
- "Now restart WebFunds and the package should be started.\n\n" +
- "( Later generations of WebFunds should handle this better.)");
+ "Now restart WebFunds and the package should be found.\n\n" +
+// "( Later generations of WebFunds should handle this better.)" +
+ "");
//PackageStarterChoice ps = new PackageStarterChoice(f);
}
1.4 +5 -4 java/webfunds/utils/SecureRandomHack.java
Index: SecureRandomHack.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/utils/SecureRandomHack.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SecureRandomHack.java 2000/06/05 00:56:15 1.3
+++ SecureRandomHack.java 2000/11/15 08:59:56 1.4
@@ -1,4 +1,4 @@
-/* $Id: SecureRandomHack.java,v 1.3 2000/06/05 00:56:15 iang Exp $
+/* $Id: SecureRandomHack.java,v 1.4 2000/11/15 08:59:56 iang Exp $
*
* Copyright (c) 2000 Systemics Inc. on behalf of
* The WebFunds Development Team. All rights reserved.
@@ -22,7 +22,7 @@
* This will only improve speed on UN*X, Windows and Mac don't have
* a /dev/random nor something equivalent.
*
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
* @author Jeroen C. van Gelderen (gelderen@systemics.com)
*/
public final class SecureRandomHack
@@ -76,12 +76,13 @@
off += count;
todo -= count;
}
+ System.err.println(RANDOM_DEV + " appears successful.");
return seed;
}
catch(IOException e)
{
- e.printStackTrace();
- System.err.println("Ignoring exception: " + e);
+ // e.printStackTrace();
+ System.err.println("No " + RANDOM_DEV + " available.");
return null;
}
}