** 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 menu.
** 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:
https:
** 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 que
** 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 of
** 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 notificatio
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
https://wiki.ubuntu.com/Bugs/
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
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 => Fi
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 keyw