Hard Light Productions Forums
Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Nightly Builds => Topic started by: SirKnightly on February 16, 2023, 12:47:09 am
-
Here is the nightly for 16 February 2023 - Revision 076ad7770
Group: Win32-SSE2
nightly_20230216_076ad7770-builds-Win32-SSE2.zip (http://scp.indiegames.us/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-Win32-SSE2.zip) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-Win32-SSE2.zip))
Group: MacOSX
nightly_20230216_076ad7770-builds-Mac.tar.gz (http://scp.indiegames.us/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-Mac.tar.gz) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-Mac.tar.gz))
Group: Linux
nightly_20230216_076ad7770-builds-Linux.tar.gz (http://scp.indiegames.us/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-Linux.tar.gz) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-Linux.tar.gz))
Group: Win64-SSE2
nightly_20230216_076ad7770-builds-x64-SSE2.zip (http://scp.indiegames.us/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-x64-SSE2.zip) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230216_076ad7770/nightly_20230216_076ad7770-builds-x64-SSE2.zip))
------------------------------------------------------------------------
commit 076ad7770
Author: Fabian Woltermann
Commit: GitHub
remove main shader compile-time flags (#5055)
code/def_files/data/effects/main-f.sdr | 501 +++++++++++------------
code/def_files/data/effects/main-g.sdr | 232 +++++------
code/def_files/data/effects/main-v.sdr | 149 +++----
code/def_files/data/effects/model_shader_flags.h | 19 +
code/graphics/2d.h | 23 +-
code/graphics/material.cpp | 99 +----
code/graphics/material.h | 5 +
code/graphics/opengl/gropenglshader.cpp | 39 --
code/graphics/opengl/gropengltnl.cpp | 156 ++++---
code/graphics/uniforms.cpp | 117 ++++--
code/graphics/util/uniform_structs.h | 24 +-
code/model/modelread.cpp | 46 +--
code/source_groups.cmake | 1 +
13 files changed, 639 insertions(+), 772 deletions(-)
------------------------------------------------------------------------
commit aaee1e5a3
Author: MjnMixael
Commit: GitHub
enhance handling of motion debris (#5022)
code/mission/missionparse.cpp | 3 +
code/parse/sexp.cpp | 60 +++++++--
code/parse/sexp.h | 5 +-
code/starfield/starfield.cpp | 237 +++++++++++++++++++++++++-----------
code/starfield/starfield.h | 20 ++-
fred2/sexp_tree.cpp | 23 ++++
fred2/sexp_tree.h | 5 +-
qtfred/src/ui/widgets/sexp_tree.cpp | 23 ++++
qtfred/src/ui/widgets/sexp_tree.h | 1 +
9 files changed, 292 insertions(+), 85 deletions(-)
------------------------------------------------------------------------
commit ce274209c
Author: MjnMixael
Commit: GitHub
adds hudgage and event to the valid types of a Lua Sexp parameter (#5018)
code/parse/sexp/LuaSEXP.cpp | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
------------------------------------------------------------------------
commit 7be49e67d
Author: MjnMixael
Commit: GitHub
modular autopilot table (#4978)
code/autopilot/autopilot.cpp | 53 +++++++++++++++++++++++++++-----------------
1 file changed, 33 insertions(+), 20 deletions(-)
------------------------------------------------------------------------
commit 8731ad144
Author: BMagnu
Commit: GitHub
Add option to deprecate hooks (#5184)
code/graphics/2d.cpp | 2 +-
code/mod_table/mod_table.cpp | 4 ++
code/mod_table/mod_table.h | 2 +
code/scripting/api/libs/engine.cpp | 26 +++++++++++
code/scripting/doc_html.cpp | 23 ++++++++++
code/scripting/global_hooks.cpp | 17 +++++---
code/scripting/global_hooks.h | 2 +-
code/scripting/hook_api.cpp | 4 +-
code/scripting/hook_api.h | 39 +++++++++++------
code/scripting/scripting.cpp | 88 ++++++++++++++++++++++++++++----------
code/scripting/scripting.h | 2 +-
code/scripting/scripting_doc.h | 1 +
fred2/management.cpp | 4 ++
freespace2/freespace.cpp | 65 +++++++++++++---------------
qtfred/src/mission/management.cpp | 4 ++
15 files changed, 202 insertions(+), 81 deletions(-)