				===============
				Changes of tgdb
				===============
1.0 -> 1.1
----------

* added command line completion (requires gdb 4.13 or above): if you hit
  the <Tab> key on the command line, the portion of the command or symbol
  entered so far is automatically expanded; if the command/symbol can be
  expanded in several ways, a listbox appears which lets you choose one

* improved selection of expressions: <Double-1> and <Triple-1> can now be
  used to select components of structs and unions, as well as methods (e.g.
  "foo . bar", "foo->bar", or "foo.bar((marvin *)42)"); furthermore, you
  may select complex expressions of any length via multiple clicks with the
  left mouse button on the first component (one click for each component)

* C++: chased a bug which caused tgdb to hang when a breakpoint was set
  at an overloaded method; now a dialog box appears and lets you choose
  one, none or all methods to set a breakpoint at

* C++: if you set a breakpoint at an object's method, tgdb automatically
  finds the object's appropriate class, and sets the breakpoint at that
  address. Example:

     class foo {
       public:
         inline foo(void) {};
         int DoWhatIMean(char *when) {...};
     };
     ...
     foo bar;
     bar.DoWhatIMean("now");

  If you select "bar.DoWhatIMean" and click on the breakpoint icon (or if
  you use gdb's break command), a breakpoint will be set at "foo::DoWhatIMean".

* it is now possible to print selected expressions using <Double-2> (this
  binding applies to the source and to the gdb window)

* improved text adjustment in the source window: if the pc is in the first
  or last line of the current display, the text widget is automatically
  scrolled up (such that one can see the context around that line)

* fixed a bug which caused tgdb to not recognize gdb's confirmation request
  when using the "add-symbol" command

* fixed a bug in tgdb's source file cache: if, in the meantime, a previously
  loaded file is modified, it is now automatically reloaded as soon as it is
  referenced again

* fixed a bug which caused tgdb to fail when non-existant source files
  were referenced

* fixed a bug which caused tgdb to not redisplay breakpoints when a
  "file" or "symbol-file" command is given

* fixed tgdb's startup script to be Bourne shell compliant

* updated documentation (README, INSTALL, tgdb.hlp)
