home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_BAS / PBWIZ20.ZIP / PBWIZ.NEW < prev    next >
Text File  |  1994-04-10  |  11KB  |  280 lines

  1. PBWiz 2.0, 04/10/94: maintenance release.
  2.  
  3.    The registered version of PBWiz now comes with a complete
  4.    printed manual. The registration fee has been raised to $35.
  5.  
  6.    My thanks and a free upgrade to Mark Phillips for his help in
  7.    tracking down assorted PBWiz problems.
  8.  
  9.    Removed references to Spectra from various files. PowerBASIC
  10.    is now marketed by PowerBASIC, Inc.
  11.  
  12.    Fixed online help function lookups for PowerBASIC 3.0c. PB
  13.    was having trouble handling functions that end with ! or #
  14.    type-declaration symbols, so the type def symbols have been
  15.    removed from the help for such functions. Similar problems
  16.    continue to plague other PBWiz routines for no apparent
  17.    reason-- seems there may be a few bugs left in the PowerBASIC
  18.    help system or help system generator. If a Ctrl-F1 lookup
  19.    doesn't work, use Shift-F1 to access the PBWiz index.
  20.  
  21.    AnsiPrint didn't handle blue backgrounds correctly. Fixed.
  22.  
  23.    The various ShowBMP routines still required you to set the
  24.    OPTION BINARY BASE to 1, due to PowerBASIC's inconsistent
  25.    handling of file offsets for different file modes. This has
  26.    been fixed, using the PB internal value pbvBinBase to figure
  27.    out the current file offset origin.
  28.  
  29.  
  30.  
  31. PBWiz 1.9, 12/30/93: maintenance release.
  32.  
  33.    PowerBASIC 3.0c is incompatible with earlier versions of PB
  34.    when it comes to fixed-length strings and assembly language
  35.    routines. Be aware that fixed-length strings are no longer
  36.    strings, as far as asm routines are concerned. They call it a
  37.    "bug fix", although it's not clear that any actual bugs were
  38.    involved.
  39.  
  40.    Support for versions of PowerBASIC prior to 3.0 is no longer
  41.    available, since I have had no requests for it. If you don't
  42.    have PowerBASIC 3.0, especially 3.0c, it's time to upgrade!
  43.  
  44.    The MatchFile routine was case-sensitive. It isn't any more.
  45.  
  46.    The ScreenSave and ScreenRestore routines were broken in the
  47.    last release. They are fixed now.
  48.  
  49.    Neither PBLIB nor LIBUPD handled replacements of existing
  50.    modules with newer versions very well. LIBUPD has been fixed
  51.    to properly delete the older version of the module within the
  52.    .PBL library before adding the newer version.
  53.  
  54.  
  55.  
  56. PBWiz 1.8, 08/25/93:
  57.  
  58.    **** ATTENTION *** ATTENTION *** ATTENTION *** ATTENTION ****
  59.    -------------------------------------------------------------
  60.    PBWiz now takes full advantage of the capabilities of the new
  61.    PowerBASIC 3.0 compiler. This will require a few adjustments
  62.    to your programs if you have used earlier versions of PBWiz.
  63.    The BYVAL keyword is now used where applicable. This means
  64.    you will need to change the DECLAREs for many routines. Also,
  65.    the granularity of the PBWiz modules has been improved. These
  66.    changes result in smaller and faster code.
  67.  
  68.    Full online help is now provided for PBWiz routines! Just
  69.    copy the PBWIZ.PBH file to your PowerBASIC directory. It will
  70.    be loaded automatically when PB starts up. You can search for
  71.    PBWiz routines with Ctrl-F1 context-sensitive help, follow
  72.    cross-references, and import syntax examples directly into
  73.    your code! Press Shift-F1 repeatedly to get to the index.
  74.  
  75.    The archive handler has been updated to support the new ARJ
  76.    and PKZIP 2.0 self-extracting archives.
  77.  
  78.    The equation solver apparently can't handle nested functions.
  79.    This will be corrected in a later version.
  80.  
  81.    Two new functions have been added: AscM, which combines ASCII
  82.    and MID$ into one convenient package, and NumProc, which
  83.    tells what numeric coprocessor is installed (if any).
  84.  
  85.  
  86.  
  87. PBWiz 1.7, 06/21/93:
  88.  
  89.    Revised the BASIC files and documentation to take advantage
  90.    of the seamless external syntax (implicit CALLs). The old
  91.    CALL format is also still supported, of course.
  92.  
  93.    The Archive routines now support ARJ self-extracting .EXEs.
  94.  
  95.    Added joystick support, telecomm handling, and SoundBlaster
  96.    support (via the SBSIM driver). Added new demos MINITERM.BAS
  97.    and PLAYVOC.BAS for the latter two units.
  98.  
  99.  
  100.  
  101. PBWiz 1.6, 02/25/93:
  102.  
  103.    This version of PBWiz requires PowerBASIC 3.0. If you have an
  104.    earlier version of PowerBASIC, either upgrade it or use PBWiz
  105.    1.5. This release of PBWiz makes extensive use of the new
  106.    PowerBASIC features, including libraries (.PBL files)-- no
  107.    more .OBJ and .PBU files to have to remember!
  108.  
  109.    Added several utilities to help manage libraries. These are
  110.    shells which require PBLIB.EXE to do the real work. Their
  111.    function is to make PBLIB more powerful. Type the name of the
  112.    utility with no parameters for a help screen.
  113.       LIBADD       add modules to a library
  114.       LIBUPD       update modules in a library
  115.       LIBLIST      list the contents of a library
  116.  
  117.    The .EXE form of the demo programs is no longer included, to
  118.    help keep the library a reasonable size for downloading. The
  119.    CREATE.BAT program will create the demos for you.
  120.  
  121.    Added a demo which shows how to use the XMS routines for
  122.    array storage. XMSDEMO uses an array of long integers, but
  123.    the technique is applicable to other data types as well.
  124.  
  125.    Fixed a bug in the GN5GetPel routine. Altered PopWindow to
  126.    avoid a bug in some versions of PowerBASIC:
  127.       ELSEIF Frame AND 1 THEN
  128.    was being evaluated incorrectly. Adding parens fixed it:
  129.       ELSEIF (Frame AND 1) THEN
  130.  
  131.    The graphics routines have been greatly improved:
  132.       - Get and set the palette in 256-color modes
  133.       - VESA support for wide SuperVGA compatibility
  134.       - Read and write 256-color pictures in .BMP format
  135.       - Improved VGADEMO.BAS shows use of .BMP viewer
  136.       - Added VESAINFO.BAS to show info about SVGA modes
  137.       - Sped up the G#Write and G#WriteLn routines
  138.  
  139.    The math extension unit has been expanded with additional
  140.    trigonometric functions.
  141.  
  142.    Added a short description file, DESC.SDI, for the BBSes that
  143.    support it. This complements the longer FILE_ID.DIZ.
  144.  
  145.    The order form has been renamed from REGISTER.TXT to
  146.    ORDER.FRM, since that seems to be a more common convention.
  147.  
  148.    The archive scanner now supports the new PKZIP 2.0 format
  149.    "deflated", and can scan the self-extracting .EXE files
  150.    created by ZIP2EXE.
  151.  
  152.  
  153.  
  154. PBWiz 1.5, 10/05/92:
  155.  
  156.    Added support for 256-color SuperVGA modes on any adapter
  157.    with the Tseng 4000 chipset (most SVGAs). You can use any
  158.    mode supported by your adapter and monitor. The unit has been
  159.    tested with modes from 640x350 to 1024x768 resolution.
  160.  
  161.  
  162.  
  163. PBWiz 1.4, 09/02/92:
  164.  
  165.    PBWiz can now be registered online by CompuServe members (use
  166.    GO SWREG). PBWiz is registration I.D. #209.
  167.  
  168.    Added the DIRMGR unit, which lets you scan disk directories.
  169.    You can specify search attributes and filenames with full
  170.    path and wildcard capabilities. For matched files, you can
  171.    obtain the file name, attribute, time, date, and size.
  172.    Directory recursion is also supported.
  173.  
  174.    The archive scanner can now scan self-extracting .EXE files
  175.    created by LHARC in addition to the usual archive formats.
  176.  
  177.    The expression evaluator now supports the constant PI and a
  178.    variety of functions:
  179.      ABS, ACOS, ASIN, ATAN, COS, FRAC, INT, LOG, SIN, SQR, TAN
  180.  
  181.    A command-line calculator has been added to show off the
  182.    expression evaluator. See CALC.BAS and CALC.EXE.
  183.  
  184.    The Processor% function can now tell 80486s from 80386s.
  185.  
  186.    The VARCDEMO program has been renamed to ARCVIEW.
  187.  
  188.  
  189.  
  190. PBWiz 1.3, 06/30/92:
  191.  
  192.    Added a unit for ANSI emulation. This unit allows you to use
  193.    ANSI codes without requiring ANSI.SYS or a similar display
  194.    driver.
  195.  
  196.    Functions which return the number of serial and parallel
  197.    ports installed have been added to the equipment unit.
  198.  
  199.    A special fast print routine has been added to the video
  200.    unit. It skips spaces rather than displaying them, making it
  201.    easy to overlay existing text.
  202.  
  203.    Ceiling and floor functions have been added to the math
  204.    extensions unit.
  205.  
  206.    If you're using the excellent 4DOS command shell, try the new
  207.    ADD4DOS.BAT file. It will add directory descriptions to the
  208.    PBWiz files-- no more guessing about file names!
  209.  
  210.  
  211.  
  212. PBWiz 1.2, 03/01/92:
  213.  
  214.    Inexplicably, I managed to leave many of the DECLAREs for the
  215.    MOUSE unit out of the previous releases. There was also an
  216.    error in one of the DECLAREs for the equipment unit. These
  217.    have been fixed.
  218.  
  219.    I've added a demo to show the use of the equipment and video
  220.    unit. Type "DEMO" to take a look. I've also added a demo for
  221.    the archive viewing routines. Type "VARCDEMO filename" for a
  222.    plain list, or add the "/V" option for a detailed view of the
  223.    archive.
  224.  
  225.    The various $INCLUDE files have been gathered together into a
  226.    single file, PBWIZ.INC, for convenience. I've also added a
  227.    quick reference of the routines, PBWIZ.REF.
  228.  
  229.    A display unit has been added. This includes scrolling in any
  230.    direction, DOS/ANSI output (print, cls, color, locate),
  231.    save/restore any part of a screen, fast and flexible string
  232.    displays, recoloring of selected areas, and pop-up windows.
  233.  
  234.    The EXTMATH.PBU unit has been split in two: EXTMATHA.OBJ &
  235.    EXTMATHB.PBU. This allowed me to add a number of
  236.    assembly-language routines to the math unit, including bit
  237.    shifts and rotatations.
  238.  
  239.    The EQUIPMEN.OBJ unit has been extended to return the BIOS
  240.    date and PC type information. It can now also tell you
  241.    whether DR DOS is being used instead of MS-DOS.
  242.  
  243.    There have been some changes to WHERE.BBS. Of particular note
  244.    to PowerBASIC users is that The Bard's Lair (Dave Navarro's
  245.    board) is gone. Dave has moved to The Consultant BBS, as have
  246.    I. See the WHERE.BBS file for more info.
  247.  
  248.  
  249.  
  250. PBWIZ 1.1, 01/10/92:
  251.  
  252.    The documentation has been reformatted. Ample room has been
  253.    left for margins in case you'd like to create a bound manual.
  254.  
  255.    A brief demo program has been added to demonstrate the use of
  256.    PBWiz. It shows the 256-color graphics modes in action. Type
  257.    VGADEMO to try it out.
  258.  
  259.    Two sets of memory routines have been added, giving you
  260.    access to EMS and XMS memory. The older EMS 3.x and EEMS
  261.    standards are supported as well as the current EMS 4.0.
  262.  
  263.    Comprehensive keyboard control has been added. Get the states
  264.    of any alt, control, or shift key; get or set CapsLock,
  265.    Insert, NumLock, ScrollLock; access 101-key "enhanced"
  266.    keyboards; put a string into the keyboard buffer; speed up
  267.    the keyboard; take control of the PrintScreen key; see what a
  268.    key is without actually getting it; more.
  269.  
  270.  
  271.  
  272. PBWIZ 1.0, 12/03/91:
  273.  
  274.    This is the initial release of The PowerBASIC Wizard's
  275.    Library, featuring extended math support, a numeric
  276.    expression evaluator, mouse support, string handling,
  277.    equipment information routines, time/date manipulation,
  278.    viewing archives (ARC, ARJ, LZH, PAK, ZIP, ZOO), and VGA
  279.    graphics (320x200 and 360x480 in 256 colors).
  280.