pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/games/grhino Update to 0.15.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/fb3fda11c19b
branches: trunk
changeset: 492747:fb3fda11c19b
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Apr 19 00:49:49 2005 +0000
description:
Update to 0.15.0:
Changes in version 0.15.0 from 0.14.0
-------------------------------------
- Change default AI level to 2.
- Fix incorrect score in game logging.
- Fix compilation error (Reported by Paul Pogonyshev).
- Add Alternate and Random AI color mode in Preference dialog box.
- Add new setting 'Show last move' in Preference dialog box.
- Fix gen_pattern bug that fails to close pattern file.
- Generate pattern and book from more GGS games.
- Add random game support in GTP frontend.
- Add driver to play two GTP against each other via 'aiai' executable.
It is still not user friendly. You must modify 'cmd_black' and
'cmd_white' in the source code and build via 'make aiai' to try
different AI parameters. Use 'aiai --help' to list all command
line options.
- Reduce race condition modifying game log.
- Avoid wipe out during AI midgame evaluation.
Changes in version 0.14.0 from 0.13.0
-------------------------------------
- Add experimental GTP frontend. This allows future AI tuning
and game server support. It is tested with Quarry. Only 8x8
and no time limit games are supported. Use 'gtp-rhino --help'
to list all command line options.
- New configure options --enable-gnome (enabled by default) and
--enable-gtp (also enabled by default).
Changes in version 0.13.0 from 0.12.0
-------------------------------------
- Add game open function.
- Transposition table is temporarily disabled as it seems to
cause problem with AI calculation.
- Improve program startup speed.
- i18n fixes in various places.
- Size of open book file is reduced.
- Fix computer thread cancellation problem.
- Change log file format to GGS. This supports random game logging.
- Fix problem restarting game when board opening preference is changed.
- Fix Game History window selection when window is opened during view
mode.
- Fix AI pattern data bug when data is processed from GGS games.
diffstat:
games/grhino/Makefile | 5 ++---
games/grhino/PLIST | 6 +++++-
games/grhino/distinfo | 9 ++++-----
games/grhino/patches/patch-aa | 12 ------------
4 files changed, 11 insertions(+), 21 deletions(-)
diffs (73 lines):
diff -r 3237e90b922f -r fb3fda11c19b games/grhino/Makefile
--- a/games/grhino/Makefile Tue Apr 19 00:35:06 2005 +0000
+++ b/games/grhino/Makefile Tue Apr 19 00:49:49 2005 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.14 2005/04/11 21:45:50 tv Exp $
+# $NetBSD: Makefile,v 1.15 2005/04/19 00:49:49 wiz Exp $
#
-DISTNAME= grhino-0.12.0
-PKGREVISION= 1
+DISTNAME= grhino-0.15.0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rhino/}
diff -r 3237e90b922f -r fb3fda11c19b games/grhino/PLIST
--- a/games/grhino/PLIST Tue Apr 19 00:35:06 2005 +0000
+++ b/games/grhino/PLIST Tue Apr 19 00:49:49 2005 +0000
@@ -1,5 +1,7 @@
-@comment $NetBSD: PLIST,v 1.4 2004/08/15 21:42:51 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5 2005/04/19 00:49:49 wiz Exp $
bin/grhino
+bin/gtp-rhino
+share/gnome/help/grhino/C/figures/gamelist.png
share/gnome/help/grhino/C/figures/history.png
share/gnome/help/grhino/C/figures/mainwindow.png
share/gnome/help/grhino/C/figures/pattern.png
@@ -21,6 +23,7 @@
share/${PKGNAME}/pattern/row3.bin
share/${PKGNAME}/pattern/row4.bin
share/${PKGNAME}/theme/small/black.xpm
+share/${PKGNAME}/theme/small/black_last.xpm
share/${PKGNAME}/theme/small/bottom.xpm
share/${PKGNAME}/theme/small/empty.xpm
share/${PKGNAME}/theme/small/hint_black.xpm
@@ -29,6 +32,7 @@
share/${PKGNAME}/theme/small/right.xpm
share/${PKGNAME}/theme/small/top.xpm
share/${PKGNAME}/theme/small/white.xpm
+share/${PKGNAME}/theme/small/white_last.xpm
${PKGLOCALEDIR}/locale/en_GB/LC_MESSAGES/grhino.mo
@dirrm share/${PKGNAME}/theme/small
@dirrm share/${PKGNAME}/theme
diff -r 3237e90b922f -r fb3fda11c19b games/grhino/distinfo
--- a/games/grhino/distinfo Tue Apr 19 00:35:06 2005 +0000
+++ b/games/grhino/distinfo Tue Apr 19 00:49:49 2005 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.8 2005/02/23 23:11:59 agc Exp $
+$NetBSD: distinfo,v 1.9 2005/04/19 00:49:49 wiz Exp $
-SHA1 (grhino-0.12.0.tar.gz) = 5ea1a524382acbb4d02aa01efef7b50db428c609
-RMD160 (grhino-0.12.0.tar.gz) = fb39d1f141bd9e85ef9f458eb919ee38d65dc383
-Size (grhino-0.12.0.tar.gz) = 890606 bytes
-SHA1 (patch-aa) = 64768899fb04ab39e4d820ed22bebf677f77a60c
+SHA1 (grhino-0.15.0.tar.gz) = 11fddcc6904a8abad417b1f982212861d2e666fb
+RMD160 (grhino-0.15.0.tar.gz) = 8f1f3282409bfcb0d94ac97ba629823b01af8ddf
+Size (grhino-0.15.0.tar.gz) = 1149961 bytes
SHA1 (patch-ab) = e84e7fe4b6c5af92cd7a8a916c01bd583e028e54
diff -r 3237e90b922f -r fb3fda11c19b games/grhino/patches/patch-aa
--- a/games/grhino/patches/patch-aa Tue Apr 19 00:35:06 2005 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2004/09/11 21:43:27 kristerw Exp $
-
---- alphabeta.cc.orig Sat Sep 11 23:33:47 2004
-+++ alphabeta.cc Sat Sep 11 23:35:08 2004
-@@ -27,6 +27,7 @@
- #include <stdlib.h>
- #include <pthread.h>
- #include <fstream>
-+#include <string>
- using namespace std;
-
- /*************************************************************************
Home |
Main Index |
Thread Index |
Old Index