Changeset 778

Show
Ignore:
Timestamp:
04/01/04 05:49:32 (5 years ago)
Author:
pmoura
Message:

Updated documentation for new release 2.16.2.

Location:
trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • trunk/manuals/userman/installing.html

    r775 r778  
    3030 
    3131<p> 
    32 The Macintosh version is included in the file <code>lgt2xx.sea.bin</code>, a <code>MacBinary</code> encoded, self-extracting archive. Your web browser should automatically decode the file, giving you a <code>.sea</code> self-extracting archive that you double-click to install Logtalk. If not, drag and drop the <code>.bin</code> file in a utility like <code>StuffIt Expander</code> or <code>MacBinaryII+</code>. 
     32The Macintosh version is included in the file <code>lgt2xxx.sea.bin</code>, a <code>MacBinary</code> encoded, self-extracting archive. Your web browser should automatically decode the file, giving you a <code>.sea</code> self-extracting archive that you double-click to install Logtalk. If not, drag and drop the <code>.bin</code> file in a utility like <code>StuffIt Expander</code> or <code>MacBinaryII+</code>. 
    3333</p> 
    3434 
     
    3636 
    3737<p> 
    38 The MacOS X/BSD/Linux/Unix version is included in the file <code>lgt2xx.tar.gz</code>. In order to decompress and install the system you may use the following commands: 
    39 </p> 
    40 <pre> 
    41     % gunzip lgt2xx.tar.gz 
    42     % tar -xvf lgt2xx.tar 
    43 </pre> 
    44 <p> 
    45 This will create a sub-directory named <code>lgt2xx</code> in your current directory. 
     38The MacOS X/BSD/Linux/Unix version is included in the file <code>lgt2xxx.tar.gz</code>. In order to decompress and install the system you may use the following commands: 
     39</p> 
     40<pre> 
     41    % gunzip lgt2xxx.tar.gz 
     42    % tar -xvf lgt2xxx.tar 
     43</pre> 
     44<p> 
     45This will create a sub-directory named <code>lgt2xxx</code> in your current directory. 
    4646</p> 
    4747 
     
    4949 
    5050<p> 
    51 The OS/2 and Windows 95/98/NT/ME/2000 version is included in the file <code>lgt2xx.zip</code>. The file can be decompressed using an utility like <code>unzip</code>: 
    52 </p> 
    53 <pre> 
    54     unzip lgt2xx.zip 
     51The OS/2 and Windows 95/98/NT/ME/2000 version is included in the file <code>lgt2xxx.zip</code>. The file can be decompressed using an utility like <code>unzip</code>: 
     52</p> 
     53<pre> 
     54    unzip lgt2xxx.zip 
    5555</pre> 
    5656 
  • trunk/QUICK_START

    r776 r778  
    6969 
    70702. Create a sub-directory with a suitable name to hold all the files of your  
    71 program. 
     71application. 
    7272 
    73 3. Copy to this sub-directory a *.loader file form one of the examples and  
    74 modify it to load your own source files. 
     733. Copy to this sub-directory a *.loader file from one of the example  
     74directories and modify it to load your own source files. 
  • trunk/README

    r776 r778  
    9191.cshrc file: 
    9292 
    93     setenv LOGTALKHOME "/your/installation/directory/lgt2161" 
     93    setenv LOGTALKHOME "/your/installation/directory/lgt2162" 
    9494 
    9595If you use a bash shell, add the following lines to your .profile file: 
    9696 
    97     LOGTALKHOME="/your/installation/directory/lgt2161" 
     97    LOGTALKHOME="/your/installation/directory/lgt2162" 
    9898    export LOGTALKHOME 
    9999 
  • trunk/RELEASE_NOTES

    r777 r778  
    1111 
    1212 
    13 2.16.2 - April ??, 2004 
     132.16.2 - April 2, 2004 
    1414 
    1515    Corrected a bug in the library category monitor (file library/monitor.lgt)  
     
    1717 
    1818    Changed the possible values of the read-only flag startup_message (defined  
    19     in the config files) to "flags" (print banner and flag valuess), "banner"  
     19    in the config files) to "flags" (print banner and flag values), "banner"  
    2020    (print only the banner), and "none" (do not print neither the banner or the  
    21     flag values). 
     21    flag values). Default value is "flags". 
    2222 
    2323 
  • trunk/UPGRADING

    r776 r778  
    7171containing operator declarations is needed in order to take advantage of the  
    7272improvements made. 
     73 
     74Logtalk 2.16.1 now checks for attempts to redefined built-in Logtalk control  
     75constructs when compiling source files. These checks may generate compilation  
     76errors on files containing bugs that are not detected on previous versions of  
     77the compiler. 
     78 
     79Logtalk version 2.16.2 changed the possible option values of the read-only  
     80compiler option "startup_message" to "none", "banner", and "flags". Default  
     81value is "flags" (print both banner and default flag values).