Skip to content

Commit

Permalink
update to 2.4.4
Browse files Browse the repository at this point in the history
changes:
- Don't fail when a texture name can't be looked up
- Increased several limits - Thanks to entryway and RjY
  - Increased number of sidedef limit to 65534
  - Increased number of vertexes limit to 65535
  - Fixed crash when crossing sectors with very big height differences
- fix crash on E4M8
- Mac OS X:  Launcher has a Console that displays text output from the game
- New command-line options for setting a window (-window) or fullscreen
  (-nowindow) mode temporarily.
- The maximal supported resolution is increased from 1600x1200 to 2048x1536
- GLBoom will use the closest supported resolution when running fullscreen
- The "RUN" key inverts the autorun state
- Live monsters are highlighted in a different colour on the iddt-automap
- Fixed OpenGL sky rendering in Requiem and Memento Mori
- The "Show coordinates of automap pointer" setting works now
- merged many cleanups and fixes from PrBoom 2.3
- fix translucency map file handle leak
- fix consistency failures in netgames
- prevent crashes at 800x600 caused by rounding errors with naive clipping
- fixed slowdown at 1024x768 on some systems
- ability to play tasdoom demos directly
- -solo-net option is a shortcut for one-player network games
- emulate spechit overflows for dosdoom and tasdoom compatibility
- made several cleanups and fixes
  • Loading branch information
drochner committed Aug 3, 2006
1 parent e974fdc commit e6fc5f1
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions games/prboom/Makefile
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.26 2006/07/24 20:03:25 drochner Exp $ # $NetBSD: Makefile,v 1.27 2006/08/03 20:18:04 drochner Exp $


DISTNAME= prboom-2.4.3 DISTNAME= prboom-2.4.4
CATEGORIES= games CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=prboom/} MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=prboom/}


Expand Down
14 changes: 7 additions & 7 deletions games/prboom/distinfo
@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.10 2006/07/24 20:03:25 drochner Exp $ $NetBSD: distinfo,v 1.11 2006/08/03 20:18:04 drochner Exp $


SHA1 (prboom-2.4.3.tar.gz) = f2d76fa8925226d7e3a623951413e6a10384f2e9 SHA1 (prboom-2.4.4.tar.gz) = adb413ceef595292175ad22521acdfed99733af7
RMD160 (prboom-2.4.3.tar.gz) = b8412e8ed1e4ed28165e4862a76923b474776893 RMD160 (prboom-2.4.4.tar.gz) = e85213acc29eb5ff18a69f840185c76f95cdad71
Size (prboom-2.4.3.tar.gz) = 947872 bytes Size (prboom-2.4.4.tar.gz) = 961947 bytes
SHA1 (patch-aa) = e4254ad7a29380fdf7af0d0e59063abf7b77acd2 SHA1 (patch-aa) = af29064c9e7198f09c670b8bc8a915b17973e57e
SHA1 (patch-ab) = 2e98b4ef7c13953ca0397499b881f437d6a245a3 SHA1 (patch-ab) = 41fb1226564517a13e195540276134d08bdac3e9
SHA1 (patch-ac) = c2f185096970313689a3e7025eb32b9c4fedf9b5 SHA1 (patch-ac) = 0b2a495c2fed6e48f5af9fb84ff1e44bbbd6b27a
8 changes: 4 additions & 4 deletions games/prboom/patches/patch-aa
@@ -1,9 +1,9 @@
$NetBSD: patch-aa,v 1.3 2006/07/24 20:03:25 drochner Exp $ $NetBSD: patch-aa,v 1.4 2006/08/03 20:18:04 drochner Exp $


--- configure.orig 2006-07-23 17:40:25.000000000 +0200 --- configure.orig 2006-07-29 18:17:22.000000000 +0200
+++ configure +++ configure
@@ -1821,9 +1821,9 @@ INSTALL_STRIP_PROGRAM="\${SHELL} \$(inst @@ -1898,9 +1898,9 @@ _ACEOF

fi


if test "x$prefix" != xNONE; then if test "x$prefix" != xNONE; then
- DOOMWADDIR="$prefix/share/games/doom" - DOOMWADDIR="$prefix/share/games/doom"
Expand Down
14 changes: 7 additions & 7 deletions games/prboom/patches/patch-ab
@@ -1,13 +1,13 @@
$NetBSD: patch-ab,v 1.4 2006/07/24 20:03:25 drochner Exp $ $NetBSD: patch-ab,v 1.5 2006/08/03 20:18:04 drochner Exp $


--- data/Makefile.in.orig 2006-07-23 17:40:24.000000000 +0200 --- data/Makefile.in.orig 2006-07-30 20:14:26.000000000 +0200
+++ data/Makefile.in +++ data/Makefile.in
@@ -106,7 +106,7 @@ am__include = @am__include@ @@ -169,7 +169,7 @@ target_alias = @target_alias@
am__quote = @am__quote@ target_cpu = @target_cpu@
install_sh = @install_sh@ target_os = @target_os@

target_vendor = @target_vendor@
-waddir = $(datadir)/games/doom -waddir = $(datadir)/games/doom
+waddir = $(datadir)/doom +waddir = $(datadir)/doom
wad_DATA = prboom.wad wad_DATA = prboom.wad
EXTRA_DIST = prboom.wad prboom.txt EXTRA_DIST = prboom.wad prboom.txt
subdir = data all: all-am
16 changes: 8 additions & 8 deletions games/prboom/patches/patch-ac
@@ -1,13 +1,13 @@
$NetBSD: patch-ac,v 1.3 2006/07/24 20:03:25 drochner Exp $ $NetBSD: patch-ac,v 1.4 2006/08/03 20:18:04 drochner Exp $


--- src/Makefile.in.orig 2006-07-23 17:40:24.000000000 +0200 --- src/Makefile.in.orig 2006-07-30 20:14:27.000000000 +0200
+++ src/Makefile.in +++ src/Makefile.in
@@ -112,7 +112,7 @@ install_sh = @install_sh@ @@ -243,7 +243,7 @@ target_cpu = @target_cpu@

target_os = @target_os@
target_vendor = @target_vendor@
SUBDIRS = SDL POSIX MAC SUBDIRS = SDL POSIX MAC

-gamesdir = $(prefix)/games -gamesdir = $(prefix)/games
+gamesdir = $(prefix)/bin +gamesdir = $(prefix)/bin
EXTRA_PROGRAMS = prboom prboom_game_server_SOURCES = d_server.c i_udp_sdl.c protocol.h
games_PROGRAMS = @BUILD_DOOM@ prboom-game-server prboom_game_server_LDADD = POSIX/libposixdoom.a @NET_LIBS@ @SDL_LIBS@

COMMON_SRC = \

0 comments on commit e6fc5f1

Please sign in to comment.