home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / bbs / bt313a / docs / updt_313.txt < prev   
Text File  |  1994-02-27  |  18KB  |  417 lines

  1.                         BinkleyTerm-ST 3.11
  2.                         -------------------
  3.  
  4.                         Updates since 3.03a
  5.                 Detailed in reverse chronological order
  6.                            (newest first)
  7.  
  8.  
  9. A: Version naming policy
  10. ------------------------
  11.  
  12.   3.03a/beta-1,PureC
  13.   ^ ^^^ ^^^^^^ ^^^^^
  14.   |  ||      |   |
  15.   |  ||      |   |
  16.   |  ||      |   |
  17.   |  ||      |   |
  18.   |  ||      |   \-- Compiler used to compile this version
  19.   |  ||      |       (e.g, Lattice, PureC, TurboC)
  20.   |  ||      |
  21.   |  ||      \-- Beta Test revision (Beta Versions only)
  22.   |  ||
  23.   |  |\---- Release revision, updated for releases with bugfixes only.
  24.   |  |
  25.   |  \----- Minor Version, updated for releases with new features
  26.   |
  27.   \-------- Major Version, updated for major changes
  28.  
  29.  
  30.   New versions in which the major or minor version have changed (new
  31.   features or important bug fixes) , will be hatched into the ADN ST_BINK
  32.   and AFN AST-BINK file echos.
  33.  
  34.   Versions where only the release revision has changed (small bug fixes)
  35.   will be available for FREQ'ing from myself and national support nodes and
  36.   an announcement made in the BINKLEY.ST echomail area.
  37.  
  38.   Beta Versions will be made available only to Beta Testers.
  39.  
  40.  
  41.  
  42. B: Comments
  43. -----------
  44.  
  45.   Please send any comments and bugreports NOW to Otto Braendli on 2:301/240.3
  46.   or 90:1000/101.2. Version after 3.02a/Beta-7 will come from me until SteVen will 
  47.   be back.
  48.   
  49.   Optimized Zmodem file transfer by Stephan Slabihoud, 2:2401/103.6 (classic).
  50.   RSVE support by Wolfgang Zweygart, 2:246/1104
  51.   Integrated fax recieving module by Helmut Neumann, 2:2405/6.9 (classic)
  52.   Optimized RS232-Routines by Uwe Zerbe FidoNet 2:246/1414
  53.   ST/TT/Falcon support by Michael Ziegler FidoNet 2:246/170.5 (classic)
  54.   New Binkley Support by Otto Braendli on 2:301/240.3@fidonet or 90:1000/101.2@NeST
  55.  
  56. C: Changes (newest first)
  57. -------------------------
  58.  
  59.   /===================================\
  60.  /                                     \
  61. <   Official Version Bink - ST v3.13    >
  62.  \                                     /
  63.   \===================================/
  64.     |
  65.    .------------------------------------------------------------------------.
  66.   |                                   |
  67.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  68.   { 3.13 :          27 February  1994 }
  69.   {___________________________________}______________________________________.
  70.     |
  71.     | Sorting Nodelist Bug: ( Joerg Spilker found this )
  72.     |
  73.     | Wenn you have more than 32767 Nodes Binkley hang up wenn sorting Nodelist
  74.     | The counter for Nodes has been changed from int to long ( Hello Joerg, Thanx )
  75.      | Now works correctly, testet by Joerg.
  76.      | Include the new BINKLEY.IO V1.09 from Stephan Slabihound in the Binkley
  77.      | Package
  78.    .------------------------------------------------------------------------.
  79.   |                                   |
  80.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  81.   { 3.12 :           15 January  1994 }
  82.   {___________________________________}______________________________________.
  83.     |
  84.     | 1. Eliminate all Compilerwarnings at the same Binkley Source.
  85.     |
  86.     | 2. Create ANSI-C like Functions at the same Binkley Source.
  87.     |
  88.      | 3. Rewritten the Function "zfree"
  89.      | 
  90.      | 
  91.      | unsigned long zfree( char *path )
  92.      | {
  93.      | 
  94.      |     DISKINFO         *info;
  95.      |     long                 free_bytes;
  96.      | 
  97.      |     int    drive;
  98.      | 
  99.      |     if (( path[0] != '\0' ) && ( path[1] == ':' ))
  100.      |         drive = toupper( path[0] ) - 'A' + 1;
  101.      |     else
  102.      |         drive = 0;
  103.      | 
  104.      |     if (( info = ( DISKINFO *)calloc( 1, sizeof( DISKINFO ))) == NULL )
  105.      |         return 0; 
  106.     | 
  107.      |     if ( Dfree( info, drive ) != 0 )
  108.      |     {
  109.      |         free( info );        
  110.      |         return 0;
  111.      |     }
  112.     | 
  113.      |     free_bytes = ( info-> b_free * info-> b_secsiz * info-> b_clsiz );
  114.      |     free( info );
  115.      |     return( free_bytes );
  116.      | }
  117.      | 
  118.      | 
  119.      | 
  120.   .------------------------------------------------------------------------.
  121.   |                                   |
  122.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  123.   { 3.10a-b6 :       ?? November 1993 }
  124.   {___________________________________}______________________________________.
  125.     |
  126.     | 1. FirstInit now works.
  127.     |
  128.     | 2. Baudrates higher 19200 now displays correctly in the EMSI_DAT packet.
  129.     |
  130.      | 
  131.    .------------------------------------------------------------------------.
  132.   |                                   |
  133.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  134.   { 3.10a-b6 :       ?? November 1993 }
  135.   {___________________________________}______________________________________.
  136.     |
  137.     | 1. FirstInit now works.
  138.     |
  139.     | 2. Baudrates higher 19200 now displays correctly in the EMSI_DAT packet.
  140.     |
  141.    .------------------------------------------------------------------------.
  142.   |                                   |
  143.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  144.   { 3.10a-b5 :       21 November 1993 }
  145.   {___________________________________}______________________________________.
  146.     |
  147.     | 1. Some minor bug in the handling of outbound folder naming fixed.
  148.     |    There was the possibility that mail was sent to wrong addresses
  149.     |    when using the zone number in the default outbound foldername
  150.     |    i.e. atarinet.033
  151.     |
  152.     | 2. TOPT/FMPT/INTL lines of generated filerequest respond messages
  153.     |    are not terminated with \n. This causes major trouble because
  154.     |    the recieving system interpretes a wrong destination address.
  155.     |
  156.     | 3. New keyword FirstInit. Send to modem only on initial startup
  157.     |    of Binkley.
  158.     |
  159.     | 4. New keyword NoRequest. Nodes listed after this keyword are not
  160.     |    allowed to request files on your system at any times. You can use
  161.     |    the same syntax as in NoEMSI for the list of nodes.
  162.     |
  163.     | 5. Only the Reset string is send to the modem after leaving Binkley
  164.     |    with ALT-X.
  165.     |
  166.     | 6. Binkley recognizes Emsi MOH# field created by Semper. Due to 
  167.     |    Binkley's internal structure of sending mail there is no easy
  168.     |    way to let Binkley create an MOH# entry.
  169.     |
  170.     | 7. New keyword FaxConnect <string>. In addition to the hardcoded
  171.     |    connect strings +FCON and CONNECT FAX binkley will recognize
  172.     |    a fax connect when <string> is matched by the incoming connect
  173.     |    string.
  174.     |
  175.     | 8. Dial translation doesn't convert . to , anymore.
  176.     |
  177.     | 9. New version of driver module binkley.io (1.5)
  178.     |
  179.    .------------------------------------------------------------------------.
  180.   |                                   |
  181.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  182.   { 3.10a-b4 :            7 August 1993 }
  183.   {___________________________________}______________________________________.
  184.     |
  185.     | 1. Some modifications to let Binkley run on less than 80 columns
  186.     |    and 25 lines.
  187.     |
  188.     | 2. Carrier detect for internal fax module should now also work
  189.     |    on all ports.
  190.     |
  191.     | 3. You can now use the environment variables BROWS and BCOLS to
  192.     |    limit the number of rows and cols which binkley will use for
  193.     |    display. BCOLS < 80 will lead to a corrupted "Pending outbound
  194.     |    mail" window with normal character size.
  195.     |
  196.     | 4. New keyword RSVEBoard. Only usefull when you have the RSVE hardware
  197.     |    installed. In this case you can use 38400, 57600 and 115000 as valid
  198.     |    baudrates.
  199.     |
  200.    .------------------------------------------------------------------------.
  201.   |                                   |
  202.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  203.   { 3.10a-b3 :             15 July 1993 }
  204.   {___________________________________}______________________________________.
  205.     | 
  206.     | 1. Binkley.io was initialized twice when not using the default port
  207.     |
  208.     | 2. Removed code with sets RS232 transmit buffer to a minimum size
  209.     |    of 8192 bytes.
  210.     |
  211.     | 3. Maximum number of aliases is now 30 (instead of 15).
  212.     |
  213.     | 4. Maximum lenght for every component of a Dial statement is now
  214.     |    40 (instead of 20).
  215.     |
  216.     | 5. Some enhancements of driver.io. See file driver.txt (in german :-)
  217.     |
  218.    .------------------------------------------------------------------------.
  219.   |                                   |
  220.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  221.   { 3.10a-beta2 :        10 June 1993 }
  222.   {___________________________________}______________________________________.
  223.     |
  224.     | 1. Corrected port description (see 3.10 - alpha1)
  225.     |
  226.     | 2. Bug fixed which caused problems when using a BTNC compatible
  227.     |    nodelist with more than 16384 node entries overall.
  228.     |
  229.     | 3. External io-driver. Place BINKLEY.IO in the same folder as
  230.     |    the other configuration files (documentation will follow).
  231.     |
  232.     | 4. Modified internal fax reciever. You must init your ZyXel with
  233.     |    AT#B0+FCLASS=6 (stream mode). The old code recieves only one
  234.     |    page.
  235.     |
  236.     | 5. Bug fixed (opening DOMAINS.BNL not in binary mode)
  237.     |
  238.     | 6. New keyword AfterFax. The program defined here is immediately
  239.     |    called after recieving a fax with the built-in or any external
  240.     |    fax reciever module.
  241.     | 
  242.     | 7. New keyword Reset. The string here is send to the modem when
  243.     |    exiting with ALT-X immediately before the hangup string is send.
  244.     |
  245.    .------------------------------------------------------------------------.
  246.   |                                   |
  247.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  248.   { 3.10a-beta1 :          9 May 1993 }
  249.   {___________________________________}______________________________________.
  250.     |
  251.     | 1. New Keyword FDBugfix.
  252.     |
  253.     | Read the following comment in the code. Try if it works with or
  254.     | without the keyword. Any comments how to solve the problem are
  255.     | very welcome.
  256.     |
  257.     |    switch (c = Z_GetHeader(Rxhdr) )
  258.     |    {    
  259.     |    
  260.     |        /*
  261.     |        **    Maybe this can fix problems with FD. The break only
  262.     |        **  fixes the FD problem but causes a Resend on the first
  263.     |        **  DATA block. The second (original) code doesn't have
  264.     |        **  Resend problems but probably the ESC problem again.
  265.     |        **  I set the timeout in the loop from 0,5sec to 2sec.
  266.     |        **  Maybe this fixes the FD problem also.
  267.     |        **/
  268.     |        
  269.     |        case ZRINIT:
  270.     |            if (FDBugfix)
  271.     |                break;
  272.     |            else
  273.     |            {
  274.     |                    while ((c = Z_GetByte (200)) > 0)
  275.     |                    if (c == ZPAD)
  276.     |                        goto Again;
  277.     |            }
  278.     |            
  279.     |
  280.   .------------------------------------------------------------------------.
  281.   |                                   |
  282.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  283.   { 3.10a-alpha2 :         1 May 1993 }
  284.   {___________________________________}______________________________________.
  285.     |
  286.     | 1. Removed the ZedZap Bug. But i fear that this modification will
  287.     |    cause again problems with FrontDoor.
  288.     |
  289.     | 2. Binkley now works without any nodelist files.
  290.     |
  291.   .------------------------------------------------------------------------.
  292.   |                                   |
  293.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  294.   { 3.10a-alpha1 :      18 April 1993 }
  295.   {___________________________________}______________________________________.
  296.     |
  297.     | WARNING: This version probably has problems transmitting the first
  298.     |          block in ZedZep sessions (resending).
  299.     |
  300.     | 1. Support of ST/TT/Falcon ports (thanks to Michael Ziegler and Stephan
  301.     |    Slabihoud for their great work)
  302.     |
  303.     |    You can now use the following port numbers in the Port statement:
  304.     |
  305.     |    1 = MFP   (ST-Serial, TT-Modem-1)
  306.     |    2 = Scc-B (TT-Modem-2, Falcon?)
  307.     |    3 = TTMFP (TT-Serial-1, not usable for Binkley)
  308.     |    4 = Scc-A (TT-Serial-2, STE-Serial-2)
  309.     |
  310.     |    Default is port 1 (ST-serial)
  311.     |
  312.     |    Also you should set MaxPort to the maximum numbers of ports supported
  313.     |    by your ST computer (default for MaxPort is the setting of Port).
  314.     |
  315.     |    If not using Port 0 you must set the Baudrate for this Port with some
  316.     |    external utility and use the following statements in Binkley.cfg
  317.     |
  318.     |    Baud 38400          - Use predefined Baudrate
  319.     |    STLockBaud          - Don't change Baudrate according connect speed
  320.     |    HardCTS             - Can increase performance.
  321.     |
  322.     |
  323.     |    Binkley doesn't reset the Port after exiting, so every BBS
  324.     |    program which uses Bconin(Aux) should also work.
  325.     |
  326.     |    If you wish to reset the port after exit (this also applies to
  327.     |    aftermail, cleanup und BBS Spawn) put the keyword <ResetPort>
  328.     |    in the configuration file.
  329.     |
  330.   .------------------------------------------------------------------------.
  331.   |                                   |
  332.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  333.   { 3.03a-beta3 :        1 April 1993 }
  334.   {___________________________________}______________________________________.
  335.     |
  336.     | 1. Standard for RBUF/RBUF is now 8K if not defined in the environment
  337.     |    or with the Rbuf/Tbuf config keywords (as stated in the doc's).
  338.     |
  339.     | 2. Many thanks to Stephan Slabihoud for checking the Zmodem problems
  340.     |    in conjunction with Frontdoor (also knows as ESC problem). 
  341.     |    We tested many versions together with Bill Scull and have now
  342.     |    a version which works on his system. Try it.
  343.     |
  344.     | 3. Speeding up CRC calculation for about 10% with assembler code
  345.     |    supplied by Stephan Slabihoud.
  346.     |
  347.     | 4. Modified Fax interface. The keywords <FaxBuffer>, <ModemType>
  348.     |    and <Rmodemtype> are removed. Binkey now uses an internal fax
  349.     |    module (code by Helmut Neumann). You have to set FaxInbound to
  350.     |    let Binkley know where to place incoming fax images. 
  351.     |
  352.     |    If the keyword Fax (with optional parameters) is specified
  353.     |    in the configuration file, then this program is started instead
  354.     |    of the integrated module.
  355.     |
  356.     |    Initialize your ZyXel Modem with AT#B0+FCLASS=6
  357.     |
  358.   .------------------------------------------------------------------------.
  359.   |                                   |
  360.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  361.   { 3.03a-beta2 :      16 Januar 1993 }
  362.   {___________________________________}______________________________________.
  363.     |
  364.     | 1. If you specify a password with more than 7 characters in the
  365.     |    keyline, Binkley will send out some funny chars at the end of
  366.     |    the password field. Every password from a keyline is now shortened 
  367.     |    to a maximum of 8 chars.
  368.     |
  369.     | 2. A - at the beginning of a line in any of the okfiles is now like
  370.     |    a ; the beginning of a comment. This feature was requested by Albi
  371.     |    Rebmann.
  372.     |
  373.     | 3. You can now use the keyword NoFullScreen also on the commandline.
  374.     |
  375.     | 4. New keyword NoJanus. This command takes a list of nodes for which
  376.     |    you wish to disable Janus (even if JanusBaud/JanusOK allows a
  377.     |    Janus session). This works ONLY for outgoing calls.
  378.     |
  379.     | 5. Binkley now only trims the logfile during opening/closing the
  380.     |    log (former versions make a trim after every update).
  381.     |
  382.     | 6. Binkley won't dial a number left in the nodelistcache when the
  383.     |    node has a key line with no phone number and wasn't in the nodelist.
  384.     |
  385.     | 7. The PureC Signalhandler will only be installed with the keyword
  386.     |    SignalHandler. It seems as if this handler causes some problems
  387.     |    in the Binkley startup phase.
  388.     |
  389.     | 8. Stopped bombing when processing an EMSI__RX.DAT with {\} in the
  390.     |    password field. Binkley tries to process a hex escape.
  391.     |
  392.   .------------------------------------------------------------------------.
  393.   |                                   |
  394.   {¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯}--------------------------------------.
  395.   { 3.03a-beta1 :       1 Januar 1993 }
  396.   {___________________________________}______________________________________.
  397.     |
  398.     | 1. Binkley now returns the correct errorlevel according to the
  399.     |    connect rate. For example, a CONNECT 16800 will give 168 as
  400.     |    errorlevel (14400 = 144, 12000 = 120, 7200 = 72).
  401.     |
  402.     |    This bug was fixed in 3.03a. I forgot the entry in the update
  403.     |    file, sorry.
  404.     |
  405.     | 2. When writing a filerequest in IOSmode, Binkley won't create an
  406.     |    extra flowfile if the request was Crash (ORT+CFT). Instead, just
  407.     |    one CRT file is created.
  408.     |
  409.     | 3. Support for the FIDOUSER.LST format created by BTNC. If the keyword
  410.     |    BTNC is active, Binkley makes a sequentiell search in the file,
  411.     |    otherwise the file is treated as sorted with fixed length records
  412.     |    and Binkley will make a binary search.
  413.     |   
  414.     |    Please note that sequential searching isn't very fast!
  415.     |
  416.     .------------------------------------------------------------------------.
  417.