* src/plugins/Check.py (cleanup_missing_photos): Typo.
* configure.in: Bump up the version number. * NEWS: Update. svn: r4568
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2005-05-12 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/plugins/Check.py (cleanup_missing_photos): Typo.
|
||||||
|
* configure.in: Bump up the version number.
|
||||||
|
* NEWS: Update.
|
||||||
|
|
||||||
2005-05-12 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
2005-05-12 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
* src/plugins/TestcaseGenerator.py: Added generation of multiple date
|
* src/plugins/TestcaseGenerator.py: Added generation of multiple date
|
||||||
formats including invalid dates. This is displaying and reparsing every
|
formats including invalid dates. This is displaying and reparsing every
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
Version 2.0.1 -- the "None shall pass" release
|
||||||
|
* Date localization for German.
|
||||||
|
* Bug fixes.
|
||||||
|
|
||||||
Version 2.0.0 -- the "The Bright Side of Life" release
|
Version 2.0.0 -- the "The Bright Side of Life" release
|
||||||
* Bug fixes
|
* Bug fixes
|
||||||
* Translation updates.
|
* Translation updates.
|
||||||
|
@@ -4,11 +4,11 @@ dnl Process this file with autoconf to produce a configure script.
|
|||||||
dnl May need to run automake && aclocal first
|
dnl May need to run automake && aclocal first
|
||||||
|
|
||||||
AC_PREREQ(2.57)
|
AC_PREREQ(2.57)
|
||||||
AC_INIT(gramps, 2.0.0, gramps-bugs@lists.sourceforge.net)
|
AC_INIT(gramps, 2.0.1, gramps-bugs@lists.sourceforge.net)
|
||||||
AC_CONFIG_SRCDIR(src/gramps.py)
|
AC_CONFIG_SRCDIR(src/gramps.py)
|
||||||
AM_INIT_AUTOMAKE(1.6.3)
|
AM_INIT_AUTOMAKE(1.6.3)
|
||||||
dnl RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
||||||
RELEASE=1
|
dnl RELEASE=1
|
||||||
|
|
||||||
VERSIONSTRING=$VERSION
|
VERSIONSTRING=$VERSION
|
||||||
if test x"$RELEASE" != "x"
|
if test x"$RELEASE" != "x"
|
||||||
|
@@ -239,7 +239,7 @@ class CheckIntegrity:
|
|||||||
place = self.db.get_place_from_handle(handle)
|
place = self.db.get_place_from_handle(handle)
|
||||||
if place.has_media_reference(ObjectId):
|
if place.has_media_reference(ObjectId):
|
||||||
place.remove_media_references([ObjectId])
|
place.remove_media_references([ObjectId])
|
||||||
self.db.commit_place(p,self.trans)
|
self.db.commit_place(place,self.trans)
|
||||||
|
|
||||||
self.removed_photo.append(ObjectId)
|
self.removed_photo.append(ObjectId)
|
||||||
self.db.remove_object(ObjectId,self.trans)
|
self.db.remove_object(ObjectId,self.trans)
|
||||||
|
Reference in New Issue
Block a user