Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4C36584EBE for ; Mon, 20 Nov 2023 01:17:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id L_RACxh_fgfL for ; Mon, 20 Nov 2023 01:17:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 571B484D28 for ; Mon, 20 Nov 2023 01:17:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4F134FA3F; Mon, 20 Nov 2023 01:17:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700443060262170" MIME-Version: 1.0 Date: Mon, 20 Nov 2023 01:17:40 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20231120011740.4F134FA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700443060262170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Nov 20 01:17:40 UTC 2023 Modified Files: pkgsrc/games/etlegacy: Makefile Makefile.common distinfo pkgsrc/games/etlegacy-server: Makefile Log Message: etlegacy[-server]: Update to 2.81.1 2.81.1 - Incoming ... Again! (released 12/03/2023) Engine General * Fixed issue with g_oss not being set correctly, making 64bit mods not being listed when using 64bit clients * Added web style # prefixed color strings support Client General * Use json model data for fav servers * Moved listfonts command from legacy UI to client engine, since con_fontName can now be used on any mod, and the legacy-specific cg_customFont1/2 require ETL client anyway * Fixed sound bug (long stuttering sound) and cleared queued sounds (such as announcers fe. FIGHT! sound) when rewinding/fastforwarding * Added support for server blocking by using sent list of servers blocked from Legacy master and hiding malicious server in server browser * Removed NONUSBACKSLASH from the default console keys * Fixed zone memory leak on /bind command Audio backend * Fixed sound volume integer overflow Renderer * Fixed decals vertex modulation going out of range Mod General * Added position and size argument to editcomponent command * Added editcomponent command with parentAnchorPoint and parentAnchorComponent option * Extended auto completion for editcomponent command * Fixed localization of server commands were gets truncated * Added cg_useCvarCrosshair cvar allowing forcing crosshair HUD comp at init, 1 by default * Added back cg_useCvarCrosshair, cg_crosshairSize, cg_crosshairAlpha, cg_crosshairColor, cg_crosshairAlphaAlt, cg_crosshairColorAlt, cg_crosshairPulse, cg_crosshairHealth cvars * Added cg_crosshairSize_f, cg_crosshairAlpha_f, cg_crosshairColor_f, cg_crosshairAlphaAlt_f, cg_crosshairColorAlt_f, cg_crosshairPulse_f, cg_crosshairHealth_f commands * Fixed editcomponent command with coloration arguments * Fixed editcomponent style help was printing an error * Ignored bots count when using map vote pool depending of players count * Allowed referee command to use slot number for identify player Stability & Performance * Fixed missing NULL terminated in gameConsoleCommand list causing memory corruption * Removed WBUTTON_ATTACK2 (+attack2) causing exploit issue * Fixed kick angles framerate dependency by matching 333 FPS kick angles behaviour * Remove unnecessary trace for water hitmark detection, causing unnecessary recomputation of head BBox and extra trace * Fixed func_fakebrush prediction * Fixed PMF_TIME_KNOCKBACK never being set unless head was hit. Graphics * Fixed atmospheric effects during match pause * Fixed missile incorrect visual explosion origin * Fixed flamethrower being invisible if player shoots it outside of PVS UI * Fixed issue when crosshairinfo name affected to follow previous player being set to non default color * Fixed enemy spawn timer not being displayed * Added anchors support to HUD * Added HUD name support, usable with cg_althud cvar * Fixed multi line string buffer HUD components centering * Added No Text style option to disable the Connection interrupted text from Disconnect component * Added No Header style option to hide fireteam header * Added Force Colors style option to force player colors on the kill feed * Added extended system option menu for console con_* cvars * Fixed chargebar icon coloring for field ops * Moved listfonts command from legacy UI to client engine, since con_fontName can now be used on any mod, and the legacy-specific cg_customFont1/2 require ETL client anyway. * Fixed timerSet breaking resetTimer display * Added style custimization for compass, such as decor, cardinal point and direction visibility toogle Weapons * Remove adding velocity of ground entity for missiles causing execive velocity add while throwing * Added back default scoped movement to vanilla behaviour (full speed, unscope at 127 ups) * Moved alternate sniper speed to walk movement * Changed unscoping weapon while in air from 250 to 500 ms To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/games/etlegacy/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/games/etlegacy/Makefile.common cvs rdiff -u -r1.10 -r1.11 pkgsrc/games/etlegacy/distinfo cvs rdiff -u -r1.25 -r1.26 pkgsrc/games/etlegacy-server/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700443060262170 Content-Disposition: inline Content-Length: 3524 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/etlegacy/Makefile diff -u pkgsrc/games/etlegacy/Makefile:1.39 pkgsrc/games/etlegacy/Makefile:1.40 --- pkgsrc/games/etlegacy/Makefile:1.39 Sun Nov 12 13:21:31 2023 +++ pkgsrc/games/etlegacy/Makefile Mon Nov 20 01:17:39 2023 @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.39 2023/11/12 13:21:31 wiz Exp $ +# $NetBSD: Makefile,v 1.40 2023/11/20 01:17:39 nia Exp $ -PKGREVISION= 5 .include "Makefile.common" PKGNAME= etlegacy-${ETL_VERSION} Index: pkgsrc/games/etlegacy/Makefile.common diff -u pkgsrc/games/etlegacy/Makefile.common:1.8 pkgsrc/games/etlegacy/Makefile.common:1.9 --- pkgsrc/games/etlegacy/Makefile.common:1.8 Sat Feb 4 16:13:26 2023 +++ pkgsrc/games/etlegacy/Makefile.common Mon Nov 20 01:17:39 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.8 2023/02/04 16:13:26 nia Exp $ +# $NetBSD: Makefile.common,v 1.9 2023/11/20 01:17:39 nia Exp $ # used by games/etlegacy/Makefile # used by games/etlegacy-server/Makefile -ETL_VERSION= 2.81.0 +ETL_VERSION= 2.81.1 CATEGORIES= games DIST_SUBDIR= etlegacy-${PKGVERSION_NOREV} Index: pkgsrc/games/etlegacy/distinfo diff -u pkgsrc/games/etlegacy/distinfo:1.10 pkgsrc/games/etlegacy/distinfo:1.11 --- pkgsrc/games/etlegacy/distinfo:1.10 Sat Feb 4 16:13:26 2023 +++ pkgsrc/games/etlegacy/distinfo Mon Nov 20 01:17:39 2023 @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.10 2023/02/04 16:13:26 nia Exp $ +$NetBSD: distinfo,v 1.11 2023/11/20 01:17:39 nia Exp $ -BLAKE2s (etlegacy-2.81.0/etlegacy-libs.tar.gz) = 497211ec9b468e16d4192ed82ec07ab6927ae7079a55482ffe7e9a6160c992eb -SHA512 (etlegacy-2.81.0/etlegacy-libs.tar.gz) = cdefd393d5606025a98ad8b66bab76312395ba205d4f5144c3ee3674df4dc89f029238ab4ad441a3f38175e96a3f15f603af1cf65d65f658b6918222c5ddc5f3 -Size (etlegacy-2.81.0/etlegacy-libs.tar.gz) = 23000305 bytes -BLAKE2s (etlegacy-2.81.0/etlegacy.tar.gz) = 9e5adb3fc5a56b371f07e76c048ccf11aff84d28ea0dd2db079943099ff75070 -SHA512 (etlegacy-2.81.0/etlegacy.tar.gz) = c37f6c6740c0da67dccdb1bdd3b72641f2fbfeb3aac7c018e1cba5fdb2052039d7b56c60119ad92df47f8ff4046b10e9bb770a5614d50a4ca3e308e1df058a03 -Size (etlegacy-2.81.0/etlegacy.tar.gz) = 15515335 bytes +BLAKE2s (etlegacy-2.81.1/etlegacy-libs.tar.gz) = 497211ec9b468e16d4192ed82ec07ab6927ae7079a55482ffe7e9a6160c992eb +SHA512 (etlegacy-2.81.1/etlegacy-libs.tar.gz) = cdefd393d5606025a98ad8b66bab76312395ba205d4f5144c3ee3674df4dc89f029238ab4ad441a3f38175e96a3f15f603af1cf65d65f658b6918222c5ddc5f3 +Size (etlegacy-2.81.1/etlegacy-libs.tar.gz) = 23000305 bytes +BLAKE2s (etlegacy-2.81.1/etlegacy.tar.gz) = 056ce5f9ab4037220829787efb7f3c9e722284b05b06dd47f254aeec3a935c21 +SHA512 (etlegacy-2.81.1/etlegacy.tar.gz) = 70cb61148ff7903b5fe3d08a6e94316f0ef4c736a076969f897092549f1c6fdb25174bf98e0b7e71a6ac9ffd68af5e9dcb469dbdec84b511fd7c6e548b2b78ee +Size (etlegacy-2.81.1/etlegacy.tar.gz) = 15538766 bytes SHA1 (patch-cmake_ETLInstall.cmake) = a5b2a80b6cef0f28e5d1042fb84ea617d62fec74 SHA1 (patch-cmake_FindLua.cmake) = b25e7deef2f03f40dfbe577e94717b1bfc0aca59 Index: pkgsrc/games/etlegacy-server/Makefile diff -u pkgsrc/games/etlegacy-server/Makefile:1.25 pkgsrc/games/etlegacy-server/Makefile:1.26 --- pkgsrc/games/etlegacy-server/Makefile:1.25 Wed Nov 8 13:19:12 2023 +++ pkgsrc/games/etlegacy-server/Makefile Mon Nov 20 01:17:40 2023 @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.25 2023/11/08 13:19:12 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2023/11/20 01:17:40 nia Exp $ -PKGREVISION= 3 .include "../../games/etlegacy/Makefile.common" PKGNAME= etlegacy-server-${ETL_VERSION} --_----------=_1700443060262170--