[Commit] rrsolve ChangeLog,1.2,1.3 configure.in,1.1.1.1,1.2

Carl Worth commit at keithp.com
Sat Jan 10 21:15:09 PST 2004


Committed by: cworth

Update of /local/src/CVS/rrsolve
In directory home.keithp.com:/tmp/cvs-serv31259

Modified Files:
	ChangeLog configure.in 
Log Message:

        * src/Makefile.am (rrsolve_LDFLAGS): Fix to not ovverride user
        variables.

        * src/rrsolve.c (handle_events): Speed up rrsolve robot movement
        slightly.
        (handle_events): Keep track of users in the game and their scores.
        (handle_events): Implement "pity points". If another user with a
        lower score than rrsolve matches its bid, then rrsolve will revoke
        its bid (and immediately make it again), to give the other user
        the first chance to demonstrate the solution. This behavior makes
        solitaire play against rrsolve much more enjoyable.

        * configure.in: Now require librr >= 0.1.1


Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/rrsolve/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ChangeLog	11 Jul 2003 01:03:14 -0000	1.2
+++ ChangeLog	11 Jan 2004 05:15:06 -0000	1.3
@@ -1,3 +1,19 @@
+2004-01-10  Carl Worth  <cworth at isi.edu>
+
+	* src/Makefile.am (rrsolve_LDFLAGS): Fix to not ovverride user
+	variables.
+
+	* src/rrsolve.c (handle_events): Speed up rrsolve robot movement
+	slightly.
+	(handle_events): Keep track of users in the game and their scores.
+	(handle_events): Implement "pity points". If another user with a
+	lower score than rrsolve matches its bid, then rrsolve will revoke
+	its bid (and immediately make it again), to give the other user
+	the first chance to demonstrate the solution. This behavior makes
+	solitaire play against rrsolve much more enjoyable.
+
+	* configure.in: Now require librr >= 0.1.1
+
 2003-07-09  Carl Worth  <cworth at isi.edu>
 
 	* src/rrsolve.c (main): Added an error message for board parse

Index: configure.in
===================================================================
RCS file: /local/src/CVS/rrsolve/configure.in,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- configure.in	25 Jun 2003 10:45:06 -0000	1.1.1.1
+++ configure.in	11 Jan 2004 05:15:06 -0000	1.2
@@ -18,7 +18,7 @@
 
 dnl ===========================================================================
 
-PKG_CHECK_MODULES(rrsolve, librr)
+PKG_CHECK_MODULES(rrsolve, librr >= 0.1.1)
 AC_SUBST(rrsolve_CFLAGS)
 AC_SUBST(rrsolve_LIBS)
 




More information about the Commit mailing list