[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-03-12 Thread Jeremy Bicha
** Description changed: - Ubuntu Yakkety + Impact + -- + The Chess app in Ubuntu 16.10 will crash when trying to promote a pawn. + + gnome-chess is not installed by default by any current Ubuntu flavors. + + Test Case + - + 1. Open the Chess app and click Preferences in the app

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-03-12 Thread Jeremy Bicha
** Project changed: gnome-chess => vala -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1659828 Title: Crash on promoting to queen fairymax engine To manage notifications about this bug go to:

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-03-12 Thread Bug Watch Updater
** Changed in: vala Status: Unknown => Confirmed ** Changed in: vala Importance: Unknown => Wishlist -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1659828 Title: Crash on promoting to

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-03-12 Thread Jeremy Bicha
** Bug watch added: GNOME Bug Tracker #758816 https://bugzilla.gnome.org/show_bug.cgi?id=758816 ** Also affects: gnome-chess via https://bugzilla.gnome.org/show_bug.cgi?id=758816 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-03-12 Thread Mathew Hodson
** Changed in: gnome-chess (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1659828 Title: Crash on promoting to queen fairymax engine To manage

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-03-11 Thread Jeremy Bicha
Thank you for taking the time to report this bug and helping to make Ubuntu better. The issue you are reporting is an upstream one and it would be nice if somebody having it could send the bug and patch to the developers of the software by following the instructions at

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-02-16 Thread Ubuntu Foundations Team Bug Bot
The attachment "fixing nullable enum PieceType malfunction" seems to be a patch. If it isn't, please remove the "patch" flag from the attachment, remove the "patch" tag, and if you are a member of the ~ubuntu-reviewers, unsubscribe the team. [This is an automated message performed by a Launchpad

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-02-16 Thread angem1
Attachment is a patch for version gnome-chess-3.22.0 ** Patch added: "fixing nullable enum PieceType malfunction" https://bugs.launchpad.net/ubuntu/+source/gnome-chess/+bug/1659828/+attachment/4820335/+files/gnome-chess-3.22.0.patch ** Changed in: gnome-chess (Ubuntu) Status: New =>

[Bug 1659828] Re: Crash on promoting to queen fairymax engine

2017-02-16 Thread angem1
Found a fix : vala's enum type should not be nullable (with the ? suffix) in this case the problem is in the enum: PieceType just change the relevant declarations in * gnome-chess.vala * chess-scene.vala from PieceType? to PieceType, and add a NULL member to this enum instead using the null