rev 326 - in trunk: . include/prothon
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mark
Date: 2004-04-11 00:30:23 -0400 (Sun, 11 Apr 2004)
New Revision: 326
Modified:
trunk/CHANGES.txt
trunk/include/prothon/prothon.h
Log:
********* weekly release ********
Modified: trunk/CHANGES.txt
===================================================================
--- trunk/CHANGES.txt 2004-04-11 04:27:02 UTC (rev 325)
+++ trunk/CHANGES.txt 2004-04-11 04:30:23 UTC (rev 326)
@@ -1,6 +1,27 @@
----- Prothon Release History ----
+
+Version 0.0.4 - Build 326 - 4/11/04 - Weekly Release
+ - Implemented new "landmine" security model
+ - Added Prothon Thread object and methods
+ - Added Prothon Mutex object and methods
+ Removed lambda from language
+ - Added directed delegation "super": object^func()
+ Added chained compares (a < b < c {ala Python})
+ - Added Object.clone() method that works for most objects
+ - Disabled File access for Guest permission level
+ - Added File.set_stdout() to avoid permission exception when
+ accessing File directly
+ - Using -i option now lets you view variables when script ends
+ - Added test files: chained.pr, defs.pr, and threads.pr
+ - Fixed non-directed delegation "super" for more than two levels
+ of inheritance: ^func()
+ - Fixed problem of def always returning same function object each
+ time def executed same function definition
+ - Fixed bug in param passing in __init__
+ - Internal types now use apr types
+
Version 0.0.3 - Build 282 - 4/04/04 - Weekly Release
- Indents can now have spaces or tabs, but not mixed in blocks
Modified: trunk/include/prothon/prothon.h
===================================================================
--- trunk/include/prothon/prothon.h 2004-04-11 04:27:02 UTC (rev 325)
+++ trunk/include/prothon/prothon.h 2004-04-11 04:30:23 UTC (rev 326)
@@ -49,7 +49,7 @@
* to be bound by the terms and conditions of this License Agreement.
* ====================================================================
*/
-
+
// Prothon.h
#ifndef PROTHON_H