Your message dated Tue, 24 May 2005 17:32:25 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#309848: fixed in gcompris 6.5.2-4
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 19 May 2005 23:14:24 +0000
>From [EMAIL PROTECTED] Thu May 19 16:14:24 2005
Return-path: <[EMAIL PROTECTED]>
Received: from postfix3-2.free.fr [213.228.0.169]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DYuDf-0001zF-00; Thu, 19 May 2005 16:14:23 -0700
Received: from [192.168.0.1] (blagnac-1-82-228-70-121.fbx.proxad.net
[82.228.70.121])
by postfix3-2.free.fr (Postfix) with ESMTP id A54E5C062;
Fri, 20 May 2005 01:14:22 +0200 (CEST)
Subject: Tags: sarge patch
From: Bruno Coudoin <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: Yann Dirson <[EMAIL PROTECTED]>
Content-Type: multipart/mixed; boundary="=-jqUZArfW5Uii+N7hO/R8"
Date: Fri, 20 May 2005 01:14:22 +0200
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
X-Mailer: Evolution 2.0.3-1.3.101mdk
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
--=-jqUZArfW5Uii+N7hO/R8
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Package: gcompris
Version: 6.5.2-3
Severity: grave
Tags: sarge
In the gcompris activity anim, draw, melody, click_on_letter there is a
problem with key entries. For exemple in draw, entering a letter makes
it apears twice.
This is a problem in the way key event are handle in several activity.
The patch fixes all these issues.
--=-jqUZArfW5Uii+N7hO/R8
Content-Disposition: attachment; filename=key2.patch
Content-Type: text/x-patch; name=key2.patch; charset=ISO-8859-15
Content-Transfer-Encoding: 7bit
--- src/boards/algebra.c 2005-05-20 00:19:16.789483121 +0200
+++ ../gcompris/src/boards/algebra.c 2005-05-20 00:11:29.116875202 +0200
@@ -1,6 +1,6 @@
/* gcompris - algebra.c
*
- * Time-stamp: <2004/03/10 23:15:42 bcoudoin>
+ * Time-stamp: <2005/03/30 22:01:14 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -223,7 +223,7 @@
gboolean stop = FALSE;
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
--- src/boards/enumerate.c 2005-05-20 00:19:16.855460495 +0200
+++ ../gcompris/src/boards/enumerate.c 2005-05-20 00:11:29.253828230 +0200
@@ -176,7 +176,7 @@
GnomeCanvasItem *item = NULL;
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
--- src/boards/gletters.c 2005-05-20 00:19:16.902444383 +0200
+++ ../gcompris/src/boards/gletters.c 2005-05-20 00:11:29.272821716 +0200
@@ -1,6 +1,6 @@
/* gcompris - gletters.c
*
- * Time-stamp: <2004/10/21 22:58:45 bruno>
+ * Time-stamp: <2005/03/30 21:41:45 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -428,7 +428,7 @@
g_message("in key_press: %d, %c, %lc",keyval,keyval,keyval);
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
@@ -558,8 +558,6 @@
gcompris_log_set_comment(gcomprisBoard, list_of_letters, str);
- g_message("leaving key_press\n");
-
return TRUE;
}
--- src/boards/maze.c 2005-05-20 00:19:16.914440269 +0200
+++ ../gcompris/src/boards/maze.c 2005-05-20 00:11:29.311808344 +0200
@@ -881,7 +881,7 @@
guint richting=0,level=gcomprisBoard->level;
if(board_paused)
- return TRUE;
+ return FALSE;
if (threeDactive) return key_press_3D(keyval);
--- src/boards/paratrooper.c 2005-05-20 00:19:16.946429299 +0200
+++ ../gcompris/src/boards/paratrooper.c 2005-05-20 00:11:29.392780572
+0200
@@ -1,6 +1,6 @@
/* gcompris - paratrooper.c
*
- * Time-stamp: <2005/01/09 02:56:01 bruno>
+ * Time-stamp: <2005/03/30 22:04:44 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -230,7 +230,7 @@
{
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
--- src/boards/planegame.c 2005-05-20 00:19:16.948428613 +0200
+++ ../gcompris/src/boards/planegame.c 2005-05-20 00:11:29.394779887 +0200
@@ -1,6 +1,6 @@
/* gcompris - planegame.c
*
- * Time-stamp: <2004/03/08 00:01:15 bcoudoin>
+ * Time-stamp: <2005/03/30 22:05:27 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -190,7 +190,7 @@
{
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
--- src/boards/shapegame.c 2005-05-20 00:19:17.033399473 +0200
+++ ../gcompris/src/boards/shapegame.c 2005-05-20 00:11:29.561722629 +0200
@@ -1,6 +1,6 @@
/* gcompris - shapegame.c
*
- * Time-stamp: <2004/11/09 00:29:43 bruno>
+ * Time-stamp: <2005/03/30 22:06:15 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -335,7 +335,7 @@
gboolean stop = FALSE;
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
--- src/boards/smallnumbers.c 2005-05-20 00:19:17.035398787 +0200
+++ ../gcompris/src/boards/smallnumbers.c 2005-05-20 00:11:29.563721943
+0200
@@ -1,6 +1,6 @@
/* gcompris - smallnumbers.c
*
- * Time-stamp: <2005/02/01 00:39:36 bruno>
+ * Time-stamp: <2005/03/30 22:07:06 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -194,7 +194,7 @@
char str[2];
if(!gcomprisBoard || !boardRootItem)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
--- src/boards/target.c 2005-05-20 00:19:17.064388846 +0200
+++ ../gcompris/src/boards/target.c 2005-05-20 00:11:29.571719200 +0200
@@ -231,7 +231,7 @@
guint c;
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
switch (keyval)
--- src/boards/wordsgame.c 2005-05-20 00:19:17.068387474 +0200
+++ ../gcompris/src/boards/wordsgame.c 2005-05-20 00:11:29.577717143 +0200
@@ -1,6 +1,6 @@
/* gcompris - wordsgame.c
*
- * Time-stamp: <2004/11/14 15:13:11 bruno>
+ * Time-stamp: <2005/03/30 21:40:02 bruno>
*
* Copyright (C) 2000 Bruno Coudoin
*
@@ -227,10 +227,10 @@
LettersItem *item;
if(!gcomprisBoard)
- return TRUE;
+ return FALSE;
if(!g_unichar_isalnum (gdk_keyval_to_unicode (keyval)))
- return TRUE;
+ return FALSE;
/* Add some filter for control and shift key */
@@ -361,7 +361,7 @@
}
g_free(letter);
- return FALSE;
+ return TRUE;
}
static gboolean
--- src/gcompris/sdlplayer.c 2005-05-20 00:19:17.373282914 +0200
+++ ../gcompris/src/gcompris/sdlplayer.c 2005-05-20 00:11:30.627357139
+0200
@@ -68,7 +68,7 @@
int audio_rate,audio_channels,
// set this to any of 512,1024,2048,4096
// the higher it is, the more FPS shown and CPU needed
- audio_buffers=512;
+ audio_buffers=2048;
Uint16 audio_format;
// initialize SDL for audio
@@ -76,7 +76,7 @@
return(cleanExit("SDL_Init"));
// initialize sdl mixer, open up the audio device
- if(Mix_OpenAudio(22050,MIX_DEFAULT_FORMAT,1,audio_buffers)<0)
+ if(Mix_OpenAudio(44100,MIX_DEFAULT_FORMAT,2,audio_buffers)<0)
return(cleanExit("Mix_OpenAudio"));
// print out some info on the audio device and stream
--=-jqUZArfW5Uii+N7hO/R8--
---------------------------------------
Received: (at 309848-close) by bugs.debian.org; 24 May 2005 21:40:54 +0000
>From [EMAIL PROTECTED] Tue May 24 14:40:54 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Dah8w-0004Jy-00; Tue, 24 May 2005 14:40:54 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Dah0j-0001ts-00; Tue, 24 May 2005 17:32:25 -0400
From: Yann Dirson <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#309848: fixed in gcompris 6.5.2-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 24 May 2005 17:32:25 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 2
Source: gcompris
Source-Version: 6.5.2-4
We believe that the bug you reported is fixed in the latest version of
gcompris, which is due to be installed in the Debian FTP archive:
gcompris-data_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-data_6.5.2-4_all.deb
gcompris-sound-da_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-da_6.5.2-4_all.deb
gcompris-sound-de_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-de_6.5.2-4_all.deb
gcompris-sound-en_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-en_6.5.2-4_all.deb
gcompris-sound-es_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-es_6.5.2-4_all.deb
gcompris-sound-fr_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-fr_6.5.2-4_all.deb
gcompris-sound-it_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-it_6.5.2-4_all.deb
gcompris-sound-pt_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-pt_6.5.2-4_all.deb
gcompris-sound-ru_6.5.2-4_all.deb
to pool/main/g/gcompris/gcompris-sound-ru_6.5.2-4_all.deb
gcompris_6.5.2-4.diff.gz
to pool/main/g/gcompris/gcompris_6.5.2-4.diff.gz
gcompris_6.5.2-4.dsc
to pool/main/g/gcompris/gcompris_6.5.2-4.dsc
gcompris_6.5.2-4_i386.deb
to pool/main/g/gcompris/gcompris_6.5.2-4_i386.deb
libgcompris-1-0_6.5.2-4_i386.deb
to pool/main/g/gcompris/libgcompris-1-0_6.5.2-4_i386.deb
libgcompris-1-dev_6.5.2-4_i386.deb
to pool/main/g/gcompris/libgcompris-1-dev_6.5.2-4_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Yann Dirson <[EMAIL PROTECTED]> (supplier of updated gcompris package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 24 May 2005 22:06:01 +0200
Source: gcompris
Binary: gcompris-sound-da gcompris-sound-it gcompris-sound-fr gcompris-sound-pt
libgcompris-1-dev gcompris-sound-ru gcompris-data libgcompris-1-0
gcompris-sound-de gcompris-sound-es gcompris gcompris-sound-en
Architecture: source all i386
Version: 6.5.2-4
Distribution: testing
Urgency: low
Maintainer: Yann Dirson <[EMAIL PROTECTED]>
Changed-By: Yann Dirson <[EMAIL PROTECTED]>
Description:
gcompris - Educational games for small children
gcompris-data - Data files for GCompris
gcompris-sound-da - Danish sound files for GCompris
gcompris-sound-de - German sound files for GCompris
gcompris-sound-en - English sound files for GCompris
gcompris-sound-es - Spanish sound files for GCompris
gcompris-sound-fr - French sound files for GCompris
gcompris-sound-it - Italian sound files for GCompris
gcompris-sound-pt - Portuguese sound files for GCompris
gcompris-sound-ru - Russian sound files for GCompris
libgcompris-1-0 - Core gcompris functionality - shared library
libgcompris-1-dev - Core gcompris functionality - development files
Closes: 309838 309848
Changes:
gcompris (6.5.2-4) testing; urgency=low
.
* Backport to testing of RC bugs fixed in the sid package.
* Changes from 6.5.4-4:
* Added missing dependency on python2.3-gnome2, without which no
python board can work - that's about 20 boards in the most recent ones
(Closes: #309838).
* Recommend python2.3-xml to be able to save SVG animations; mention
it in extended description.
* Use "True" instead of "gtk.TRUE" in python boards - upstream fix for
key events being handled twice, breaking python activities involving
keyboard input (Closes: #309848).
* Upstream patch also fixes the sample rate in SDL_Mixer initialization,
which causes breaks with some sound cards.
Files:
6ca3fc6fd1c287396eb100d6c920245a 1030 games optional gcompris_6.5.2-4.dsc
9f43b2eda245b7df78f9c8c9b05cfd6d 85857 games optional gcompris_6.5.2-4.diff.gz
f814dd4248fe3b47c6265317ebd3a4f9 708466 games optional
gcompris-sound-da_6.5.2-4_all.deb
6a9aa43606d273d4e42065c4674fc850 891802 games optional
gcompris-sound-de_6.5.2-4_all.deb
fe8385d6c322a61308fcb311733a47ef 2011172 games optional
gcompris-sound-en_6.5.2-4_all.deb
f783a87bd5e0c4d3e9ceffdab281ac23 3150904 games optional
gcompris-sound-es_6.5.2-4_all.deb
900c9977a322c4e9ee414f4f83326d01 1067722 games optional
gcompris-sound-fr_6.5.2-4_all.deb
b667f3a8bb4d5a5d84999e3a2ad8cf36 1599196 games optional
gcompris-sound-it_6.5.2-4_all.deb
0eaa61ba2a391351cf53beb41af4ad07 812676 games optional
gcompris-sound-pt_6.5.2-4_all.deb
93117e7bc145390ed17ea6f4640a510c 1536028 games optional
gcompris-sound-ru_6.5.2-4_all.deb
94030954478d2d92e15ada6abbda7b2c 27045976 games optional
gcompris-data_6.5.2-4_all.deb
590baf00cc492d1a1be498f7f527cf6d 223778 games optional
gcompris_6.5.2-4_i386.deb
0394133aa760902dc002e49fbbdcb4e9 137362 libs optional
libgcompris-1-0_6.5.2-4_i386.deb
3bce277042912319a8ff7badaeafa62d 85498 libdevel optional
libgcompris-1-dev_6.5.2-4_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCk5h3V1uVslwzwbgRAntOAJoD5GktcqCLoURZHrursDq+xMI59gCfR4rS
OnzYTWNOFgX4VL8CuTKPTqg=
=nJwR
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]