Changeset 713 for trunk/readme.txt

Show
Ignore:
Timestamp:
12/24/05 20:40:25 (3 years ago)
Author:
kris
Message:

latest updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/readme.txt

    r703 r713  
    1 Mango Release 1.7 
     1Mango Release 2.0 
    22 
    33- Note that some Mango features require the latest dmd compiler; the dependencies are related to the new version= behaviour, and various dmd bug fixes 
    44 
    5 - Please check out the mango/examples/ directory 
    6  
    7 - mango/mango/test/unittest.d is the main test file. Check in there for some documentation and usage examples. 
    8  
    9 - Mango now uses Build.exe for compilation. You can create a Mango.lib by going to the mango/build directory and using Build @mango. However, Build and DMD are so fast that I find it more convenient to just rebuild each time
     5- Please take a look at the mango/examples/ directory 
     6 
     7- Mango uses Build.exe for compilation. You can create a Mango.lib by going to the mango/build directory and using Build @mango. However, Build and DMD are so fast that I find it convenient to just avoid lib files. Setting up DMD for Mango is straightforward ~ either add a -I[mango-path] to the command line, or add it to the sc.ini file in the dmd/bin directory.  
     8 
     9- Mango is fully compatible with the latest release of Ares ~ the two libraries tend to stay in sync. Add a -version=Ares to the DMD command-line when compiling for Ares
    1010 
    1111- Note that you will need the wsock32.lib (sockets), or equivalent, available within the link path. The earlier ws2_32.lib does not support multicast, and will therefore produce errors. 
     
    1515- Note that doxygen fails to include a significant amount of documentation. This is particularly evident where version{} is used, and where nested classes/functions are taken advantage of. Please refer to the source files for complete documentation. 
    1616 
     17- mango/mango/test/unittest.d is the main test file. Check in there for some additional usage examples. 
     18 
    1719======================================================================================== 
    1820 
    19 Release 1.7 changes 
     21Release 2.0 changes 
    2022 
    2123- Renamed the mango.format package to be mango.convert 
     
    5153- Added a templated BufferFormat module to tie a Format instance to a Buffer. Used by Stdout and friends 
    5254- Added a new mango.text package for string handling, and migrated utils.Text over there. Package is templated for char, wchar, dchar 
    53 - Added mango.io.BufferTokenizer to bind new Token classes to either a Buffer or a Conduit ~ supports foreach() 
     55- Added mango.io.BufferTokenizer to bind new Token classes to either a Buffer or a Conduit 
    5456- Added several more examples 
    55 - Resolved ~this() handling for external resources 
     57- Resolved ~this() handling for external resources ~ appears to work correctly on linux. 
    5658- Added redirect support to HttpClient 
    57  
     59- change pragma(link, wsock32) to the DMD pragma(lib) instead, on Win32 
     60  
    5861 
    5962Release 1.6 changes