Compare commits

..

3 Commits

Author SHA1 Message Date
fd9e95aab0 * configure.in: Bump up the version number.
* Release: Version 2.0.3 "Mynd you, m����se bites Kan be pretty
nasti..." released.


svn: r4792
2005-06-05 17:22:40 +00:00
b7658288b6 * src/DateHandler.py: fixed initialization of parser class
svn: r4790
2005-06-05 06:01:33 +00:00
13a51cf2c7 * configure.in: Bump up the version number.
svn: r4789
2005-06-05 05:19:43 +00:00
4 changed files with 17 additions and 3 deletions

View File

@ -1,3 +1,14 @@
2005-06-05 Alex Roitman <shura@gramps-project.org>
* configure.in: Bump up the version number.
2005-06-05 Don Allingham <don@gramps-project.org>
* src/DateHandler.py: fixed initialization of parser class
* Release: Version 2.0.3 "Mynd you, møøse bites Kan be pretty
nasti..." released.
2005-06-05 Alex Roitman <shura@gramps-project.org>
* configure.in: Bump up the version number.
2005-06-04 Don Allingham <don@gramps-project.org>
* src/DateHandler.py: handle generic "en", "fr" cases as a fallback
if the unknown "yy_XX" code is passed. Try yy if yy_XX fails.

View File

@ -1,3 +1,6 @@
Version 2.0.3 -- the "Mynd you, møøse bites Kan be pretty nasti..." release
* Fixed Date handler bug that would not allow dates to be updated.
Version 2.0.2 -- the "Little fermented curd will do the trick" release
* Updated German translation (Anton Huber).
* Usability improvements for large databases.

View File

@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl May need to run automake && aclocal first
AC_PREREQ(2.57)
AC_INIT(gramps, 2.0.2, gramps-bugs@lists.sourceforge.net)
AC_INIT(gramps, 2.0.4, gramps-bugs@lists.sourceforge.net)
AC_CONFIG_SRCDIR(src/gramps.py)
AM_INIT_AUTOMAKE(1.6.3)
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')

View File

@ -118,9 +118,9 @@ load_plugins(datesDir)
try:
if _lang_to_parser.has_key(_lang):
parser = _lang_to_parser[_lang]
parser = _lang_to_parser[_lang]()
else:
parser = _lang_to_parser[_lang_short]
parser = _lang_to_parser[_lang_short]()
except:
print "Date parser for",_lang,"not available, using default"
parser = _lang_to_parser["C"]()