updated Changelog, NEWS, etc.
authorArun Persaud <arun@nubati.net>
Mon, 13 Feb 2012 06:17:03 +0000 (22:17 -0800)
committerArun Persaud <arun@nubati.net>
Mon, 13 Feb 2012 06:17:03 +0000 (22:17 -0800)
ChangeLog
DIFFSTAT
SHORTLOG

index 53ec186..1cef3b4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,220 @@ ChangeLog for XBoard/WinBoard
 
 (latest entries created by git log --no-merges --pretty="%ai %an <%ae>:%n%s%n%n%b" vlast.. )
 
+2012-02-12 07:52:54 -0800 Arun Persaud <arun@nubati.net>:
+translation: updated uk.po
+
+
+2012-02-12 11:38:30 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Leave height of row that only contains buttons free
+
+All elements of the GenericPopUp are still scaled to the text height,
+including buttons appended behind them (browse or color buttons).
+But we now make an exception for a row that only contains buttons,
+as there is no harm in it being a little higher (and the buttons look
+prettier that way).
+
+2012-02-12 00:01:24 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix OK button of error popup
+
+The error dialog popped up as a child of the board window, even when
+DisplayError was called from a dialog. Now it checks if a transient
+dialog is up, and if so, it pops up as a child of that, grabs focus,
+and suppresses the system popdown of the transient dialog through a flag
+dialogError until it is popped down itself.
+
+2012-02-11 20:07:39 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Update texi file
+
+
+2012-02-11 10:18:02 -0800 Arun Persaud <arun@nubati.net>:
+added some comments for translators
+
+
+2012-02-11 10:08:46 -0800 Arun Persaud <arun@nubati.net>:
+fixed comments for translators: comments starting with TRANSLATORS: are now copied to the po file
+
+
+2012-02-11 19:01:49 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Also configure sweep selection
+
+To make sure this feature is tested, we set -pieceMenu false in the
+master settings file.
+
+2012-02-11 18:26:34 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix date in copyright notice about-box
+
+
+2012-02-11 17:15:11 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix switching animation masks on variant switch
+
+The masks for variant-dependent piees (E,H in Seirawan, promoted Golds
+in Shogi, the Gothic Chancellor) were no longer updated in InitDrawingSizes
+because of the patch to reduce X-server calls.
+
+2012-02-11 16:46:58 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Configure wider game list
+
+The game list was by default too small, so that there was no room for the
+filter field. Now a width of 500 is specified, whcih works at -size 49
+as well as 72.
+
+2012-02-11 16:29:06 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix button chaining and combo/textbox label height
+
+Previous patches forgot to specify the height for the text labels on
+-combo and -text options, so they were still too high. Buttons that go
+on the same line as the previous element should be chained right, not rubber.
+
+2012-02-11 15:52:52 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Make -pgnNumberTag option setable from menu
+
+The Save Options dialog now containes a checkbox for this.
+
+2012-02-11 15:48:52 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Configure some new features switched on
+
+The master settings file switches -showTargetSquares, -sweepPromotions
+and -seekGraph on, so that they will get more testing.
+
+2012-02-11 14:43:53 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix heigth of multi-line labels
+
+The previous height patch overlooked that some labels are multi-line,
+and need more height.
+
+2012-02-11 14:10:21 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix popdown seekgraph on forward-event XB
+
+Only the grid was drawn when the > or >> button were operated, because
+a full redraw was not forced by ForwardInner. The recent patch to take
+the seek graph down on such events did not account for that. (BackwardInner
+always seems to do full redraw, however?)
+
+2012-02-11 12:59:04 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Put front-end support for -recentEngines in XBoard
+
+The engines are added to the menu. Problem is still that in XBoard
+startup engines are given by command, rather than selected by combobox,
+so the command rather than the nickname ends up in the menu. If this is
+then selected, it cannot be found in the list. To limit the damage,
+Fairy-Max is now pre-installed without nickname. -recentEngines is now
+configured to 4.
+
+2012-02-11 11:53:39 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Better solution to button-height problem
+
+In stead of adapting the height of text widgets to that of buttons,
+(as represented by the message widget), we now do the opposite, and
+adapt the button & label heights. This is made safe by obtaining textHeight
+from the fontSet's max_logical_extent, though an XExtendsFontSet() call.
+Turns out the default height of text widgets is not exactly that, but
+4 pixels larger for borders and margin.
+  The parameter XtNvertDistance is now used to align the checkboxes with
+the following text widget, and their size is derived from textHeight as
+well.
+  The XtNvertDistance is set to -1 for the lower spin button, so that it
+its border coincides with that of the upper spin button. Their height is
+set to textHeight/2. This makes their combined height just 1 pixel more
+than that of the preceeding text widget. (Uh? 2 x tw/2 -1 > tw?), so for
+other buttons we use that too (i.e. textHeight = font_extent + 5).
+
+2012-02-10 22:39:08 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix warning
+
+Deleting debug printing had made a variable unused.
+
+2012-02-10 22:26:39 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix sleeping bug
+
+The text-edit-height patch introduced a bug that did not have any consquences
+(yet), as the extra arg erroneously included leftover from a previous
+SetValues call happened to be the same as one of the intended args.
+
+2012-02-10 20:51:41 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix unloading of first engine on tourney start
+
+Because NextTourneyGame was loading a new engine before ReserveGame was
+called to unload it with dummy game nr = -1), the first engine proc kept
+hanging.
+
+2012-02-10 18:39:09 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Remove some of the most verbose debug output
+
+
+2012-02-10 17:46:35 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Delete some unused WinBoard bitmaps
+
+There waere up-side-down knight icons that apparently hid by mistake
+in the bitmaps directory: they were not part of WinBoard
+
+2012-02-10 17:39:48 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Cosmetic: change 4.5 to 4.6 in xboard.conf comment
+
+
+2012-02-10 17:35:22 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix crash on empty combobox menu XB
+
+XBoard crashed when a combobox without items was opened, as could easily
+happen in the Load Engine dialogs when -firstChessProgramNames contained
+no items, as it would without configuring. Now the creation of the popup
+menu is suppressed in that case.
+
+2012-02-10 17:13:36 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix position of checkbox XB
+
+With the large height the widget get in internationalization, the
+checkboxes are position way too high above the text. To shift them down
+a dummy borderless label widget is drawn above them (when needed).
+
+2012-02-10 15:07:35 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Fix heights in Engine Output window XB
+
+The icons did not fit in the space above the memos anymore, so the height
+of this area is now left free.
+
+2012-02-10 14:55:48 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Derive height of text-edits in dialogs from message widget
+
+With internationalization the default height of buttons has inexpliquably
+inreased compared to that of text-edits, messing up the layout of the
+GenericPopUp. The message widget is now used as a emasure of how high
+the widgets should be.
+
+2012-02-10 14:21:37 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Configure XBoard engines and textures
+
+The new -useBoardTexture option is needed in xboard.conf, as we want to
+distribute with the texture on, while the compiled-in default is off.
+A list of 4 engines has been configured (fairymax, fruit, crafty, gnuchess),
+as the Load Engine and Match Options checkboxes crash XBoard when the list
+is empty. The -recentEngines option is set to 0 to make sure the code
+associated with it is never executed: the code is still experimental,
+and the required front-end support is only present in WinBoard anyway.
+
+2012-02-10 13:30:58 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Update Dutch WinBoard translation
+
+
+2012-02-10 13:18:48 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Create room in some WB dialogs for translations
+
+
+2012-02-10 13:17:30 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
+Add 5 missing strings to WinBoard translation template
+
+
+2012-02-09 23:03:58 -0800 Arun Persaud <arun@nubati.net>:
+new developer release
+
+
+2012-02-09 23:04:46 -0800 Arun Persaud <arun@nubati.net>:
+updated po-filies
+
+
+2012-02-09 22:59:05 -0800 Arun Persaud <arun@nubati.net>:
+updated Changelog, NEWS, etc.
+
 2012-02-09 22:44:39 +0100 H.G. Muller <h.g.muller@hccnet.nl>:
 Fix non-bug in WinBoard
 
index 81affa3..4f88ba3 100644 (file)
--- a/DIFFSTAT
+++ b/DIFFSTAT
@@ -5,14 +5,14 @@
  .gitignore                          |    3 +
  ABOUT-NLS                           | 1282 ++++++++++
  COPYRIGHT                           |    2 +-
- ChangeLog                           | 2182 +++++++++++++++--
- DIFFSTAT                            |  153 ++
+ ChangeLog                           | 2892 ++++++++++++++++++++--
+ DIFFSTAT                            |  197 ++
  Makefile.am                         |   44 +-
  NEWS                                |   35 +
- SHORTLOG                            |  296 +++
+ SHORTLOG                            |  430 ++++
  args.h                              |  133 +-
  autogen.sh                          |    2 +-
- backend.c                           | 3356 ++++++++++++++++++-------
+ backend.c                           | 3393 ++++++++++++++++++--------
  backend.h                           |   54 +-
  backendz.h                          |    2 +-
  bitmaps/bitmaps.h                   |    2 +-
@@ -46,9 +46,9 @@
  m4/nls.m4                           |   32 +
  m4/po.m4                            |  449 ++++
  m4/progtest.m4                      |   92 +
- moves.c                             |  320 ++--
+ moves.c                             |  333 ++--
  moves.h                             |    8 +-
- parser.c                            | 4645 ++++-------------------------------
+ parser.c                            | 4644 ++++-------------------------------
  parser.h                            |    2 +-
  parser.l                            | 1203 ---------
  pgntags.c                           |  145 +-
  pixmaps/cross48.xpm                 |   58 +
  po/LINGUAS                          |    3 +-
  po/Makefile.in.in                   |  160 +-
+ po/Makevars                         |    2 +-
  po/Makevars.template                |   41 +
  po/POTFILES.in                      |    9 +-
  po/Rules-quot                       |   47 +
  po/boldquot.sed                     |   10 +
- po/da.po                            | 2895 ++++++++++++++++++++++
- po/de.po                            | 3357 +++++++++++++++++++-------
+ po/da.po                            | 2898 ++++++++++++++++++++++
+ po/de.po                            | 3361 +++++++++++++++++++-------
  po/en@boldquot.header               |   25 +
  po/en@quot.header                   |   22 +
- po/es.po                            | 2860 +++++++++++++++++++++
+ po/es.po                            | 2863 +++++++++++++++++++++
  po/insert-header.sin                |   23 +
- po/it.po                            | 2868 +++++++++++++++++++++
+ po/it.po                            | 2871 ++++++++++++++++++++++
  po/lng2po.sh                        |   96 +
  po/metascript                       |  125 +
  po/normalize.pl                     |   10 +
  po/quot.sed                         |    6 +
- po/ru.po                            | 2854 +++++++++++++++++++++
+ po/ru.po                            | 2857 +++++++++++++++++++++
  po/strip-bad-utf8.pl                |   14 +
- po/tr.po                            | 3249 ++++++++++++++++++------
- po/uk.po                            | 2857 +++++++++++++++++++++
- po/vi.po                            | 2839 +++++++++++++++++++++
+ po/tr.po                            | 3265 ++++++++++++++++++-------
+ po/uk.po                            | 2921 ++++++++++++++++++++++
+ po/vi.po                            | 2842 +++++++++++++++++++++
  po/xboard.pot                       | 2899 +++++++++++++++++------
- po/zh_CN.po                         | 2852 +++++++++++++++++++++
- po/zh_HK.po                         | 2857 +++++++++++++++++++++
- po/zh_TW.po                         | 2850 +++++++++++++++++++++
+ po/zh_CN.po                         | 2855 +++++++++++++++++++++
+ po/zh_HK.po                         | 2860 +++++++++++++++++++++
+ po/zh_TW.po                         | 2853 +++++++++++++++++++++
  uci.c                               |    7 +-
  winboard/bitmaps/cross.ico          |  Bin 0 -> 766 bytes
+ winboard/bitmaps/ni49o.bmp          |  Bin 454 -> 0 bytes
+ winboard/bitmaps/ni49s.bmp          |  Bin 454 -> 0 bytes
+ winboard/bitmaps/ni49w.bmp          |  Bin 454 -> 0 bytes
+ winboard/bitmaps/ni72o.bmp          |  Bin 926 -> 0 bytes
+ winboard/bitmaps/ni72s.bmp          |  Bin 926 -> 0 bytes
+ winboard/bitmaps/ni72w.bmp          |  Bin 926 -> 0 bytes
  winboard/config.h                   |    6 +-
  winboard/defaults.h                 |    3 +-
  winboard/help.c                     |    2 +-
  winboard/help/html/24.htm           |    2 +-
  winboard/jaws.c                     |   47 +-
- winboard/language.txt               |  130 +-
+ winboard/language.txt               |  135 +-
  winboard/language/chinese(simp).lng |  787 ++++++
  winboard/language/chinese(trad).lng |  785 ++++++
  winboard/language/deutsch.lng       |  971 ++++++++
  winboard/language/italiano.lng      |  976 ++++++++
- winboard/language/nederlands.lng    | 1208 +++++++++
+ winboard/language/nederlands.lng    | 1215 +++++++++
  winboard/language/romanian.lng      | 1042 ++++++++
  winboard/language/russian.lng       |  994 ++++++++
  winboard/language/spanish.lng       |  953 +++++++
  winboard/wgamelist.c                |   39 +-
  winboard/winboard.c                 |  481 +++--
  winboard/winboard.h                 |   11 +-
- winboard/winboard.rc                |  156 +-
+ winboard/winboard.rc                |  158 +-
  winboard/winboard.rtf               | 1644 +++++++------
  winboard/woptions.c                 |  163 ++-
  winboard/woptions.h                 |    2 +-
  xboard-fen-viewer.desktop           |   52 +
  xboard-pgn-viewer.desktop           |   52 +
  xboard-tourney.desktop              |   52 +
- xboard.c                            | 2469 ++++++++-----------
- xboard.conf.in                      |    1 +
- xboard.h                            |   24 +-
+ xboard.c                            | 2564 ++++++++------------
+ xboard.conf.in                      |   16 +-
+ xboard.h                            |   26 +-
  xboard.png                          |  Bin 15116 -> 1726 bytes
- xboard.texi                         | 1017 ++++++--
+ xboard.texi                         | 1070 +++++++--
  xboard.xml                          |   61 +
  xedittags.c                         |  316 +---
  xedittags.h                         |    2 +-
- xengineoutput.c                     |   91 +-
+ xengineoutput.c                     |   96 +-
  xevalgraph.c                        |   69 +-
  xevalgraph.h                        |    2 +-
  xgamelist.c                         |  205 +-
  xgamelist.h                         |    3 +-
  xhistory.c                          |  461 +---
  xhistory.h                          |    4 +-
- xoptions.c                          | 1450 ++++++------
+ xoptions.c                          | 1481 ++++++------
  zic2xpm.c                           |   67 +-
  zic2xpm.man                         |    2 +-
  zippy.c                             |   54 +-
  zippy.h                             |    2 +-
- 139 files changed, 58007 insertions(+), 14066 deletions(-)
+ 146 files changed, 59161 insertions(+), 14174 deletions(-)
  create mode 100644 ABOUT-NLS
  create mode 100644 m4/gettext.m4
  create mode 100644 m4/iconv.m4
  create mode 100644 po/zh_HK.po
  create mode 100644 po/zh_TW.po
  create mode 100644 winboard/bitmaps/cross.ico
+ delete mode 100644 winboard/bitmaps/ni49o.bmp
+ delete mode 100644 winboard/bitmaps/ni49s.bmp
+ delete mode 100644 winboard/bitmaps/ni49w.bmp
+ delete mode 100644 winboard/bitmaps/ni72o.bmp
+ delete mode 100644 winboard/bitmaps/ni72s.bmp
+ delete mode 100644 winboard/bitmaps/ni72w.bmp
  create mode 100644 winboard/language/chinese(simp).lng
  create mode 100644 winboard/language/chinese(trad).lng
  create mode 100644 winboard/language/deutsch.lng
index 49bc378..436a77b 100644 (file)
--- a/SHORTLOG
+++ b/SHORTLOG
@@ -2,7 +2,7 @@
 
 (git log --pretty=short --cherry-pick --left-only v4.6.x...v4.5.x^   |git shortlog --no-merges)
 
-Arun Persaud (61):
+Arun Persaud (65):
       removed parser.l from build process, also removed flex dependency from configure
       updated Changelog, NEWS, etc.
       new developer release
@@ -64,6 +64,10 @@ Arun Persaud (61):
       added some autogenerated po files to .gitignore
       forgot to list new desktop files in EXTRA_DIST section in Makefile.am
       Merge branch 'master' into v4.6.x
+      updated Changelog, NEWS, etc.
+      updated po-filies
+      new developer release
+      Merge branch 'master' into v4.6.x; updated to correct version number for v4.6.0 branch
 
 Byrial Jensen (19):
       fix for repeating key issue, with this allissues this bug should be closed; fixes #35000
@@ -428,6 +432,7 @@ Tim Mann (9):
       Fixed small bugs in several .po files, enabling these translations to
       Internationalize the file browser.
 
+
 ** Version 4.5.3a **
 
 (git shortlog --no-merges v4.5.3..HEAD)