From b02e61c69e79b762e7df45601775615b919d6d06 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Thu, 17 Feb 2011 20:14:38 -0800 Subject: [PATCH] updated Changelog, NEWS, etc. --- ChangeLog | 142 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ DIFFSTAT | 26 +++++++++++ NEWS | 32 ++++++++++++++ SHORTLOG | 27 ++++++++++++ 4 files changed, 227 insertions(+), 0 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7ac7916..96d17fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,148 @@ ChangeLog for XBoard/WinBoard (latest entries created by git log --no-merges --pretty="%ai %an <%ae>:%n%s%n%n%b" vlast.. ) +2011-02-17 15:40:02 +0100 H.G. Muller : +Fix MSVC snprintf problem + +In MSVC snprintf has to be redefined as _snprintf, and this happens +conditionally in config.c. But the latter was not #included in help.c. + +2011-02-16 19:41:27 -0800 Arun Persaud : +updated configure.ac to check for Xaw header files + +check for Xaw header files when --without-Xaw3d was given. Before the test was +only done when Xaw3d was specified, but could not be found. + +If Xaw3d or Xaw can't be found, print a hopefully useful error message and exit the configure script. + +2011-02-16 12:03:22 +0100 H.G. Muller : +Fix ICS channel 0 + +Channel 0 messages were not displayed in the console, because the test +for channel number considered every non-numeric or non-existent handle +in a chatbox to be zero. So the messages were diverted to a non-exsting +chatbox. Now it test first for the handle to start with a digit. + +2011-02-15 19:13:33 +0100 H.G. Muller : +Make language choice from menu persistent + +Set appData.language to the chosen language file, or empty if English is +chosen, so that the choice is saved with the settings. Increase the +number of possible language choices from 5 to 20. (After all, we already +have 7 now!) + +2011-02-14 11:09:24 +0100 H.G. Muller : +Fix showing of user move after adjudication + +The correction of the fishy patch (removing ShowMove() from Adjudicate()) +had broken the adjudication of user moves (that actually did work before +the fishy patch, because there the gobal fromX/Y and toX/Y do contain +the correct values for the move to be shown). An entered move that led +to adjudication (like a checkmate) now was not displayed at all. Adding +an extra ShowMove() after (successful) return of Adudicate() solves it. + +2011-02-13 23:49:44 +0100 H.G. Muller : +Fix Xiangqi King facing + +The Spartan patch had broken the CheckTest for Xiangqi, because cl.check +was cleared after the King-facing test, rather than before it. + +2011-02-13 22:30:59 +0100 H.G. Muller : +Fix variant janus size prefix + +The default board size of Janus Chess was not consistently taken to be +10x8, which resulted the name to be sent as 10x8+0_janus to the engine. + +2011-02-13 12:18:52 +0100 H.G. Muller : +Fix Alfil bug + +The test for Alfil (suppressing single steps on the Elephant) contained +a wrong logical operator, so that it could never be active. It also +failed to include Xiangqi as variant with traditional Alfil. This led to +one-step moves of the Elephant in these variants, and false check or +unreliable mate detections. + +Fix move of Xiangqi Elephant + +2011-02-09 23:19:09 -0800 Arun Persaud : +fixed configure script to correctly detect Xaw3d library + + +2011-02-06 22:07:17 +0100 H.G. Muller : +Fix unmarked translation + +The file-browser wndowtitle in WB was not marked for translation. + +2011-02-04 10:27:49 +0100 H.G. Muller : +Put warning in HTML help + +A warning is added that the help file is not yet updated for the new +menu organzation. + +2011-02-04 10:22:29 +0100 H.G. Muller : +Fix 64-bit Windows compilability + +The API interface for Set/GetWindowLong has been changed for 64-bit +Windows, both in the name of the call as in the arguments. + +2011-02-04 10:21:06 +0100 H.G. Muller : +Fix MSVC compilability + +Both the makefile and the project file had to be adapted for the new +source file history.c, and the new location of parser.c. + +2011-02-05 10:11:58 -0800 Arun Persaud : +added missing #includes and missing prototypes to filebrowser + +thanks to Max Funk for reporting. Now using HAVE_DIRENT_H. + +Also cleaned up missing prototypes and some casts. + +2011-02-05 09:21:48 -0800 Arun Persaud : +added missing header file for sprintf + + +2011-02-03 08:50:50 -0800 Arun Persaud : +added history.c to the tar-ball. Needed for Winboard + + +2011-01-31 23:03:05 +0100 H.G. Muller : +Fix deselection of greyed-out variant button (WB) + +In Windows a disabled radiobutton refuses to deselect when you select +another (enabled) button from the group. There are then 2 buttons +checked, and the code to readout the buttons took the first one. Now it +is changed to take the first enabled one. + +2011-02-03 08:28:15 -0800 Arun Persaud : +Revert "Implement -reset option feature in WinBoard" + +This reverts commit efecf86cd9b54072c6a2f38d62f1d775e69c545b. + +picked the wrong commit from HGM's git tree. + +2011-02-01 22:01:12 -0800 Arun Persaud : +add DIFFSTAT and SHORTLOG to tar-ball + +was only in the v4.4.x branch and not in master + +2011-01-30 09:52:15 -0800 Arun Persaud : +release of version 4.5.0 + +2011-02-01 07:41:04 -0800 Arun Persaud : +changed size of borders around squares from 0 to 1 as a default + +this way highlights show up again. + +2011-01-29 20:11:30 +0100 H.G. Muller : +Implement -reset option feature in WinBoard + +2011-01-30 10:12:08 -0800 Arun Persaud : +updated Changelog, NEWS, etc. + +2011-01-30 09:56:39 -0800 Arun Persaud : +updated parser.c form parser.l + 2011-01-29 19:59:11 +0100 H.G. Muller : Clean up fishy patch diff --git a/DIFFSTAT b/DIFFSTAT index 8494da5..97022ef 100644 --- a/DIFFSTAT +++ b/DIFFSTAT @@ -1,3 +1,29 @@ +** Version 4.5.1 ** + +(git diff -b --stat --summary -M v4.5.0 HEAD) + + Makefile.am | 2 +- + backend.c | 11 +++-- + childio.c | 1 + + configure.ac | 38 ++++++++--------- + filebrowser/dir.c | 18 +++----- + filebrowser/draw.c | 34 +++++++++------ + filebrowser/path.c | 99 ++++++++++++++++++++++--------------------- + filebrowser/selfile.c | 12 +++++- + moves.c | 5 +- + winboard/help.c | 1 + + winboard/help/html/01.htm | 2 +- + winboard/help/html/02.htm | 14 ++++++- + winboard/help/winboard.chm | Bin 86507 -> 86883 bytes + winboard/makefile.ms | 4 +- + winboard/wchat.c | 2 +- + winboard/winboard.c | 29 +++++++------ + winboard/winboard.dsp | 6 ++- + winboard/woptions.c | 3 +- + winboard/wsettings.c | 5 +-- + 19 files changed, 158 insertions(+), 128 deletions(-) + + ** Version 4.5.0 ** (git diff -b --stat --summary -M v4.4.4 HEAD) diff --git a/NEWS b/NEWS index cd6c623..867714b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,35 @@ +** Version 4.5.1 ** + + (see http://www.gnu.org/software/xboard/whats_new/4.5.1/ ) + + * bugfixes: + * Revert "Implement -reset option feature in WinBoard" + * Fix deselection of greyed-out variant button (WB) + * Put warning in HTML help + * Fix unmarked translation + * Fix Alfil bug + * Fix variant janus size prefix + * Fix Xiangqi King facing + * Fix showing of user move after adjudication + * Make language choice from menu persistent + * Fix ICS channel 0 + + * fixed packaging issues: + * add DIFFSTAT and SHORTLOG to tar-ball + * added history.c to the tar-ball. Needed for Winboard + + * fixed compiler warnings/errors: + * added missing header file for sprintf + * added missing #includes and missing prototypes to filebrowser + * Fix MSVC compilability + * Fix 64-bit Windows compilability + * Fix MSVC snprintf problem + + * fixed configure problems: + * fixed configure script to correctly detect Xaw3d library + * updated configure.ac to check for Xaw header files + + ** Version 4.5.0 ** (see http://www.gnu.org/software/xboard/whats_new/4.5.0/ for more details) diff --git a/SHORTLOG b/SHORTLOG index a182084..0de191a 100644 --- a/SHORTLOG +++ b/SHORTLOG @@ -1,3 +1,30 @@ +** Version 4.5.1 ** + +(git shortlog --no-merges v4.5.0..HEAD) + +Arun Persaud (7): + add DIFFSTAT and SHORTLOG to tar-ball + Revert "Implement -reset option feature in WinBoard" + added history.c to the tar-ball. Needed for Winboard + added missing header file for sprintf + added missing #includes and missing prototypes to filebrowser + fixed configure script to correctly detect Xaw3d library + updated configure.ac to check for Xaw header files + +H.G. Muller (12): + Fix deselection of greyed-out variant button (WB) + Fix MSVC compilability + Fix 64-bit Windows compilability + Put warning in HTML help + Fix unmarked translation + Fix Alfil bug + Fix variant janus size prefix + Fix Xiangqi King facing + Fix showing of user move after adjudication + Make language choice from menu persistent + Fix ICS channel 0 + Fix MSVC snprintf problem + ** Version 4.5.0 ** (git shortlog --no-merges v4.4.4..HEAD, removed duplicated from earlier versions due to cherry-picking) -- 1.7.0.4