home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / gle / gle / aareadme.txt < prev    next >
Text File  |  1992-11-29  |  22KB  |  677 lines

  1.  
  2. GLE is an interactive  Graphics Language Editor.
  3.       (for VAX installation see INSTALL.TXT)
  4.  
  5. GLE is NOT WYSIWYG, it shows you a close approximation to what you
  6. will get, but fonts, line widths, colors may all be slightly incorrect. 
  7.  
  8. Please send reports of bugs (including the GLE file) to:
  9.                 in%"srghcxp@grv.dsir.govt.nz"
  10.  
  11. The rest of this file contains version update notices, they are in
  12. REVERSE chronological order.  (e.g. recent changes first)
  13.  
  14. NOTE: The command is CGLE, but the package is called GLE.
  15.  
  16. You might find a text only copy of the manual in a file 
  17. called MANUAL.TXT
  18.  
  19.             
  20.                 Chris Pugmire.
  21. GLE 3.3b (25-Mar-1992)
  22. ----------------------
  23.     Bigfile now accepts variables in place of file name, e.g.
  24.         xxx$ = "test.dat,2,3"
  25.         d1 bigfile xxx$
  26.     Added AUTOSCALE option to bigfile e.g.:
  27.         d1 bifile a.dat line autoscale
  28.     This pre-reads the file to scale the axis, which is slow but
  29.     sometimes required.
  30.     Updated version of inittex.ini which was causing problems with
  31.         /char /def /movexy
  32.     UNIX: install.com now copies graph.idx into system area.
  33.     VMS: dviprint symbol added to CGLE_LOGIN.COM
  34.  
  35. GLE 3.3a (27-Jan-1992)
  36. ----------------------
  37.     Bug lowercase xnames labels being mis-aligned is fixed.
  38.  
  39.     Gle now writes out   gletmp.t1 .t2 .t3 .t4 instead of .bak
  40.     so you have four backup versions if something crashes.
  41.  
  42.     Fixed axis rounding errors for labels, e.g. .1 to .9 step .1
  43.     might occasionally stop at .8
  44.     
  45.     Fixed filled boxes on DVIGLE driver, the filled region wasn't
  46.     being translated if a scale or rotate was being used.
  47.  
  48.     Added commands:
  49.         fopen, fclose, fread, freadln, fwrite, fwriteln
  50.     E.G.:
  51.  
  52.     fopen "file.dat" inchan read
  53.     fopen "file.out" outchan write
  54.     until feof(inchan)
  55.         fread inchan x y z
  56.         aline x y
  57.         rline x z
  58.         fwriteln outchan x*2 "y =" y
  59.     next
  60.     fclose inchan
  61.     fclose outchan
  62.  
  63.     The following accents now work.
  64.         \` \' \v \u \= \^ \. \H \~ \"
  65.     e.g.    
  66.         text P\'e ter
  67.  
  68. GLE 3.2i (1-Jan-1992)
  69. ---------------------
  70.     Improvements made to lstyle for dot matrix and laserjet drivers.
  71.     It now works!, patterns which don't divide into 32 bits and 
  72.     dashlen are both supported.        (Thanks to Frank Evans)
  73.  
  74.     HPGL driver modified, now supports sizes greater than a3.
  75.     New symbols HPGL_ADDX, HPGL_ADDY add a margin to the plot.  
  76.     These default to .9cm and 1.5cm
  77.  
  78.     Bug in 'E' format numbers, 5e+7 was interpreted as 5+7 = 12
  79.     instead of 50,000,000  (5e7 was always interpreted correctly)
  80.  
  81. GLE 3.2g (1-Nov-1991)
  82. ---------------------
  83.     All bitmap dot matrix drivers have been re-written:
  84.  
  85.         dvigle
  86.         dvilj, dvilj300, dviepson, dviep24
  87.     
  88.     They now perform clipping and filling correctly, funny
  89.     glitches in filled characters (texcmr) have been fixed.
  90.  
  91.     They also support a much wider range of fill styles
  92.  
  93.     Print the file DVIFILL.GLE to see the supported fill
  94.     options.
  95.  
  96.     The command syntax has changed, the commands:
  97.         dvilj, dvilj300, dviepson, dviep24
  98.     
  99.     Have been replaced by:
  100.         dviprint -dlj 
  101.         dviprint -dlj -hires        (was dvilj300) 
  102.         dviprint -depson     
  103.         dviprint -depson -hires        (was dviep24)
  104.  
  105.     Support for HP-PaintJet printers
  106.     has been added:
  107.         dviprint -dpj
  108.  
  109.    Usage: dviprint [-depson | -dlj] [-old] [-hires] [-debug] [-output xx.prt]    
  110.         -depson   To produce output for epson printers 
  111.         -dwp      To add tiff image to wp .eps file 
  112.         -dlj      To produce output for HP LaserJet printers 
  113.         -dpj      To produce output for HP PaintJet printers 
  114.         -dover    Overhead transparency mode for PaintJet
  115.         -old      For old HP Laser Jet printers (no compression)
  116.          -hires      Uses high resolution for that printer (slower)
  117.          -wide     If your printer has a wide carriage 
  118.          -noflip   Disable's auto flipping 
  119.          -nosquash Tries to print it full size
  120.          -compress Force internal bitmap compression (slow,saves memory) 
  121.          -noff     No form feed
  122.          -debug    Prints debug messages
  123.          -out x.x  Prints output to file instead of printer port
  124.     
  125. ...
  126.     3d Bar graphs are now supported, the commands are:
  127.  
  128.     bar d1,d2  3d .5 .3  side red,green  notop
  129.     bar d3,d4  3d .5 .3  side red,green top black,white 
  130.  
  131.     Take note of comma's.
  132.  
  133. 3d  (xoffset yoffset)  
  134.     Specifies the x and y vector used to draw the receding 
  135.     lines, they are defined as fractions of the width of the
  136.     bar.
  137.     A negative xoffset will draw the 3d bar on the left side
  138.     of the bar instead of the right hand side.
  139.  
  140. side (color list)
  141.     The color of the side of each of the bars in the group.
  142.  
  143. top (color list)
  144.     The color of the top part of the bar
  145. notop
  146.     Turns off the top part of the bar, use this if you have 
  147.     a stacked bar graph so you only need sides on the lower parts
  148.     of each stack.    
  149.  
  150. Note:    You won't see the color of the side or top on the pc screen.
  151.  
  152. GLE 3.2 (6-Mar-1991)
  153. ---------------------
  154.       File type changed from STREAM_LF to normal vax format.
  155.     
  156.       SMOOTHM option added which is identical to SMOOTH but
  157.       will allow multi-valued functions. (e.g. circles etc)
  158.     
  159.       TWIDTH("") and THEIGHT("") functions fixed again.
  160.  
  161. ...V3.2b
  162.  
  163.       DEFINE MARKER myname subnamex
  164.       MARKER myname
  165.       Allows you to define a new marker as any subroutine.
  166.  
  167.       e.g. to define a character from the postscript ZapDingbats font
  168.       as a marker you would use.
  169.  
  170.     sub subnamex size mdata
  171.         gsave                ! save font and x,y
  172.         set just left font pszd hei size
  173.         t$ = "\char{102}"
  174.         rmove -twidth(t$)/2 -theight(t$)/2  ! Centers marker
  175.         write t$
  176.         grestore            ! restores font and x,y
  177.     end sub
  178.         
  179.     The second parameter can be supplied using the MDATA command
  180.     when drawing a graph,  this gives the marker subroutine a 
  181.     value from another dataset to use to draw the marker.  For 
  182.     example the marker could vary in size, or angle, with every
  183.     one plotted.
  184.         d3 MARKER myname MDATA d4
  185.  
  186.     Encapsulated Postscript option modified so that WordPerfect
  187.     won't clip the edge of the drawing.
  188.  
  189.     On a PC the /EPS qualifier will now create a file using 
  190.     an extension of .EPS instead of .PS
  191.     
  192.     DEFMARKER mname fontname char_num scale dx dy 
  193.     This command defines a new marker, from any font, it is 
  194.     automatically centered but can be adjusted using dx,dy.
  195.     e.g.
  196.         defmarker hand pszd 43 1 0 0
  197.  
  198.     Bug in set color in PS devices which caused the 
  199.     color to affect a previous line is fixed.
  200.  
  201.     Added built in function which returns a string describing 
  202.     the device. e.g. DEVICE$() = "HARDCOPY, PS,"
  203.     on the postscript driver.
  204.  
  205.     This can be used to use particular fonts etc on appropriate
  206.     devices. E.g.:
  207.         if pos(device$(),"PS,",1)>0 then
  208.             set font psncsb
  209.         end if 
  210.  
  211.     POS(src$,search$,start) string function fixed (surprise surprise)
  212.     
  213.     The editor now tolerates lines > 80 characters. 
  214.     
  215.     Fixed bug which caused incorrect characters to be drawn
  216.     on pc screen occasionally.
  217. ...3.2c
  218.     
  219.     Pressing ESC repeatedly will now abort a redraw operation. (on PC)
  220.  
  221.     Load and Saveas will now default to .GLE 
  222.  
  223.     Bug with tex macro replacement fixed.
  224.  
  225.     Bug with mouse cursor not appearing on HERC screens is fixed.
  226.  
  227.     WPGLE.EXE added, this command will produce a special output
  228.     file which contains EPS for PostScript printers and a 
  229.     crude bitmap for WordPerfect to display on the screen.
  230.  
  231. ...3.2e
  232.     Fixed some colour mapping and added, purple, orange, pink, brown.
  233.  
  234. ...3.2f
  235.     Modified maximum size of dvilj,dvilj300,dviepson,dviep24 so that
  236.     all can take graphs up to 19cm x 27cm
  237.  
  238.     Added command line switches
  239.  
  240.         /nod    (add ^D to ps file)
  241.         /addd    (Don't add ^D to ps file)
  242.         /nomaxpath (Don't choke on complex fill paths)
  243.         /fill    (For dvibit, makes bar's filled instead of shaded)
  244.  
  245.     Added symbol for PC.
  246.     
  247.         GLE_NOCONTROLD TRUE
  248.          (Stops ^D being added to ps files)
  249.  
  250.     (this is the default for unix)
  251.     
  252.     The DCL symbol GLE_NOCONTROLD should be set to "TRUE" to kill the 
  253.     ^D on vms systems.
  254.  
  255.     If you set the DCL symbol GLE_EDITOR to TPU then you will get
  256.     TPU instead of EDT when you press ^E
  257.  
  258.     You can now tell gle about postscript fonts that you have 
  259.     downloaded into your own printer.
  260.  
  261.     Lets pretend we are adding a font called Greek-Bold
  262.  
  263.         1) Download the font into you laser printer
  264.         2) Add a line to FONT.DAT
  265. psgb 86 psgb.fmt plsr.fve psgb.fmt
  266. a    b  c        d
  267.         a = GLE's name for the font
  268.         b = The next unused number in font.dat
  269.         c = The font metric file, this can be created using
  270.             makefmt from and adobe font metric file
  271.             (.afm) which you should have been supplied
  272.             with your font.
  273.         d = The font vector file, this is just a font that
  274.             that gle can use to draw your font on non
  275.             postscript devices.
  276.         3) Add a line to psfont.dat
  277. psgb Greek-Bold
  278.         This tells the postscript driver that this is a 
  279.         font that the printer knows how to deal with.
  280.  
  281. -----------------------------------------------------------------------------
  282. GLE 3.1e (1-Mar-1990)
  283. ----------------------
  284.  
  285.       Errbars will now work with the bigfile option.
  286.  
  287.       x2ticks now come back on again if you turn the xaxis off and x2axis on
  288.       (The error bars distances cannot also be a bigfile)
  289.  
  290.       if you use a let d1 = exp from 1 to 10000 step 1
  291.       with a log xaxis it doesn't produce a smooth line.  GLE now
  292.       checks and if the xaxis is a LOG scale then it uses the
  293.       step option as an approximate required number of intervals which
  294.       it spreads along the xaxis in increasing steps.
  295.  
  296.       In the graph module, if you use '0' as a column for the x data
  297.       of a bigfile GLE will generate xdata of 1,2,3,4 ...
  298.       e.g.  d1 bigfile a.dat,0,2 
  299.  
  300.       Data separated with commas and no spaces was being read incorrectly
  301.       The data reading routine has been re-written. (introducing new 
  302.       and more interesting bugs in the process)
  303.  
  304.  
  305. GLE 3.1d (19-FEB-1990)
  306. -----------------------
  307.  
  308.       In the past  "TEXT a\delta b" would have produced a space
  309.       between the delta character and the letter b,  this action
  310.       was incorrect and had been fixed. 
  311.       Use "TEXT a\delta\ b" to get a space.
  312.  
  313.       "TEXT a(\delta)b" also works now.
  314.  
  315.  
  316. GLE 3.1c
  317. ---------
  318.  
  319.       Built in functions twidth("") and theight("") now work.
  320.  
  321.       Their is now a BIGFILE command for executing large gle files 
  322.       that won't fit into memory using INCLUDE. (note this should
  323.       not be confused with  the BIGFILE graph command).
  324.       e.g.  BIGFILE NZMAP.GLE
  325.       
  326.       As bigfile compiles and executes the gle file one line at a 
  327.       time you cannot use multi line structures (subs, if then else etc)
  328.       but you can call subroutines if they are defined before the bigfile
  329.       statement.
  330.  
  331.       Lines in bitmap drivers are now the right length (text looks better)
  332.  
  333.       There is currently a limitation on the size of text or tables that
  334.       can be printed (this may be fixed at a later date)
  335.  
  336.       The xg() and yg() functions now work if the graph has log axes
  337.  
  338.       A bug which stopped the last line of a data file being
  339.       read had been fixed.
  340.  
  341.       Correction to expression passing allows IF A$="ABC" THEN ... to work.
  342.  
  343.       Added shading styles RSHADE, RSHADE1, RSHADE2 ...(Lines at right angles)
  344.  
  345.  
  346. GLE 3.1b
  347. ---------
  348.  
  349.       Fixed the circle fill command so it uses the right colour.
  350.       
  351.       Modified PostScript arrows with wide lines so they look nice.
  352.       They are now filled triangles rather than two short lines.
  353.  
  354.       There is now an example in BOXR.GLE which shows you how to 
  355.       define a subroutine to draw boxes with rounded corners.
  356.  
  357.       Horizontal error bars have been added, the commands are
  358.             HERR, HERRLEFT, HERRRIGHT, HERRWIDTH 
  359.  
  360.       If you had the same subroutine defined twice in a gle
  361.       file it would skip the intervening gle commands, this is fixed.
  362.  
  363.       Arcto fixed for line devices (hpgl)
  364.  
  365.       Stacked bargraphs should not contain missing values,  replace
  366.       missing values with the value from the column on the left. e.g.
  367.             1 22 * 45  becomes          1 22 22 45
  368.  
  369.  
  370. GLE 3.1a
  371. ---------
  372.  
  373.       Bug with reading exponential format numbers fixed.
  374.  
  375.       Bigfile option added, so that you can extract particular 
  376.       columns of data from a data file, e.g. 
  377.             D1 LINE BIGFILE TEST.DAT,3,2
  378.       Will use column 3 for x values and column 2 for y values.
  379.  
  380.       e.g.
  381. '           data x.dat
  382.             d3 line
  383.       becomes
  384.             d3 line bigfile x.dat,1,4
  385.       As dataset three is made from columns 1 and 4.
  386.  
  387.       The space codes (\: \; \,) are now proportional to the
  388.       current font size.
  389.  
  390.       text \rule{2}{3}  will draw a box, and \glass can be used
  391.       to offset text.
  392.  
  393.  
  394. GLE 3.1
  395. --------
  396.  
  397.       Modified default DPOINTS setting so that if DTICKS is not a 
  398.       whole number it will display one decimal point.
  399.       e.g. (1.0,  1.5,  2.0) instead of (1   1.5   2)
  400.  
  401.       the  "graph data d2=c3,c1"  option now requires no spaces 
  402.       within the "d1=c1,c2"
  403.  
  404.       Begin path wasn't issuing a newpath, so multiple paths 
  405.       got added together.
  406.  
  407.       Gle files can now begin with a numeric character.
  408.  
  409.       Bug with bitmap drivers fixed (dviepson, dvilj300 etc) which 
  410.       resulted in a stray horizontal line on the page.
  411.  
  412.       The editor doesn't display long lines correctly,  it does 
  413.       store them though.
  414.  
  415.       On the PC  the PSGLE driver now writes output files 
  416.       to INPUTFILE.PS instead of out.ps   e.g. bar.gle --> bar.ps
  417.  
  418.       Added \linegap{-1} tex primitive to stop odd spaces lines
  419.       when using super/subscripts.
  420.       vscale and hscale were not being reset after each graph.
  421.  
  422.  
  423.       Some of the characters which were missing from the PLOTTER fonts
  424.       have now been installed (e.g.  []{}<>% )
  425.  
  426.       You can no add lines and text to a drawing using the mouse or arrow
  427.       keys on the PC version of gle. 
  428.  
  429.       There is now a graph command, FULLSIZE which sets 
  430.       vscale,hscale to 1,  and turns the border off.
  431.  
  432.  
  433. GLE 3.0h
  434. ---------
  435.  
  436.       Fixed bug with LSTYLE in PSGLE (on the pc only)
  437.  
  438.       You can change the size of the default key by setting the
  439.       hei of text used to draw the key. e.g.
  440.       begin graph
  441.             ...
  442.             key hei 1.2
  443.       end graph
  444.  
  445.       If the value of an error bar length is a missing value then that 
  446.       particular bar won't be drawn.
  447.  
  448.       If you escape out of the idiot graph creation menu it will now 
  449.       correctly put an END GRAPH in your file.
  450.  
  451.       Line and Grid shading has been added to the postscript 
  452.       device driver, the following colour names are now accepted.
  453.  
  454.       shade,shade1,shade2,shade3,shade4,shade5
  455.       grid,grid1,grid2,grid3,grid4,grid5
  456.  
  457.       e.g. BAR 2 3 FILL GRID3
  458.  
  459.       Print the example file SHADE.GLE on a postscript printer 
  460.       and stick it on the wall for reference.  ($ cgle shade /print)
  461.  
  462.       Bug with changing diskdrives on a PC is fixed.
  463.  
  464.       The fonts SSBI and SSI were reversed on the laser printer.
  465.  
  466.       There is now an axis qualifier SHIFT for shifting the labelling
  467.       horizontally (when the label refers to the data between the 
  468.       two ticks) e.g.
  469.             xaxis shift .4
  470.  
  471.       In order to put a large space between two words you must 
  472.       use these control sequences e.g.  TEXT  Hello \; world
  473.             \,   =     .1cm
  474.             \:   =     .2cm
  475.             \;   =     .4cm
  476.  
  477.       Use \_ to get an underscore character inside text
  478.       ("_" normally means subscript) 
  479.  
  480.       Fixed X2AXIS SIDE ON 
  481.  
  482.       HPGL Plotter pens 1=black, 2=red, 3=green, 4=blue, 5=magenta, 6=white
  483.  
  484.       Bug fixed in linestyles caused by the cap being set to ROUND which 
  485.       merges the dashes together for wide lines on the laser printer.
  486.  
  487.  
  488. GLE 3.0g
  489. ---------
  490.  
  491.       Fixed bug with smoothing more that 200 points
  492.       Fixed bug with joining between saved objects.
  493.  
  494. When using the plotter fonts you may find some characters are missing,
  495.       e.g.  %,[ and ]  (These have now been put into these fonts V3.1)
  496. The following command will replace these characters with latex equivalents.
  497.       size 24 18
  498.       text \chardef{%}{{\setfont{texcmr}\char{37}}}
  499.       text \chardef{[}{{\setfont{texcmr}\char{91}}}
  500.       text \chardef{]}{{\setfont{texcmr}\char{93}}}
  501.       ... rest of gle file
  502.  
  503.  
  504. GLE 3.0e (17-Sep-1990)
  505. -----------------------
  506.  
  507. Missing values are not used to calculate new dataset values during 
  508. a let command (e.g.  "let d3 = sin(d2)")
  509.  
  510. Fixed bug in LOG data display.  (If you have used LOG axis prior to 
  511. this release you SHOULD replot your graphs)
  512.  
  513. The bigfile option now works with markers as well as lines.
  514.             (e.g.  "d3 bigfile "year.dat" lstyle 1 marker dot ")
  515.  
  516.  
  517. GLE 3.0d (5-SEP-1990)
  518. ----------------------
  519.  
  520. The default labelling of axes is sometimes not ideal, for example
  521.       0     0.333333   0.6666667        1.0
  522. you can now adjust this with the command "XAXIS DPOINTS 3" which sets 
  523. the decimal places for an axis.  e.g.
  524.       0.000 0.3330.666   1.000
  525.  
  526. The MSCALE option now works.
  527.  
  528. Markers have been reduced in size, this will affect existing gle 
  529. files, they are now approx 60% of there original size.
  530.  
  531. The bigfile option now works on postscript printers, there was a bug 
  532. caused by sending an entire 10,000 point curve to the printer as one path
  533. which it choked on if it was short of memory.
  534.  
  535. You will occasionally get an error message "PATH TOO COMPLEX" this means
  536. that GLE decided to split up a line into shorter segments.  Normally
  537. this WARNING can be ignored.
  538.  
  539. The default axis labelling of  1, 1.5, 2  has been changed to  1.0, 1.5, 2.0
  540. Exponent axis labelling has been fixed 2.00000e4 becomes 2.0e4 
  541.  
  542.       *** NEW DEVICE DRIVERS ***
  543.  
  544. GLE now supports the EPSON 8PIN and 24Pin printers, and the 
  545. HP deskjet/laserjet printers.  To support bitmap devices which require
  546. a large amount of memory GLE first writes a device independent file
  547. OUT.DVI, you then run the bitmap driver for your printer and that prints
  548. directly to LPT1:  e.g.
  549.       C:\GLE> dvigle myfile        (produces OUT.DVI)
  550.       C:\GLE> dviepson       (creates bitmap and prints to lpt1)
  551.  
  552. The output options are:
  553.       C:\GLE> DVIEPSON Standard epson printer
  554.       C:\GLE> DVIEP24        24 Pin epson printers (180 dpi)
  555.       C:\GLE> DVILJ          HP Laser jet, Desk jet (150 dpi)
  556.       C:\GLE> DVILJ300 HP Laser jet, Desk jet (300 dpi)
  557. The hi resolution drivers are significantly slower (2-3 times) than the 
  558. low resolution drivers so would only be used for final copies.
  559.  
  560. By default the fonts (RM, RMB, SS, TT etc) will all map to PLSR (plotter 
  561. simplex roman) on both bitmap drivers and the HPGL driver.
  562. If you want this to happen on other drivers then put the
  563. command "PLOTTER FONTS" right after your SIZE command in your gle file.
  564.  
  565. An lwidth of .00001 on a laser printer will give you 1 pixel width lines.
  566. (and won't occasionally round to two pixels)
  567.  
  568. Using Postscript and HP drivers on the PC:
  569.       C:\GLE\> PSGLE MYFILE.GLE    (Writes myfile.ps)
  570.       C:\GLE\> HPGLE myfile.gle    (Writes out.hp)
  571.  
  572. Making a 360K distribution diskette from the 1.2M diskette.
  573. (if a: = 1.2Meg disk,  b: = 360K disk)
  574.       a:> copy a:install.exe b:
  575.       a:> copy a:pkunzip.exe b:
  576.       a:> copy a:gle1.zip    b:
  577.       a:> copy a:gle2.zip   b:
  578.       a:> copy a:gle3.zip   b:
  579.       a:> copy a:gle4.zip   b:
  580.  
  581. To install GLE on a pc type:
  582.       C:\> a:install 
  583.  
  584.  
  585. GLE 3.0c
  586. ---------
  587.  
  588. Bug with LaTeX symbols in graph titles fixed. 
  589.  
  590. Extra graph dataset qualifiers "BIGFILE and NOMISS"
  591.       NOMISS removes missing values from a dataset.  (so disjointed lines
  592.       are re-connected)  (e.g.  "d3 colour red nomiss")
  593.       BIGFILE allows a very large dataset to be drawn on a PC, it doesn't
  594.       read the dataset into memory as usual.  (but must be in a file 
  595.       with only one dataset, and no BARS or markers can be drawn.
  596.       And axis ranges must be specified by hand.
  597.       (e.g.  "d3 bigfile "year.dat" lstyle 1")
  598.  
  599. Fonts:      The LaTeX greek font is missing from the small distribution disk.
  600.       It is now possible to copy on any missing font directly into the 
  601.       c:\gle\font\ directory. Copy both the FMT and FVE files. 
  602.       e.g. "texcmmi.fmt, texcmmi.fve"
  603.  
  604.       set join mitre | round | bevel
  605.       set cap but | round | square
  606.  
  607. Fixed:
  608.       Superscript, Subscript
  609.       Symbols on Laser Printer after white fill.
  610.       Individual dataset scaling fixed.
  611.       
  612. Notes on new Drivers:  HPGL, TEK4010, P79.
  613.       HPGL: With this driver you can define the symbols
  614.             hpgl_open, hpgl_close to be the escape
  615.             sequences required for strange hp printers.
  616.             also HPGL_WIDTH, and HPGL_HEIGHT for non A3 plotters
  617.       
  618.       TEK:  TEK_OPEN and TEK_CLOSE can be defined to allow
  619.             non dec tektronix terminals, e.g. TEK_OPEN = "^[?38h"
  620.  
  621.       (this is normally done in CGLECMD.COM so that when you specify
  622.       /DEV=V550, OR /DEV=HPA4 it defines the symbols for you.
  623.  
  624.       On the vax the following cgle dev qualifiers are valid:
  625.  
  626.             cgle myfile.gle /dev=vdisk,v550,hpgl,tek
  627.       Plus any P79 supported device, your output file will be  MYFILE.HPGL
  628.  
  629.  
  630. GLE 3.0b
  631. ---------
  632.  
  633. 2) Currently supported devices:
  634.       PC version:
  635.             HERC, EGA, CGA, etc (any BGI supported display)
  636.             PostScript
  637.       VAX version:
  638.             REGIS(VT125,VT240,VT340 etc)
  639.             UIS  (Workstations running VWS software)
  640.             PostScript
  641.       (additions to this list lower down)
  642. 3) Fonts:
  643.       The PC version comes on one 360K floppy, on this disk is a 
  644.       subset of fonts, if you use a font that isn't on this disk
  645.       it will use a replacement font, and replacement metrics so
  646.       the size of the text may be misleading.
  647.       If you have enough disk space (another 1Meg) then you can
  648.       install the complete font set.
  649.  
  650. 4) PostScript:
  651.       The PSGLE driver is not on the 360K Floppy, you must install 
  652.       it separately if you have enough disk space (another 400K)
  653.       (or copy gle and data files to a VAX and use the vax
  654.       PS driver)
  655.  
  656. 5) Using GLE on a VT100/VT240
  657.       If your keyboard doesn't have function keys (f9-f14) then you
  658.       can use GOLD 1-4 (for 11-14) and GOLD 0 (for f10) and
  659.       GOLD 9 (for F9)  GOLD 5 (show errors)
  660.  
  661.       If you run GLE on a vt100 it will work OK but not actually DRAW
  662.       anything on the screen (as it thinks it's a vt240)
  663.  
  664. 6) Other keyboard features:
  665.       ^F will toggle between fast and slow (but nicer text) on some devices
  666.       ^E will call VAX/EDT
  667.       ^Z Exits from all menu's etc (like ESC on a PC)
  668.       ALT-X Exits on a PC without asking you for confirmation.
  669.  
  670. 7) There are currently no drivers for Plotters or DotMatrix Printers, 
  671. these are planned for the next month or two   (see update notices below)
  672.  
  673. 8) Additions:
  674.       The command "SET FONTLWIDTH value"  has been added, this allows
  675. the line width of stroked fonts to be changed.
  676.  
  677.