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 15, 2023, 12:43:55 am
-
Here is the nightly for 15 February 2023 - Revision fe4d93393
Group: MacOSX
nightly_20230215_fe4d93393-builds-Mac.tar.gz (http://scp.indiegames.us/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-Mac.tar.gz) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-Mac.tar.gz))
Group: Win64-SSE2
nightly_20230215_fe4d93393-builds-x64-SSE2.zip (http://scp.indiegames.us/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-x64-SSE2.zip) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-x64-SSE2.zip))
Group: Win32-SSE2
nightly_20230215_fe4d93393-builds-Win32-SSE2.zip (http://scp.indiegames.us/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-Win32-SSE2.zip) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-Win32-SSE2.zip))
Group: Linux
nightly_20230215_fe4d93393-builds-Linux.tar.gz (http://scp.indiegames.us/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-Linux.tar.gz) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20230215_fe4d93393/nightly_20230215_fe4d93393-builds-Linux.tar.gz))
------------------------------------------------------------------------
commit 4485efe48
Author: BMagnu
Commit: GitHub
Add FRED SpaceMouse support (#4984)
code/CMakeLists.txt | 2 +
code/io/spacemouse.cpp | 179 +++
code/io/spacemouse.h | 62 +
code/math/vecmat.h | 10 +-
code/mod_table/mod_table.cpp | 24 +
code/mod_table/mod_table.h | 1 +
code/source_groups.cmake | 2 +
fred2/fredrender.cpp | 20 +
lib/CMakeLists.txt | 4 +
lib/hidapi/AUTHORS.txt | 18 +
lib/hidapi/CMakeLists.txt | 61 +
lib/hidapi/LICENSE-orig.txt | 9 +
lib/hidapi/VERSION | 1 +
lib/hidapi/hidapi/hidapi.h | 603 +++++++++
lib/hidapi/libusb/.gitignore | 8 +
lib/hidapi/libusb/CMakeLists.txt | 107 ++
lib/hidapi/libusb/hid.c | 1850 +++++++++++++++++++++++++++
lib/hidapi/libusb/hidapi_libusb.h | 56 +
lib/hidapi/linux/.gitignore | 18 +
lib/hidapi/linux/CMakeLists.txt | 38 +
lib/hidapi/linux/hid.c | 1242 ++++++++++++++++++
lib/hidapi/mac/.gitignore | 17 +
lib/hidapi/mac/CMakeLists.txt | 48 +
lib/hidapi/mac/hid.c | 1444 +++++++++++++++++++++
lib/hidapi/mac/hidapi_darwin.h | 98 ++
lib/hidapi/pc/.gitignore | 1 +
lib/hidapi/pc/hidapi-hidraw.pc.in | 11 +
lib/hidapi/pc/hidapi-libusb.pc.in | 11 +
lib/hidapi/pc/hidapi.pc.in | 11 +
lib/hidapi/src/CMakeLists.txt | 184 +++
lib/hidapi/src/cmake/hidapi-config.cmake.in | 61 +
lib/hidapi/windows/.gitignore | 17 +
lib/hidapi/windows/CMakeLists.txt | 45 +
lib/hidapi/windows/hid.c | 1325 +++++++++++++++++++
lib/hidapi/windows/hidapi.rc | 35 +
lib/hidapi/windows/hidapi_cfgmgr32.h | 69 +
lib/hidapi/windows/hidapi_hidclass.h | 38 +
lib/hidapi/windows/hidapi_hidpi.h | 65 +
lib/hidapi/windows/hidapi_hidsdi.h | 60 +
lib/hidapi/windows/hidapi_winapi.h | 58 +
qtfred/src/mission/EditorViewport.cpp | 21 +
41 files changed, 7933 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
commit 08742f36e
Author: MjnMixael
Commit: GitHub
enable commandline language setting (#5013)
code/cmdline/cmdline.cpp | 7 +++++++
code/cmdline/cmdline.h | 1 +
code/localization/localize.cpp | 41 ++++++++++++++++++++++++++++-------------
3 files changed, 36 insertions(+), 13 deletions(-)
------------------------------------------------------------------------
commit 24571d099
Author: MjnMixael
Commit: GitHub
modular ai classes table (#4945)
code/ai/aicode.cpp | 126 +++++++++++++++++++++++++++++++++++++----------------
1 file changed, 89 insertions(+), 37 deletions(-)
------------------------------------------------------------------------
commit f29c48965
Author: MjnMixael
Commit: GitHub
fictionviewer localization (#5012)
code/missionui/fictionviewer.cpp | 29 ++++++++++++++++++++++++++---
code/missionui/fictionviewer.h | 1 +
code/scripting/api/objs/fictionviewer.cpp | 5 ++++-
3 files changed, 31 insertions(+), 4 deletions(-)
------------------------------------------------------------------------
commit fbb209ef6
Author: MjnMixael
Commit: GitHub
Modular rank table (#4854)
code/localization/localize.cpp | 2 +-
code/network/multi_pinfo.cpp | 2 +-
code/network/multi_pxo.cpp | 2 +-
code/network/multiui.cpp | 12 +--
code/pilotfile/pilotfile.cpp | 2 +-
code/pilotfile/pilotfile.h | 2 +-
code/playerman/managepilot.cpp | 2 +-
code/stats/medals.cpp | 14 +--
code/stats/scoring.cpp | 201 +++++++++++++++++++++++++++++++++++------
code/stats/scoring.h | 35 +++----
freespace2/freespace.cpp | 2 +-
11 files changed, 210 insertions(+), 66 deletions(-)
------------------------------------------------------------------------
commit 11f2635ab
Author: Goober5000
Commit: Goober5000
add parse object collision group to sexps
code/parse/sexp.cpp | 37 ++++++++++++++++++++++++++++---------
1 file changed, 28 insertions(+), 9 deletions(-)
------------------------------------------------------------------------
commit df8268368
Author: Goober5000
Commit: Goober5000
make collision_group_id accessible to parse objects
code/mission/missionparse.cpp | 3 ++
code/mission/missionparse.h | 1 +
code/scripting/api/objs/object.cpp | 6 +++-
code/scripting/api/objs/parse_object.cpp | 55 ++++++++++++++++++++++++++++++++
4 files changed, 64 insertions(+), 1 deletion(-)