From 1e307c71df5eb4a568c2dc35675d5ca08332c0ea Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Mon, 13 Mar 2000 08:11:51 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2078 57a11ea4-9604-0410-9ed3-97b8803252fd --- CHANGES | 7 +++++++ configure | 2 +- configure.in | 2 +- rpm/gnucash.spec | 2 +- src/gnome/window-register.c | 8 ++++++++ src/scm/command-line.scm | 2 +- 6 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index bf8ac3414f..3e5e7ad8ba 100644 --- a/CHANGES +++ b/CHANGES @@ -1,10 +1,17 @@ Version history: ------- ------- + 1.3.2 - 12 March 2000 + o new French and German translations + o new French documentation + o speed improvements in the register + o more work on reports + 1.3.1 - 05 March 2000 o qif fixes o French documentation 1.3.0 - 28 February 2000 + o first gnome release of GnuCash o many, many, many changes 1.1.22 - 3 November 1998 diff --git a/configure b/configure index 435f14f13b..b86ba6ff40 100755 --- a/configure +++ b/configure @@ -747,7 +747,7 @@ fi PACKAGE=gnucash -VERSION=1.3.1 +VERSION=1.3.2 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } diff --git a/configure.in b/configure.in index 66ddbed4b7..aa2db04c22 100644 --- a/configure.in +++ b/configure.in @@ -23,7 +23,7 @@ AC_INIT(src/guile/gnucash.h.in) -AM_INIT_AUTOMAKE(gnucash,1.3.1) +AM_INIT_AUTOMAKE(gnucash,1.3.2) dnl Set of available languages. ALL_LINGUAS="fr de" diff --git a/rpm/gnucash.spec b/rpm/gnucash.spec index 13ef633a94..15233670a9 100644 --- a/rpm/gnucash.spec +++ b/rpm/gnucash.spec @@ -1,6 +1,6 @@ Name: gnucash Summary: GnuCash is an application to keep track of your finances. -Version: 1.3.1 +Version: 1.3.2 Release: 1 Copyright: Free Software Foundation Group: Applications/Finance diff --git a/src/gnome/window-register.c b/src/gnome/window-register.c index 5be304cbc9..784f19aa1e 100644 --- a/src/gnome/window-register.c +++ b/src/gnome/window-register.c @@ -1225,6 +1225,14 @@ gnc_register_create_popup_menu(RegWindow *regData) 0, 0, NULL }, GNOMEUIINFO_SEPARATOR, + { + GNOME_APP_UI_ITEM, + DUPLICATE_MENU_STR, TOOLTIP_DUP_TRANS, + duplicateCB, regData, NULL, + GNOME_APP_PIXMAP_NONE, NULL, + 0, 0, NULL + }, + GNOMEUIINFO_SEPARATOR, { GNOME_APP_UI_ITEM, BLANK_MENU_STR, TOOLTIP_BLANK_TRANS, diff --git a/src/scm/command-line.scm b/src/scm/command-line.scm index c5b457b41b..8906ac09c3 100644 --- a/src/scm/command-line.scm +++ b/src/scm/command-line.scm @@ -98,7 +98,7 @@ (list (car args) (cdr args))) (define (gnc:prefs-show-version) - (display "GnuCash 1.3.1 development version") (newline)) + (display "GnuCash 1.3.2 development version") (newline)) (define (gnc:prefs-show-usage) (display "usage: gnucash [ option ... ] [ datafile ]") (newline))