Hard Light Productions Forums
Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Nightly Builds => Topic started by: SirKnightly on September 17, 2018, 08:37:39 am
-
Here is the nightly for 17 September 2018 - Revision 8fe7dc4
Group: MacOSX
nightly_20180917_8fe7dc4-builds-MacOSX.tar.gz (http://swc.fs2downloads.com/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-MacOSX.tar.gz) (Mirror (http://scp.indiegames.us/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-MacOSX.tar.gz))
Group: Linux
nightly_20180917_8fe7dc4-builds-Linux.tar.gz (http://swc.fs2downloads.com/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-Linux.tar.gz) (Mirror (http://scp.indiegames.us/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-Linux.tar.gz))
Group: Win64
nightly_20180917_8fe7dc4-builds-Win64.zip (http://swc.fs2downloads.com/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-Win64.zip) (Mirror (http://scp.indiegames.us/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-Win64.zip))
Group: Win32
nightly_20180917_8fe7dc4-builds-Win32.zip (http://swc.fs2downloads.com/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-Win32.zip) (Mirror (http://scp.indiegames.us/builds/nightly/20180917_8fe7dc4/nightly_20180917_8fe7dc4-builds-Win32.zip))
------------------------------------------------------------------------
commit f5bbb21
Author: Goober5000 <Sun Sep 16 14:16:57 2018 -0400>
Commit: Goober5000 <Sun Sep 16 14:16:57 2018 -0400>
rewrite the mod warning dialog a bit
code/menuui/playermenu.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
------------------------------------------------------------------------
commit 7173299
Author: asarium <Sat Feb 18 16:48:38 2017 +0100>
Commit: asarium <Sun Sep 16 13:55:29 2018 +0200>
Add new libRocket UI system
.clang-tidy | 1 +
.gitignore | 3 -
.gitmodules | 3 +
.travis.yml | 1 +
code/CMakeLists.txt | 2 +
code/cfile/cfile.cpp | 32 ++
code/cfile/cfile.h | 8 +-
code/cutscene/movie.cpp | 33 +-
code/def_files/data/effects/rocketui-f.sdr | 17 +
code/def_files/data/effects/rocketui-v.sdr | 18 +
code/globalincs/version.cpp | 22 +-
code/globalincs/version.h | 7 +
code/graphics/2d.h | 13 +-
code/graphics/grstub.cpp | 7 +
code/graphics/material.cpp | 22 +
code/graphics/material.h | 21 +-
code/graphics/opengl/gropengl.cpp | 1 +
code/graphics/opengl/gropengldraw.cpp | 16 +
code/graphics/opengl/gropengldraw.h | 2 +
code/graphics/opengl/gropenglshader.cpp | 7 +-
code/graphics/opengl/gropengltnl.cpp | 29 ++
code/graphics/opengl/gropengltnl.h | 1 +
code/menuui/barracks.cpp | 25 +-
code/menuui/barracks.h | 4 +
code/menuui/mainhallmenu.cpp | 14 +-
code/menuui/playermenu.cpp | 167 ++++++--
code/menuui/playermenu.h | 12 +-
code/mission/missioncampaign.cpp | 19 +-
code/mission/missioncampaign.h | 2 -
code/osapi/dialogs.cpp | 8 +-
code/pilotfile/csg.cpp | 4 +-
code/pilotfile/pilotfile.h | 2 +-
code/pilotfile/plr.cpp | 3 -
code/playerman/managepilot.cpp | 6 +-
code/playerman/managepilot.h | 6 +-
code/scpui/RocketFileInterface.cpp | 117 ++++++
code/scpui/RocketFileInterface.h | 43 ++
code/scpui/RocketRenderingInterface.cpp | 250 +++++++++++
code/scpui/RocketRenderingInterface.h | 145 +++++++
code/scpui/RocketSystemInterface.cpp | 62 +++
code/scpui/RocketSystemInterface.h | 70 ++++
code/scpui/SoundPlugin.cpp | 174 ++++++++
code/scpui/SoundPlugin.h | 70 ++++
code/scpui/elements/AnimationElement.cpp | 278 +++++++++++++
code/scpui/elements/AnimationElement.h | 74 ++++
code/scpui/rocket_ui.cpp | 641 +++++++++++++++++++++++++++++
code/scpui/rocket_ui.h | 65 +++
code/scripting/api/libs/audio.cpp | 20 +
code/scripting/api/libs/base.cpp | 46 ++-
code/scripting/api/libs/cfile.cpp | 51 +--
code/scripting/api/libs/cfile.h | 2 -
code/scripting/api/libs/parse.cpp | 2 +-
code/scripting/api/libs/ui.cpp | 256 ++++++++++++
code/scripting/api/libs/ui.h | 10 +
code/scripting/api/objs/player.cpp | 159 +++++--
code/scripting/api/objs/player.h | 16 +-
code/scripting/lua.cpp | 1 +
code/scripting/scripting.h | 8 +-
code/source_groups.cmake | 24 ++
code/utils/string_utils.cpp | 15 +
code/utils/string_utils.h | 21 +
code/windows_stub/config.h | 2 +-
code/windows_stub/stubs.cpp | 2 +-
fred2/fredstubs.cpp | 2 -
freespace2/freespace.cpp | 40 +-
freespace2/freespace.h | 3 -
lib/CMakeLists.txt | 4 +
lib/freetype.cmake | 23 ++
lib/libRocket | 1 +
lib/libRocket.cmake | 115 ++++++
lib/prebuilt.cmake | 2 +-
qtfred/src/fredstubs.cpp | 3 -
test/src/cfile/cfile.cpp | 33 +-
test/src/test_stubs.cpp | 2 -
74 files changed, 3156 insertions(+), 234 deletions(-)
------------------------------------------------------------------------
commit 46e8e73
Author: Goober5000 <Sun Sep 16 00:31:58 2018 -0400>
Commit: Goober5000 <Sun Sep 16 00:31:58 2018 -0400>
more complaining by clang-tidy
code/scripting/api/libs/graphics.cpp | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
------------------------------------------------------------------------
commit e3e40ee
Author: Goober5000 <Sat Sep 15 23:42:29 2018 -0400>
Commit: Goober5000 <Sat Sep 15 23:42:29 2018 -0400>
fix build warning
code/parse/sexp.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
------------------------------------------------------------------------
commit e0f76e0
Author: Goober5000 <Fri Sep 14 21:59:05 2018 -0400>
Commit: Goober5000 <Fri Sep 14 21:59:05 2018 -0400>
tweak sexp documentation as well
code/parse/sexp.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
------------------------------------------------------------------------
commit 5303440
Author: Goober5000 <Fri Sep 14 21:54:35 2018 -0400>
Commit: Goober5000 <Fri Sep 14 21:54:35 2018 -0400>
add reset-post-effects sexp
code/parse/sexp.cpp | 18 ++++++++++++++++++
code/parse/sexp.h | 2 ++
code/scripting/api/libs/graphics.cpp | 10 +++++-----
3 files changed, 25 insertions(+), 5 deletions(-)