pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/rocksndiamonds Changes 3.2.4:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ceb82f1e8353
branches:  trunk
changeset: 534179:ceb82f1e8353
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Oct 13 12:58:47 2007 +0000

description:
Changes 3.2.4:
* fixed crash bug in toon drawing functions for large step offset values
* fixed some problems with displaying game panel when quick-loading tape
* fixed (experimental only) redrawing of every tile per frame (even if
  unneeded) for the extended (R'n'D based) EMC graphics engine
* added optimization to only calculate element count for panel display
  if really needed (that is, if element count values defined on panel)
* fixed problem with special editor door redraw when entering main menu
* fixed bug with displaying background for title messages on info screen
* some code cleanup for the extended (R'n'D based) EMC graphics engine
* fixed bug with CE action "move player" always resulting in player 4
  if there was a CE action with no trigger player (because the player
  element was calculated by using log_2() from trigger player bits with
  the value PLAYER_BITS_ANY) -- this is now fixed by also storing the
  triggering player bit mask and handling all players in "move player"
* fixed bug when defined artwork cannot be found for artwork that has
  default artwork cloned from other artwork (without default filename)
* added several fixes to the extended (R'n'D based) EMC graphics engine
* fixed broken editor copy and paste for custom elements between levels

diffstat:

 games/rocksndiamonds/Makefile         |   4 ++--
 games/rocksndiamonds/distinfo         |  12 ++++++------
 games/rocksndiamonds/patches/patch-ab |   6 +++---
 games/rocksndiamonds/patches/patch-ak |   6 +++---
 4 files changed, 14 insertions(+), 14 deletions(-)

diffs (62 lines):

diff -r 527dc8650c45 -r ceb82f1e8353 games/rocksndiamonds/Makefile
--- a/games/rocksndiamonds/Makefile     Sat Oct 13 12:36:14 2007 +0000
+++ b/games/rocksndiamonds/Makefile     Sat Oct 13 12:58:47 2007 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.35 2007/05/19 22:36:11 heinz Exp $
+# $NetBSD: Makefile,v 1.36 2007/10/13 12:58:47 adam Exp $
 
-DISTNAME=      rocksndiamonds-3.2.3
+DISTNAME=      rocksndiamonds-3.2.4
 CATEGORIES=    games x11
 MASTER_SITES=  http://www.artsoft.org/RELEASES/unix/rocksndiamonds/
 
diff -r 527dc8650c45 -r ceb82f1e8353 games/rocksndiamonds/distinfo
--- a/games/rocksndiamonds/distinfo     Sat Oct 13 12:36:14 2007 +0000
+++ b/games/rocksndiamonds/distinfo     Sat Oct 13 12:58:47 2007 +0000
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.21 2007/03/18 18:29:38 adam Exp $
+$NetBSD: distinfo,v 1.22 2007/10/13 12:58:47 adam Exp $
 
-SHA1 (rocksndiamonds-3.2.3.tar.gz) = 2fafccb58fc0cc9cf321f49c4dc981bb112bb7ac
-RMD160 (rocksndiamonds-3.2.3.tar.gz) = ad0c908648059be98d8741058f4995481dae25ea
-Size (rocksndiamonds-3.2.3.tar.gz) = 3266249 bytes
-SHA1 (patch-ab) = 9b7b19fee0b6a1ab5ac17f7ec632de738ec88c04
+SHA1 (rocksndiamonds-3.2.4.tar.gz) = 93abd489a3e027d2553886322cd93dee8b541f35
+RMD160 (rocksndiamonds-3.2.4.tar.gz) = a64116a6a17c4969bab1e79c5457b67ce0890a6b
+Size (rocksndiamonds-3.2.4.tar.gz) = 3427302 bytes
+SHA1 (patch-ab) = 4e432d128c3bf7d5d6c39b6b31ad7fae6b045b4d
 SHA1 (patch-ac) = 9cbf5ff897cae129455081c941d7ae355b525d1b
 SHA1 (patch-ag) = c9c500490948a03b6f5e2fa409f52112edbf7e92
 SHA1 (patch-ah) = 584b406eef29b2849f7fc42181a7b9f29e6c9c69
-SHA1 (patch-ak) = 1e91585c1941b26dae10bacd3110ac7705722e63
+SHA1 (patch-ak) = 8b92e0d014bc85abfd3de8f95ff81a0a02f1059f
diff -r 527dc8650c45 -r ceb82f1e8353 games/rocksndiamonds/patches/patch-ab
--- a/games/rocksndiamonds/patches/patch-ab     Sat Oct 13 12:36:14 2007 +0000
+++ b/games/rocksndiamonds/patches/patch-ab     Sat Oct 13 12:58:47 2007 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.9 2006/07/22 23:16:42 heinz Exp $
+$NetBSD: patch-ab,v 1.10 2007/10/13 12:58:48 adam Exp $
 
---- src/Makefile.orig  2006-07-16 02:29:15.000000000 +0200
+--- src/Makefile.orig  2007-09-13 23:32:36.000000000 +0200
 +++ src/Makefile
-@@ -141,8 +141,10 @@ ifdef BUILD_DIST                          # distribution build
+@@ -142,8 +142,10 @@ ifdef BUILD_DIST                          # distribution build
  OPTIONS = -O3 -Wall
  endif
  
diff -r 527dc8650c45 -r ceb82f1e8353 games/rocksndiamonds/patches/patch-ak
--- a/games/rocksndiamonds/patches/patch-ak     Sat Oct 13 12:36:14 2007 +0000
+++ b/games/rocksndiamonds/patches/patch-ak     Sat Oct 13 12:58:47 2007 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ak,v 1.6 2007/03/18 18:29:38 adam Exp $
+$NetBSD: patch-ak,v 1.7 2007/10/13 12:58:48 adam Exp $
 
---- src/libgame/system.c.orig  2006-12-28 01:43:10.000000000 +0100
+--- src/libgame/system.c.orig  2007-09-03 21:27:29.000000000 +0200
 +++ src/libgame/system.c
-@@ -1340,10 +1340,14 @@ void InitJoysticks()
+@@ -1457,10 +1457,14 @@ void InitJoysticks()
    return;     /* joysticks generally deactivated by compile-time directive */
  #endif
  



Home | Main Index | Thread Index | Old Index