1.3.4 (ustable):

* Related Records: Fix SQL error when sorting doubly-related records.

1.3.3 (unstable):

* Related Records: Allow viewing of records from doubly-related records.

1.3.2 (unstable):

* Developer menu: Add a Script Library.
  This allows you to add Python modules that can be imported by your buttons scripts 
  or field calculations.
* Avoid relatively rare SQL errors about ambiguous fields and non-existant fields.
* Start dialog: Attempt to avoid strange line endings.
  Bug #369602 from Javier F. Serrador.
* Build:Partial cygin build fix.

1.3.1 (unstable):

* Translations: Add Import and Export buttons, so you can use 
  the standard .po format. (Johannes Schmid)
* Connections: Don't bother trying alternative network ports 
  after one port was successful. Bug #368787 from Craig Keogh.
* Find: Prevent SQL Errors when using capital letters in table and field names.
  Bug #375605 from William Manley.
* Button scripts and calculated fields: Code now uses Python syntax-highlighting 
  colors, using GtkSourceView. (Johannes Schmid, Dodji Seketeli, Murray Cumming)
* Document:
  - Store scripts and other multi-line text in XML text nodes, instead 
  of attributes, to be more compatible with other (non-libxml) XML parsers, 
  such as Python's minidom.
  - Store the document format version in the document, warn when saving in 
  a new format, and fail to load when the format version is too new.
* Added --debug-sql commmand-line option, which prints out the generated 
  SQL commands. (Johannes Schmid, Murray Cumming)


1.2.0:

New features in Glom 1.2:

* Really remember the last-viewed record on the details view when navigating 
  between tables.
* List view: Remember column widths when you resize them manually.
  Bug #358089 from Peter Williams.
* Related records:
  - When clicking the open button, show a warning dialog when the related 
  record indicates a non-existant doubly-related record, making navigation 
  impossible.
  - Allow navigation to doubly-related records (such as products from 
  invoice lines on an invoice record), even when only the ID key is shown.
* Help buttons now work, though more help text is needed.
  (Johannes Schmid and Don Scorgie)

* Developer mode:
  - Added Add Related Table item to the Tables menu. This is a time-saving 
    feature to quickly create a related table and a relationship to it,
    and is a first step to implementing further refactoring functionality.
    Bug #355975.
  - Field definitions: Warn about null values and non-unique values 
    when setting a primary key.
  - Related records: Allow the developer to specify to what table the user 
    will be taken, or use the automatic choice.
  - List views and related records portals: 
    - Allow image fields in the lists.
    - When no fields are specified, show a hint about editing the layout.
    Bug #354073 from Peter Williams.
  - Python API (Calculated fields and button scripts):
    Added record.connection and record.table_name attributes, so you can 
    go wild with SQL with the whole pygda API, if you must.
    The connection is even open already, you lucky people. 
    See http://www.glom.org/wiki/index.php?title=Calculated_Fields_API#Using_the_full_pygda_API
    (Murray Cumming)
  - Button scripts: Update the view after the script has run, in case it 
    changed any data.
  - Field Formatting: You can now specify a number of text lines to show for 
    multi-line text. Bug #355907 from Peter Williams.
  - Layout editor dialogs: Added explanatory tooltips to the Add buttons.
  - Field calculation editor: Prevent translators from translating the 
    fragment of python code.

Changes since 1.1.7:

* List view: Can now show image fields.
* Design: Fields: When marking a field as the primary key, avoid crashes 
  and warn about null values and non-unique values in the field.
 
1.1.7:

* Button scripts: After the script has run, check that the current record 
  still exists, and act appropriately.
* Related records portal: Correct the loading of the specific navigation 
  details from the document, so it is not lost.
* Field editing: Fix modality problem with the field details window that 
  stopped it from being used.
* Register Glom as capable of handling its own MIME type. (Denis Leroy)
* Make the Help system work, though some more text is still needed.
  Bug #349357
  (Johannes Schmid, Don Scorgie) 

1.1.6:

* Really remember the last-viewed record on the details view when navigating 
  between tables.
* Python API (Calculated fields and button scripts):
  Added record.connection and record.table_name attributes, so you can 
  go wild with SQL with the whole pygda API, if you must.
  The connection is even open already, you lucky people. 
  See http://www.glom.org/wiki/index.php?title=Calculated_Fields_API#Using_the_full_pygda_API
  (Murray Cumming)
* Build fix. (Daniel Holbach)

1.1.5:

* List view: When remembering column widths, allow the columns to be 
  resized smaller again. Bug #358089 from Peter Williams.
* Related Records:
  - Avoid a SQL error when showing a doubly-related field without showing 
  the key field that is used in the relationship. 
  - Allow the developer to specify to what table the user will be taken 
  when clicking on the row button, or just use the automatic choice.
* Button scripts: Update the view after the script has run, in case it 
  changed any data.

1.1.4:

* List view: Remember column widths when you resize them manually.
  Bug #358089 from Peter Williams.
* Find: Fix crash when searching on more than one field (an AND).
* Fixed some memory management problems.
  (Murray Cumming)

1.1.3:

* Added Add Related Table item to the Tables menu. This is a time-saving 
  feature to quickly create a related table and a relationship to it,
  and is a first step to implementing further refactoring functionality.
  Bug #355975.
* Creating from examples: Correct a problem that could lead to Glom not 
  using all the rows of example data.

1.1.2:

* Related records:
  - When clicking the open button, show a warning dialog when the related 
  record indicates a non-existant doubly-related record, making navigation 
  impossible.
  - Allow navigation to doubly-related records (such as products from 
  invoice lines on an invoice record), even when only the ID key is shown.

1.1.1:

* Field Formatting: You can now specify a number of text lines to show for 
  multi-line text.
  Bug #355907 from Peter Williams.
* Layout editor dialogs: Added explanatory tooltips to the Add buttons.
* List views and related records portals: 
  When no fields are specified, show a hint about editing the layout.
  Bug #354073 from Peter Williams.
* Avoid changing example files when using them to create new files.
* Field calculation editor: Prevent translators from translating the 
  fragment of python code.

1.0.5:

* Connection dialog: Use mnemonics for accessibility navigation.
  Bug #349357 from Ryan Paul.
* Details view: Date fields: Really save the new value when selecting dates from 
  the calendar. Bug #349359. (Johannes Schmid).
* Design Tables: Allow table names to contain special characters such as -.
  (You will need a newer libgda to allow database names to contain these characters too.)
* Loading from examples: Handle quoted commas in the example data and reject badly 
  formatted example data.
* Build:
  - Added disable-update-mime-database configure option is apparently helpful 
  for distro packagers. Bug #351989. (Fryderyk Dziarmagowski)
  - Fixed warnings with gcc 4. Bug #344815. (Elijah Newren)
* Avoid some crashes when dealing with unusual situations. (Murray Cumming)
* Examples: New examples added: 
  - Music Collection
  - Film Production Manager
  - Project Manager
* Documentation: Added section about calculated fields. (Murray Cumming)
* Translations:
  - New Norwegian bokmål translation (Kjartan Maraas)
  - New Hungarian translation (Gabor Kelemen)
  - Updated Vietnamese translation (Clytie Siddall)

1.0.4:

* Related Records: When clicking the details buttons, just show the details, instead 
  of flicking between details, list, and then details. That was annoying.
* List View:
  - When clicking Add, put the cursor in the appropriate column. 
* Check for uniqueness before setting a value for a unique or primary-key field in the 
  database.
* Calculations:
  - Allow the calculations to detect empty non-text fields, via the None object.
  - Recalculate calculations when a relationship's from key is changed, if that 
  relationship is used in the calculation.
* In the Edit Tables dialog and Field Defintions dialog, do not double-click to open/edit, 
  because this leads to awkwardsness/surprise because single click edits the cells too.
* Layout: Slight performance and positioning improvements.
  (Murray Cumming)
* Some more Windows/Cygwin build fixes. (Yselkowitz)  
* Slightly (very slightly) more tango-like application icon. (Murray Cumming)

1.0.3:

* Fields: Prevent crash when adding field in non-English locale.
* Find:
  - Fix the [Find] button next to ID fields. It was wrongly saying that there 
  were no results.
  - Really offer a second find when no results are found.
  - Show the busy cursor while finding.
* Layout: Really save changes of related records portal layouts and of custom 
  field formatting. 
* Some Windows/Cygwin build fixes.

1.0.2:

* Added a "..." (better suggestions welcome) next to date fields, to 
  show a calendar dialog. New features like this should not be in the stable 
  series, but this could help to solve a strange locale bug that someone is 
  experiencing.

1.0.1:

* Correct failure while creating an example for the first time.
  (though it worked when you tried again.)
* Updated translations: 
  - Finnish (Ilkka Tuohela)
  - Vietnamese (Clytie Siddall)
  - Spanish (Francisco Javier F. Serrador)

1.0:

* List view: You can now click on the column headings to sort by a field.
* The busy cursor is shown during most communication or disk activity.
* Reports: The table title is now optional.

0.9.92

* Database Preferences: Added Organisation Logo field.
* Details layouts and report:
  * Added Image layout part, for arbitrary images on the layout.
* Reports:
  * Added Header and Footer parts.
  * Show images.
  * Tell the user that the report will be opened in the browser, in case the 
    browser is not at the front.

0.9.91

* Creating databases: Make sure that the user is in the developer group, even if he has never 
  opened an example, allowing him to change his own database.
* Date fields:
 - Show and parse 4 digits for the year, even if the locale (stftime) stupidly thinks otherwise, 
   though this need attention from translators in affected locales. Fixed for en_GB (Britain).
   Was not a problem for en_US or de_DE.
* Details layouts:
 - Fields with choices are no longer insensitive when read-only, so you can now, 
   for instance, select and copy text out of them, or see what is in their menus.

0.9.9:

* Details layouts:
  - Added a Notebook layout part, with tabs, so the details can show more information, 
    such as several related layouts portals.
  - Stop pictures and calculated values from existing records appearing on new empty records.
* View Layouts and Reports:
  - Allow doubly-related fields. For instance, Actor::Agent::name on the Details of a 
    a Character record.
  - Add a Text layout part, for arbitrary text on the Details view, or reports.
* Reports:
  - Allow top-level fields in reports, for non-grouped-by reports.
  - Allow use of Group By parts without specified group-by fields, so they 
    can be (mis)used just to specify a sort field for non-grouped-by records.
  - Allow Group By parts to be sorted by multiple fields, and allow the sort 
    order (ascending or descending) to be specified.
  - Added Vertical Group report part, for packing more information into a row.
  - Allow adding of fields as siblings while selecting the field, instead of 
    requiring the user to select the parent group.
  - Allow custom formatting of fields.
  - Allow a border width to be specified for the records table cells.
  - Added a horizontal line below group-by titles.

0.9.8:

* Lookups: Fix intermittent problem that caused looked-up values to 
  not be stored in the database.
* Related Records: Correctly reload portal layouts that use related 
  (from the related table) fields, rather than just fields in the related table.
* Performance: Avoid querying for some unnecessary fields on Details view.

0.9.7:

* When creating from a read-only example, really do not mark the saved file 
  as not an example, and save the new database name, so you can open it 
  again from the saved file.
* Prevent duplicate table, field, relationship, and report names, 
  to prevent crashes.
* Field Definition:
  - Default Value tab renamed to Value.
  - Default Values and lookups are now grouped as 
    User Entry and are mutually exclusive with Calculation.
  - When changing a calculation, all values will be recalculated, 
    with a warning and the chance to cancel.
  - Fix crash when changing field type to number, when not all 
    existing values are valid numbers.
  - Fix crashes when converting from text to boolean.
  - Fix crashes when converting from boolean to number.
  - Preserve information when converting from anything to boolean.
* Details and List Views: Do not allow editing of calculated fields.
* Details View: Use the correct formatting for second columns in combo boxes for 
  related choices.
* List View: Do not add a record when clicking on the Edit button on the last row 
  - just go to the Details view.
* List layout: Warn that image fields are not supported on the 
  list view yet.
* Date and Time Parsing improvements.
* New Translations:
  - Finnish (Ilkka Tuohela)
* Updated Translations:
  - Catalan (Josep Puigdemont)
  - Vietnamese (Clytie Siddall)

0.9.6:

* New built-in System Properties relationship:
  allows you to show fields from the system properties, such as 
  the organisation's name and address, on a layout or report.
* The Field Layout Properties dialog (right-click on a field in 
  developer mode to see the menu) now allows you to choose a custom title 
  for the field for this instance, in case the regular field title is not 
  appropriate. This is often the case for related fields.
* Save Field Layout Properties when the dialog closes. (Fixes a regression)
* Find:
  - Fix oddness in Details view when finding. (Fixes a regression)
  - Start Find mode on the current View, instead of always going to the Details view.
  - Find works again when you start on the Details view. (Fixes a regression)
  - Do a Find All if the find is not successful, if the user doesn't want to try again.
* Avoid python warnings when adding new records.
* Stop images from disappearing when refreshing layouts.

0.9.5:

* Details Layout:
  - Add Button layout item, to run arbitrary Python code, with access to 
    the record data.
  - Fix bugs that caused the layout changes to be forgotten (regressions).
* Opening Examples:
  Do not open the Save As dialog box in the examples directory. 
  Also see the latest Bakery (2.3.17) for fixes to prevent Save As in read-only paths.
* Build: Install the logo, for use by the Applications menu.

0.9.4:

* Relationships: Really save new relationships. (Fixes a regression.)
* Prevent crash when doing a lookup from a field of a different type, or via 
  a relationship whose key fields are of different types.
* Prevent crashes when deleting field or relationships that are used on a layout.

0.9.3:

* Prevent crashes when using Table or Field names with uppercase characters.
* Translation:
  Added Translations menu item to Developer menu. Use this to specify 
  translated table titles, field titles, layout part titles, report titles, 
  etc, to be used when your Glom system is used in that locale.
* Prevent underscores from being interpreted as navigation markup in table 
  and report titles.
* Performance improvements.
* The .desktop file can now be translated.
* New Translations:
  - Vietnamese (Clytie Siddall)
* Updated Translations:
  - Canadian English (Adam Weinberger)
  - Spanish (Francisco Javier F. Serrador)

0.9.2:

* Examples:
  - When you open an example you must now always save an editable copy, 
  and a new database will always be created on the server.
  - Examples contain example data to fill the new database.
  - Added File / Save As Example feature in developer mode.
* New files: Create the glom system tables, to avoid the error message.
* Find:
  Quick Find: Type criteria in this entry to search all text fields.
  Found Set: The number of found records and number of total records are now 
  shown at the bottom right of the window, along with a Find All button.
* Added File / Export feature, for exporting comma-separated data. 
* Image fields: Choosing clear from the context menu now really clears 
  the field in the database.
* Updated Translations:
  - Canadian English (Adam Weinberger)
  - Spanish (Francisco Javier F. Serrador)

0.9.1:

* List view: Show new records that were added in Details view.
  (Bug found by Daniel Holbach and Greg Breland.)
* List and Details views: Do not crash when entering ;, ', or " characters.
  (Bug #323266 from Nicolas Chevreux.)
* Dialog text grammar changes. (Bug #300139 from Adam Weinberger).
* New Translations:
  - Nepali (Pawan Chitrakar)
* Updated Translations:
  - Canadian English (Adam Weinberger)
  - Catalan (Josep Puigdemont)
  - Czech (Miloslav Trmac)
  - German (Hendrik Brandt)
  - Spanish (Francisco Javier F. Serrador)

0.9.0:

* Remembers last-viewed record and layout: If you view a record, then go 
  to another table, then come back, the same record will be shown, on the 
  same layout.
* Table title is now big and bold.
* Details view:
  -  ID fields that identify a unique related record (e.g. a Company ID on 
  a contacts record) now have a Find button, so you can search for the 
  related record, to get the ID.
  - When deleting a record, you will be asked for confirmation, as the 
  list view already does. And when deleting the only record, the record 
  will be blanked instead of still showing the dead record.
* Find:
  - Really searches for substrings.
  - Warns if no criteria was entered.
  - Warns if no records were found.
* Updated translations:
  - Canadian English (Adam Weinberger)
  - Spanish (Francisco Javier F. Serrador)
  - Czech (Miloslav Trmac)
  - German (Hendrik Brandt)

0.8.37:

* List view (and related records lists)
  - Instead of double-clicking to open record details, you can now click 
  on the small Open button on each row.
* Details view:
  - ID fields that identify a unique related record (e.g. a Company ID on 
  a contacts record) now have an Open button, so you can go quickly to 
  the related record. 

0.8.36:


* Layout design:
  - Don't forget related fields when reopening the layout dialog.
  - Change related field names on layouts when renaming fields.
  - Change relationship names on layouts when renaming relationships.
  - Field selection dialog: Now sorted alphabetically.
* Relationships:
  - Relationships may now optionally not allow editing of 
  related fields.
  - Allow more than one relationship to the same table.

0.8.35:

* Tables: New tables have a description and a comments field as 
  well as the primary key.
* Details:
  - Related fields, with automatic related-record creation:
  Really write the new value into the related record, instead of 
  just creating the related record.
  - The default layout is now more useful.
  - Field titles are now visible again when there is only one 
  item in a multi-column group.
* Relationships: Create a suitable title when adding a 
  relationship name.

0.8.34:

* Prevented crash at startup. (Daniel Holbach)
* Added Image field type. (Murray Cumming)

0.8.33:

* Details layout: Group names can be changed again.
* Editing tables list:
  - System tables are no longer shown.
  - Prevent crash when deleting the currently-shown table.
* Editing relationships: System tables are no longer shown.


0.8.32:

* Dates: Allow parsing of, for instance, 11/5/1973 instead of 
  just 11/05/1973.
* Tables:
  - Prevent crash when removing a table.
  - Update the Tables menu when adding tables.
* Accept a filename on the command line.
* Examples:
  - Add Save As button to the warning about read-only 
  examples.

0.8.31:

* Initial Dialog: Added Open Examples button. The examples 
  are now installed.
* Build fix when using warnings as errors.

0.8.30:

* Field Formatting: Choices from related tables: This was 
  broken in 0.8.29.
* Updated screenshots.

0.8.29:

* Field Definitions: Added default formatting, so you don't 
  have to specify the same formatting repeatedly.
* Make the .glom document more compact. 
 
0.8.28:

* File/Print works for List view, printing a list of records 
  in the found set.
* Reports:
  - The Summary part is now implemented, allowing totals, 
  averages, and counts.
  - Group By parts may now show extra "secondary" 
  fields, in addition to the field by which the records are 
  grouped. 
* Translations updated:
  - Spanish (Francisco Javier F. Serrador)
  - Czech (Miloslav Trmac)
  - Canadian English (Adam Weinberger)
  - British English (Gareth Owen)

0.8.27:

* Simpler Tables menu replaces the Navigation/Tables 
  dialog window.
* Added simple reports functionality, via the Reports 
  menu.

0.8.26:

* For new databases, really allow the developer to create 
  and edit records. This has probably been broken since 
  the user administration was added.
* Added Developer/Database Preferences menu item, where 
  you can enter global values for the system name, 
  organisation details, and specify next values for 
  auto-incremented fields.
* Show the system name at the top of the window.
* Find mode: Works again.
* Hide scrollbars when they are not needed.

0.8.25:

* Details: Use a bigger widget (TextView) with scrollbars 
  for multiline text fields.
* Details and List: Right-align numbers.
* Calculated fields: Do the calculations in the correct 
  order of their dependencies.
  
0.8.24:

* Remove debug code that hardcoded one file path, 
  so you can open any file.

0.8.23:

* Details and List:
  - Allow a drop-down list of choices for a field.
    Either a custom list, such as Mr, Ms, Mrs, Miss, 
    or a list of related records, such as a list of 
    product codes. This is demonstrated in the 
    example, in the Invoices table.
- Details layout: Fields are now editable by default.
* Fixed various leaks and crashes, improved 
  performance, and simplified the code some more.

0.8.22:

* Field Definitions:
  - Do not save empty default values as "NULL" or 0.
  - Prevent crash when opening Field details a second 
    time.
  - Allow saving when the default value changes.
  - Calculated fields:
    - Simplified python API.
    - Aggregate calculations (sum, count, max, min) 
      on related records.
    - Calculated fields may use the results of 
      other calculated fields.
    - Do not lose digits after decimal points.
    (Demonstrated in the Invoice table in the example.)
* List:
  - Really do lookups and recalculations when 
  adding new records.
* Details:
  - Related records: Only show related records, not 
    all records.
* g++ 3.4 build fixes.
* Translations:
  - Updated Spanish (Francisco Javier Fernandez)


0.8.21:

* Calculated Fields: Your python function can now use 
  the record's other field values. This requires 
  the python libgda bindings in gnome-python-extras 2.11.
* List: Do lookups, and refresh related fields, when 
  adding new records, not only when changing existing 
  records.
* Details and Lists Layout: Field formatting is now in a 
  separate dialog window.
* Boring Internals:
  - The List view's TreeModel now gets the data from the 
  database dynamically on-demand, though it probably 
  needs some more work to do that as efficiently as 
  possible.
  - Now depends on pygtk and gnome-python-extras/libgda.
* Translations:
  Updated: Candadian English (Adam Weinberger),
  German (Hendrik Brandt), Czech (Miloslav Trmac) 

0.8.20:

* Fix the boost::python build problem.
* Added highly experimental File/Print menu item. It 
  does stuff in the Details view. It should open some 
  HTML in your browser. glom installs an XSLT file 
  used to create the HTML, so feel free to improve it.
* Translations: Added Kinyarwanda translation. (Steve Murphy)

0.8.19:

* List and Details: When defining the layout, developers
  can specify numeric formatting, such as decimal places,
  and currency symbols.
* Details: Related Records now use all available layout 
  width, instead of having a fixed width.
  (Murray Cumming)
* Translations:
  - Pango markup and spaces not marked for translation.
    (Christian Rose)
  - Added Swedish (Christian Rose).
  - Updated Albanian (Laurent Dhima),
    Canadian English (Adam Weinberger),
    Czech (Miloslav Trmac),

0.8.18:

* The binary will be installed, fixing the problem in 
  0.8.17. Sorry.

0.8.17:

* User/Groups Administration: 
  Choosing the Developer/Users menu now allows you to 
  create groups and specify view/edit/create/delete 
  access rights for each table for each group.
* Developer mode: Now only possible for users who are in 
  the developer group.
* Details view: You can now right-click on a field to add
  a field, group, or related records.
* Ignore pga_* tables created by pgadmin. 

0.8.16:

* Relationships:
  -  Allow the developer to specify whether related records 
  should be created automatically.
  - Do not clear the To Field column when the user clicks on it.
* Details/List views:
  - Automatic creation of related records:
  When you enter a value in a related field, when their is 
  not yet a key value to identify the related record, a 
  record can be create automatically, and the key value 
  will be filled in for you.
  - Developers may set fields on the layout as non-editable.


0.8.15:

* Related Fields:
  Details and List views can now show fields from related records.
  Just choose the relationship when you choose the field on 
  the layout. This even works in Related Records portals.
* Non-editable fields:
  When choosing a field for a layout, you can specify whether 
  editing of the field should be allowed.
* Dialogs are more HIG-compliant, using secondary text.
* Now requires gtkmm 2.6 instead of 2.4.

0.8.14:

* Details View: Adding records works even when a field appears
  more than once in the layout.
* List View: Deleting records works again.

0.8.13:

* Details:
  - Related Records now work, including automatic addition of new 
    related records.
  - In developer mode, you can right-click on fields to choose a 
    different field.
  - In developer mode, you can right-click on related records to 
    choose a different relationship and choose the fields to show.
  - Groups may now contain the same field more than once.
* Details and List: Automatically-generated primary keys do not 
  need to be displayed.
* List: Avoid GTK+ warning when clicking on empty space in the 
  TreeView.
* Example:
  - Make some fields lookup their data from relationships:
    Invoice Lines gets product information from the products table,
    and Invoices looksup the customer name from the contacts table.
  - Warn if people recreate a database on the server from a 
    read-only example file, because they will probably want to 
    change things.

0.8.12:

* Postgres connection:
  - Really use the template1 database when creating new databases.
  - Slightly better error handling.
* Obscure internals:
  - Use a custom GdaValue-based treemodel for the List view,
    allowing us to get data on-demand in future.
 
0.8.11:

* Postgres connection:
  - Connect to the template1 database when creating new databases, 
    because recent (?) versions of postgres require this.
  - Don't ignore the host name.
  - Added postgres_setup.txt and a non-libgda test to help 
    investigate connection problems.
  - Share connections more, without re-connecting, to increase speed.
* List Layout:
  - Fix bug that prevented data entry of fields that have 
    human-readable titles.
* Layout Design:
  - Fix loss of layout groups when loading.
  - Allow adding of related records (half-finished) in the 
    middle of the layout, and no longer show them automatically 
    in a notebook.
    (It's really time to make this feel like glade.)
* Navigation:
  - Show table titles instead of name when in Operator mode.
* Build:
  - Distribute the intltool files.
    http://bugzilla.gnome.org/show_bug.cgi?id=162932 (Cezar)
  - #include libintl.h in more files, required on some systems.
    http://bugzilla.gnome.org/show_bug.cgi?id=162932 (Mike Castle)
  - Fix Glib::wrap() build error with gcc 3.4.3.
    http://bugzilla.gnome.org/show_bug.cgi?id=160245 (Christian Krause)

0.8.10:

* Added an example document.
* Offer to create databases on the server based on documents,
  such as examples.
* Don't display empty dates, times, and numbers as "NULL".
* Specify empty dates and times to server in SQL as "NULL", not 
  as empty strings.
* Dialogs have default buttons. 
* Avoided a few crashes.

0.8.9:

* Really save details of new tables in the document.
* Create the tables inside the specified database, instead of 
  putting them all in the user's default postgress database.
* Enforce one database per document - ask for a new database name 
  when creating a new document instead of allowing the user 
  to choose an existing database.
* When there is still only one table, open it without asking the 
  user to choose a table, as if it is the default table.
* Show the database title in the window title bar, instead of 
  the filename.
(Murray Cumming)
* Fix an internationalization build problem. (Mike Castle)
* Added translations: 
  - Gujarati (Ankit Patel)
  - Punjabi (Amanpreet Singh Alam)
  - Spanish (Francisco Javier F. Serrador)
  - Turkish (Baris Cicek)

0.8.8:

* Details Layout: Simpler, hierarchical layout. This allows 
  more complex layouts, and allows fields to appear more than 
  once on the same layout.
* Documentation: Added user manual, though it looks a 
  bit strange in yelp at the moment.
* Relationships:
  - Avoid crash when fields of differerent types are used in
  relationships.
  - Actually delete relationships when the delete button is pressed.

0.8.7:

* Field Definition:
  - Add Boolean field type, which is displayed as a checkbox.
  - Default values can be the result of python calculations.
  - Default values are validated according to the field type.
* Pressing cancel on the initial dialog closes the application.
* Details view:
  - Corrected widget layout problems.
  - Do not lose the layout groups after a while.
  - Fix crash when changing user level, with related records.
(Murray Cumming)
* Added Albanian translation. (Laurent Dhima)
  
0.8.6:

* Creating new documents works again.
* Auto-save documents, when in developer mode, 
  instead of asking.
* Navigation:
  - Database: Default to the linux user name.
  - Tables: Show the hidden status correctly.
* MIME type registration: Use both old and new system, 
  as needed by GNOME 2.6.
* Allow a file to be specified on the command line.
* Removed useless toolbar.
  (Murray Cumming)
* Added French translation. (Christophe Merlet)

0.8.5:

* Data Details: Editing works again.
* Find mode now works, though it's simple.
* Edit buttons are now stock Open buttons.
* Renaming of tables: The new names are stored in the 
  document so you can rename again, and use the renamed table.
  (Murray Cumming)

0.8.4:

* Connection dialog: The connect button is now activated when you press return in the password entry.
* Data Details: Groups of fields are now shown together in a HIG-style frame.
* Design: field, table, and layout group titles now have defaults, by replacing white space and 
  capitalizing.
* Some build improvements.
  (Murray Cumming)
* Added Portugese translation (Duarte Loreto)
* Added British English translation (Gareth Owen)

0.8.3:

* Design:
  - Fields: Fix crash when opening the edit dialog.
  - Relationships: Fix editing, and actually save the relationships.
* Beginnings of user documentation.
* Updated German translation (Hendrik Brandt)

0.8.2:

* Navigation / Tables : Fixed focus bug when adding tables.
* Fields can lookup their values from a field in 
  another table via a relationship.
* When a table is marked as the default then it will be 
  opened automatically when the database is opened.
* Tables can now be renamed.
* List and Data views: Auto-increment fields are non-editable.
* Update the Data view when field editing has finished.
* Code cleanup: AddDel widget is now iterator-based.
(Murray Cumming)
* Czech translation. (Miloslav Trmac)
* Dutch translation. (Tino Meinen)
  

0.8.1:

* Details and List views: Dates, times, and numbers are now displayed 
  and parsed according to the current locale.
  (Murray Cumming, Daniel Elstner)
* Removed Design Mode - Added items to the Developer menu instead.
* Details view: The entry widgets for Date, time, and number fields now 
  have more suitable widths, so it looks nicer.
* User Level is now per-document (or per-instance) instead of per-application.
* The User Level is forced to Operator if the document is read-only.
* Do not show the help text because it's annoying.
  (Murray Cumming)
* Added internationalization support, with the following translations:
  Italian (Alberto Paro)
  German (Hendrik Brandt)
  Canadian English (Adam Weinberger)
  Brazilian Portugese (Gustavo Noronha Silva)
  Swedish (Christian Rose)


0.8.0:

* Now uses Postgres instead of MySQL, due to the MySQL license changes.
* Now uses libgda instead of mysqlcppapi.
* Now use libglademm to allow more improvement of the UI.
* Glom can no longer be used with database tables that it did not create.
* Now uses only a small set of simple field types.
* Added "User Level" - normal operators do not see design functionality.
  User Levels are bad, but this seems to be the only way to present the 
  design functionality next to the stuff being designed.
* Allows simple layout of List and Details views. (grouping in the Details view is not yet fully implemented)
* Saves all field information in the document.
* Tables can be hidden from normal users.


0.7.0:

* Updated for latest mysqlcppapi 2 API.
* Various document-saving fixes.
  (by requiring the latest Bakery)
* Data Mode:
    Details:
      Related Records:
      - Now shows the correct related records.
      - You can now choose [Edit] to navigate to that record in the related table.
* Design Mode:
    Fields:
    - Human-readable field titles are now saved properly.
      (by requiring the latest libxml++)
    - The Field Details dialog closes when you click [Save].
