From: Peep P. <so...@us...> - 2004-03-21 13:12:48
|
Update of /cvsroot/agd/server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25264 Modified Files: ChangeLog NEWS TODO Log Message: New operators - ** and **=. Index: NEWS =================================================================== RCS file: /cvsroot/agd/server/NEWS,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- NEWS 21 Mar 2004 08:56:42 -0000 1.5 +++ NEWS 21 Mar 2004 13:02:37 -0000 1.6 @@ -1,4 +1,5 @@ New things in this version (0.0.2-3) that you might find useful: + * New operators: **, **= * New dfuns: query_ip, query_hostname (use with caution, may block for quite a while), asctime. time() was changed to return seconds since Epoch. Index: TODO =================================================================== RCS file: /cvsroot/agd/server/TODO,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- TODO 21 Mar 2004 12:24:59 -0000 1.10 +++ TODO 21 Mar 2004 13:02:37 -0000 1.11 @@ -9,12 +9,13 @@ - Statistics and profiling ! better conf file handling (see src/log.c) - change 'errorlog' to 'debuglog'? - - scripting: + - lpc: - inheritance - better error recovery for lpc.y ! arrays (T_ARRAY) ! for(), foreach(), switch() ! all of the operators (/doc/lpc/operators) + - ',' - this takes some serious grammar-hacking - mixed type ! string ranges (str[0..1,2..3]) * m.. Index: ChangeLog =================================================================== RCS file: /cvsroot/agd/server/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- ChangeLog 21 Mar 2004 12:24:59 -0000 1.11 +++ ChangeLog 21 Mar 2004 13:02:37 -0000 1.12 @@ -1,6 +1,7 @@ 0.0.2-3: ---------------------------------------------------------------------------- 2004-03-21 + * new operators: ** (power), **= (x = x ** y) * debuglevel can now be set with option "-d=x", where x is a number. * fixed net_send(), was a stupid bug - always sent to this_player. * added type2str() |