diff --git a/gramps/NEWS b/gramps/NEWS
index c0e7db3ab..40b7b73c9 100644
--- a/gramps/NEWS
+++ b/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
diff --git a/gramps/TODO b/gramps/TODO
index 30b5d62b9..e9433a2e7 100644
--- a/gramps/TODO
+++ b/gramps/TODO
@@ -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
diff --git a/gramps/gramps.spec b/gramps/gramps.spec
index 46120a4ca..4397376b2 100644
--- a/gramps/gramps.spec
+++ b/gramps/gramps.spec
@@ -1,4 +1,4 @@
-define ver 0.7.0pre
+define ver 0.7.0
%define rel 1
%define prefix /usr
diff --git a/gramps/src/const.py b/gramps/src/const.py
index a163b2003..b96ee875a 100644
--- a/gramps/src/const.py
+++ b/gramps/src/const.py
@@ -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.")
diff --git a/gramps/src/gramps.glade b/gramps/src/gramps.glade
index 9cdb36326..baad0c5c6 100644
--- a/gramps/src/gramps.glade
+++ b/gramps/src/gramps.glade
@@ -471,6 +471,20 @@
GNOME_STOCK_MENU_JUMP_TO
+
+ GtkPixmapMenuItem
+ gramps_mailing_lists
+ Subscribe to mailing lists or browse archives
+
+ activate
+ on_gramps_mailing_lists_activate
+ Sun, 23 Dec 2001 22:11:41 GMT
+
+
+ False
+ GNOME_STOCK_MENU_MAIL
+
+
GtkPixmapMenuItem
about1
diff --git a/gramps/src/gramps_main.py b/gramps/src/gramps_main.py
index 2a9b300b9..4d78830e4 100755
--- a/gramps/src/gramps_main.py
+++ b/gramps/src/gramps_main.py
@@ -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,
})