Preparation for 0.7.0 release
svn: r657
This commit is contained in:
parent
7b0f140d28
commit
e9f8d21e10
27
gramps/NEWS
27
gramps/NEWS
@ -1,4 +1,29 @@
|
||||
Version 0.6.2pre
|
||||
Version 0.7.0
|
||||
* LD_PRELOAD set to handle Mandrake 8.1 shared library problems.
|
||||
* Drag and drop copying of events, address, attributes, and URLs.
|
||||
* Improved GEDCOM. GRAMPS now understands many more of the "quirks"
|
||||
of the GEDCOM produced by other programs. In addition, GRAMPS can
|
||||
now tailor its GEDCOM output several other programs. An XML data
|
||||
file is used to describe to GRAMPS the types of quirks each
|
||||
format uses.
|
||||
* Support for French Republican, Hebrew, and Julian calendars.
|
||||
* LDS ordinance support.
|
||||
* Cleaned up report dialog code.
|
||||
* Bug fixes in GEDCOM reading and relationship calculator.
|
||||
* Toolbar may display Icons and Text, Text only, or Icons only. This
|
||||
helps in some of the translations, where the long text forced the
|
||||
toolbar to be unusually large.
|
||||
* Dragging and dropping media objects can optionally display property
|
||||
dialogs.
|
||||
* All toolbar icons have tooltips.
|
||||
* Keyboard shortcuts for bookmark saving.
|
||||
* Find dialog supports autocompletion, and has the more standard shortcut
|
||||
of C-F.
|
||||
* Change in XML database format to provides better support for dates.
|
||||
* Added entries to the Help menu to jump to the GRAMPS home page and the
|
||||
GRAMPS mailing list page.
|
||||
|
||||
Version 0.6.2
|
||||
* Fixed SuSE 7.3/lib-imlib problem.
|
||||
* Improved GEDCOM import/export. Gramps now passes the GEDCHK program
|
||||
and can now properly handle the quirks in names, notes, and parent/child
|
||||
|
@ -1,9 +1,6 @@
|
||||
* Allow for multiple notes. A tabbed interface would be really useful,
|
||||
since there are no titles for notes. Not all objects would necessarily
|
||||
need multiple notes. Determine which ones should and shouldn't.
|
||||
* Drag and drop inside a gallery to allow for reordering of media objects.
|
||||
This would allow for the elimination of the rather lame "Make Primary"
|
||||
option.
|
||||
* Drag and drop should display the icon we are dragging instead of just
|
||||
the default icon. Nautilus does this very effectively, and GTK has
|
||||
support for this.
|
||||
@ -25,7 +22,6 @@
|
||||
to do an incremental update. Having the GEDCOM ID and the gramps ID
|
||||
match up would be a good indication that these are the same people.
|
||||
For example, @F001@ would become F001.
|
||||
* Completely revamp the merge utility.
|
||||
* Finish the generic load of revision control interfaces to allow a
|
||||
revision control plugin system. Most of the work is already done.
|
||||
* Extend the gramps package exporting to export to a ISO-9660 CD-ROM
|
||||
|
@ -1,4 +1,4 @@
|
||||
define ver 0.7.0pre
|
||||
define ver 0.7.0
|
||||
%define rel 1
|
||||
%define prefix /usr
|
||||
|
||||
|
@ -91,7 +91,7 @@ gtkrcFile = "%s/gtkrc" % rootDir
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
progName = "gramps"
|
||||
version = "0.7.0pre"
|
||||
version = "0.7.0"
|
||||
copyright = "© 2001 Donald N. Allingham"
|
||||
authors = ["Donald N. Allingham", "David Hampton"]
|
||||
comments = _("Gramps (Genealogical Research and Analysis Management Programming System) is a personal genealogy program.")
|
||||
|
@ -471,6 +471,20 @@
|
||||
<stock_icon>GNOME_STOCK_MENU_JUMP_TO</stock_icon>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkPixmapMenuItem</class>
|
||||
<name>gramps_mailing_lists</name>
|
||||
<tooltip>Subscribe to mailing lists or browse archives</tooltip>
|
||||
<signal>
|
||||
<name>activate</name>
|
||||
<handler>on_gramps_mailing_lists_activate</handler>
|
||||
<last_modification_time>Sun, 23 Dec 2001 22:11:41 GMT</last_modification_time>
|
||||
</signal>
|
||||
<label>GRAMPS _Mailing Lists</label>
|
||||
<right_justify>False</right_justify>
|
||||
<stock_icon>GNOME_STOCK_MENU_MAIL</stock_icon>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkPixmapMenuItem</class>
|
||||
<name>about1</name>
|
||||
|
@ -158,6 +158,10 @@ def on_gramps_home_page_activate(obj):
|
||||
import gnome.url
|
||||
gnome.url.show("http://gramps.sourceforge.net")
|
||||
|
||||
def on_gramps_mailing_lists_activate(obj):
|
||||
import gnome.url
|
||||
gnome.url.show("http://sourceforge.net/mail/?group_id=25770")
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# Merge
|
||||
@ -2030,6 +2034,7 @@ def main(arg):
|
||||
"on_swap_clicked" : on_swap_clicked,
|
||||
"on_tools_clicked" : on_tools_clicked,
|
||||
"on_gramps_home_page_activate" : on_gramps_home_page_activate,
|
||||
"on_gramps_mailing_lists_activate" : on_gramps_mailing_lists_activate,
|
||||
"on_writing_extensions_activate" : on_writing_extensions_activate,
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user