diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 9772d83f2..d562f5524 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-05-21 Don Allingham + * src/GrampsWidgets.py (MonitoredEntry.set_text): added function + 2006-05-21 Alex Roitman * src/GrampsDb/_WriteGedcom.py: Repository export. * src/GrampsDb/_GrampsInMemDB.py (GrampsInMemDB.__init__): Remove diff --git a/gramps2/NEWS b/gramps2/NEWS index 4b4e6b04b..4f01c2b9f 100644 --- a/gramps2/NEWS +++ b/gramps2/NEWS @@ -1,3 +1,13 @@ +Verison 2.1.3 +* Add user defined custom types to appropriate menus +* Select Place dialog replaces text entry of places +* Icon improvements +* Improved navigation in Pedigree View +* Fully functional side bar filter +* Bookmarks for all object types saved and loaded (XML) +* Marker colors are adjustable +* Bug fixes + Version 2.1.0 -- the "What are you going to do, bleed on me?" release * Initial unstable release of 2.1.0. * Far too many changes to specify. See http://gramps-project.org/whats_new/ diff --git a/gramps2/configure.in b/gramps2/configure.in index dbcb1fb7e..44e0b48ac 100644 --- a/gramps2/configure.in +++ b/gramps2/configure.in @@ -11,8 +11,8 @@ AM_INIT_AUTOMAKE(1.6.3) AC_CONFIG_MACRO_DIR([m4]) GNOME_DOC_INIT -RELEASE=0.SVN$(svnversion -n .) -dnl RELEASE=1 +dnl RELEASE=0.SVN$(svnversion -n .) +RELEASE=1 VERSIONSTRING=$VERSION if test x"$RELEASE" != "x" diff --git a/gramps2/src/GrampsWidgets.py b/gramps2/src/GrampsWidgets.py index c9f9994d5..a130d1964 100644 --- a/gramps2/src/GrampsWidgets.py +++ b/gramps2/src/GrampsWidgets.py @@ -280,6 +280,9 @@ class MonitoredEntry: if autolist: AutoComp.fill_entry(obj,autolist) + def set_text(self, text): + self.obj.set_text(text) + def connect(self, signal, callback): self.obj.connect(signal, callback)