home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / fax140c.zip / WHATS.NEW < prev   
Text File  |  1995-01-28  |  5KB  |  113 lines

  1. BGFAX 1.40 rev C           FREQ file as magic name BGBETA from 1:106/400
  2.    SAT 28 JAN 95           also...FTP to 199.3.234.248, "bgfax" directory
  3. ================
  4.  
  5. 1. Attempted to fix a bug in the /LP (legal paper) print option in 1.40B.
  6.  
  7. BGFAX 1.40 rev B
  8.    FRI 27 JAN 95
  9. ================
  10.  
  11. This beta release contains a hodgepodge of miscellanenous fixes and minor
  12. new things...
  13.  
  14. 1. I have attempted to fix the problem in VIEW 1.40A that was causing it
  15.    to not print on many printers.  Please send feedback on whether or not
  16.    this corrects the error.
  17.  
  18. 2. A new command line switch for VIEW, /LP --- this switch means you plan
  19.    to use 'legal sized' paper on your laser printer.  (Legal sized paper
  20.    is 8.5 x 14" instead of the normal USA 8.5 x 11" size).
  21.  
  22. 3. BGFAX/2 should now allow programs such as Binkley/2 work with BGFAX
  23.    by passing of the com handle, rather than the com port number.  For
  24.    example, if the handle is 187, start BGFAX/2 like this:
  25.  
  26.          bgfax2 /fax c:\bgfax h187 z
  27.  
  28.    Since I have no idea whether the handle is in decimal or hex, if your
  29.    com handle is, say hex:406, start BGFAX/2 like this:
  30.  
  31.          bgfax2 /fax c:\bgfax h$406 z
  32.  
  33.    One of those ways should prevent the Openport{32} error from occuring
  34.    during an OS/2 spawn.
  35.  
  36. 4. BGFAX /HOST mode can now be terminated by semaphore files.  When BGFAX
  37.    is running in /HOST mode, if you put a file called "EXITnnn.SEM" in the
  38.    BGFAX directory, it will cause BGFAX to exit with errorlevel nnn.
  39.    i.e., "EXIT72.SEM" will cause /HOST mode to terminate with level 72.
  40.    This is useful on multitasking or networked systems.
  41.  
  42. 5. BGFAX will now pass a second parameter to the DOPRINT.BAT (DOPRINT.CMD)
  43.    file.  The second parameter will be the remote fax ID, with underscores
  44.    replacing spaces.  This can be used in case your EXEPRINT.BAT/CMD file
  45.    will need to scan for certain bad numbers (fax advertising) and not
  46.    print them, or, can be used to pass to programs designed to page you
  47.    with the remote fax ID.  Confused??  Don't worry about it.  Here is a
  48.    sample of the new DOPRINT.BAT/CMD file:
  49.  
  50. CALL C:\BGFAX\EXEPRINT.BAT C:\BGFAX\FAX0872.FAX                (old way)
  51. CALL C:\BGFAX\EXEPRINT.BAT C:\BGFAX\FAX0873.FAX 713_893_9124   (new way)
  52.  
  53. 6. Some of the older Class 1 modems do require a 19200 shift.  I thought
  54.    all Class 1 modems behaved like the Hayes Optima 288, but apparently
  55.    I was wrong about that.  (The Optima 288 doesn't use 19200 shifting,
  56.    while I recently discovered modems such as the Hayes Accura 14400 do
  57.    require 19200 shifting.)  To handle this situation, a new com port
  58.    modifier is available, the minus sign.  Example:
  59.  
  60.          bgfax /fhay:713_555_1212 c:\bgfax 2- z
  61.  
  62.    The above line would tell BGFAX to use Class 1 mode on COM2, but it
  63.    will perform 'old-style' Class 1 DTE shifting.  (Notice it is "2-"
  64.    instead of "2").  If you are using a Hayes Accura 14400 in BGFAX's
  65.    /HOST mode, make your BGFAX.CNF file say po=2- if you are using COM2.
  66.  
  67. 7. If you were receiving a 2D-MR coded fax and BGFAX was not receiving
  68.    a valid 2D-MR RTC code at the end of the page, BGFAX was trying to
  69.    'help' by adding a 1D-MH RTC code.  (It should have added a 2D-MR
  70.    RTC code, as this version should now do.)
  71.  
  72. 8. I have attempted to fix a problem during PCX conversion that existed
  73.    in VIEW 1.40 and 1.40A.  I think it's fixed, but am not sure.
  74.  
  75.  
  76. BGFAX 1.40 rev A
  77.    FRI 06 JAN 95
  78. ================
  79.  
  80. I assume you have already downloaded and installed BGFAX 1.40.  If not,
  81. you need to FREQ it as the magic name "BGFAX" if your in Fido, or grab
  82. it from ftp://199.3.234.248 in the "BGFAX" directory.
  83.  
  84. A 'major' change to VIEW.EXE, and a very minor change to BGFAX.EXE and
  85. BGFAX2.EXE is included in this beta.
  86.  
  87. 1. Many people have reported problems trying to print faxes on Laser or
  88.    Desk Jet printers.  This VIEW.EXE update tries to fix the problem by
  89.    sending printer output via software interrupt $17, rather than opening
  90.    'LPT1' as a 'binary file'.  The printing screen has had an overhaul as
  91.    well.  Here is some example command line parameters:
  92.  
  93.        view /p40              will print to LPT1 via Int 17 (new way)
  94.        view /p40:lpt1         will print to LPT1 via Int 17 (new way)
  95.        view /p40:lpt2         will print to LPT2 via Int 17 (new way)
  96.        view /p40:hello.you    will print to file 'HELLO.YOU' via binary file
  97.        view /p40:+lpt1        will print to LPT1 via binary file (old way)
  98.  
  99.    Under OS/2, it appears as if printing the old way is faster, that's why
  100.    I made it possible to print using the old way (by inserting the plus).
  101.  
  102.    Under DOS, I didn't really notice a difference in print speed.  Please
  103.    send me reports as to if this works better than the old VIEW.EXE.
  104.  
  105. 2. A user with a new Practical Peripheral's V.FC modem reported trouble
  106.    sending faxes.  Apparently, the modem would echo "ATDTphonenumber   "
  107.                                       ...instead of "ATDT phonenumber"
  108.    which would confuse BGFAX and BGFAX/2.  The extra spaces in the modem
  109.    output are the problem.  This update to BGFAX should fix this problem.
  110.  
  111. Regards,
  112. bgfax author
  113.