home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d920 / amigaguide.lha / AmigaGuide / ReadME < prev    next >
Text File  |  1993-10-04  |  3KB  |  106 lines

  1.  
  2. A M I G A G U I D E    D E V E L O P M E N T
  3.  
  4. $VER: AmigaGuide_Dev 34.6 (10.8.93)
  5.  
  6. (c) Copyright 1991-93 Commodore-Amiga, Inc.  All Rights Reserved
  7.  
  8. AmigaGuide version 34.3
  9. AmigaGuide.library version 34.11
  10. AD2AG version 39.2
  11.  
  12. This disk or archive contains AmigaGuide, AmigaGuide development tools
  13. and examples, and a free electronic Product License Agreement for
  14. distribution of AmigaGuide.
  15.  
  16. AmigaGuide, amigaguide.library, WDisplay, and the InstallAmigaGuide
  17. script may be distributed by developers who have a Workbench
  18. License and an AmigaGuide Amendment, and by developers who print out,
  19. complete, sign, and submit the included AmigaGuide.License agreement.
  20.  
  21.  
  22. The V34 directory is for Workbench V34 (1.3) and higher, and contains
  23. a V34-V39 compatible AmigaGuide, amigaguide.library, and WDisplay.
  24.  
  25. Note - Since 34.2, the AmigaGuide utility again supports both DOC and
  26. DOCUMENT as the document keyword, and should be compatible with multiple
  27. older versions and their usage.
  28.  
  29. The AD2AG directory contains the AD2AG tool which requires V37.
  30.  
  31. The V39 directory contains example source code for using the V39 (3.0) 
  32. datatypes and the AmigaGuide class which are part of Workbench 3.0.
  33.  
  34.  
  35. Note - Other readmes may use SYS:Utilities/AmigaGuide as their default
  36. tool.  An InstallAmigaGuide script icon may be found in the V34 drawer.
  37.  
  38.  
  39. Release Notes
  40. =============
  41. amigaguide.library 34.4
  42.  
  43.  o Wasn't freeing the library base properly when expunging.
  44.  
  45. amigaguide.library 34.8
  46.  
  47.  o Now sets the ofh_TOC, ofh_Next and ofh_Prev from dynamic node hosts.
  48.  
  49.  o Now handles 8 bit-plane deep screens.
  50.  
  51.  o No longer ghosts NEXT button if the last node has a @NEXT
  52.    command.
  53.  
  54.  o No longer ghosts PREV button if the first node has a @PREV
  55.    command.
  56.  
  57.  o No longer displays silly little vertical bars when
  58.    encountering V39 attribute commands.
  59.  
  60.  o / is now a keyboard shortcut for Retrace (like in MultiView).
  61.  
  62.  
  63. amigaguide.library 34.9
  64.  
  65.  o Fixed a bug in LoadXRef() that would cause it to drop names.
  66.  
  67.  o Added AGA_WorkPath and AGA_WorkNode attributes to GetAmigaGuideAttr().
  68.    The destination path should be at least 300 bytes and the node name
  69.    should be at least 128 bytes.
  70.  
  71.    /* If we can get one of these, we can get the other */
  72.    if (GetAmigaGuideAttr (AGA_WorkPath, aghandle, (ULONG *) &paddr))
  73.    {
  74.        GetAmigaGuideAttr (AGA_WorkNode, aghandle, (ULONG *) &naddr);
  75.        printf ("database='%s', node='%s'\n", path, node);
  76.    }
  77.  
  78.    This feature allows your utilities to remember the last node visited,
  79.    so that the database can be brought back up at the same place.
  80.  
  81. amigaguide.library 34.10
  82.  
  83.  o Now checks for the presence of nag_BaseName and if NULL supplies
  84.    AmigaGuide.
  85.  
  86. amigaguide.library 34.11
  87.  
  88.  o Recompiled with SAS/C 6.3
  89.  
  90.  o Wasn't handling improperly terminated link commands properly.  It would
  91.    end up trashing memory.   Now will terminated at the end of a line.
  92.  
  93.  o new include/librries/amigaguide.h for V34 amigaguide development
  94.    (i.e. don't overwrite a V39 amigaguide,h with this)
  95.  
  96.  
  97. AD2AG 39.2
  98.  
  99.  o AD2AG no longers provides an unwanted MungWall hit when
  100.    parsing include files.
  101.  
  102.  
  103. AmigaGuide 34.3
  104.  
  105.  o Now sets return code properly
  106.