Author Topic: Nightly: 15 December 2019 - Revision d3c5eb3  (Read 1157 times)

0 Members and 1 Guest are viewing this topic.

Offline SirKnightly

  • George or Keira?
  • 212
Nightly: 15 December 2019 - Revision d3c5eb3
Here is the nightly for 15 December 2019 - Revision d3c5eb3

At least one of the nightly builds failed!


Group: Linux
nightly_20191215_d3c5eb3-builds-Linux.tar.gz (Mirror)


Group: MacOSX
nightly_20191215_d3c5eb3-builds-MacOSX.tar.gz (Mirror)


Group: Win64
nightly_20191215_d3c5eb3-builds-Win64.zip (Mirror)


Group: Win32
nightly_20191215_d3c5eb3-builds-Win32.zip (Mirror)

Code: [Select]
------------------------------------------------------------------------
commit b825f57
Author: asarium
Commit: asarium

    Add scripting API support for model paths
 code/scripting/api/libs/graphics.cpp   |   2 +-
 code/scripting/api/objs/beam.cpp       |   4 +-
 code/scripting/api/objs/camera.cpp     |   4 +-
 code/scripting/api/objs/model_path.cpp | 157 +++++++++++++++++++++++++++++++++
 code/scripting/api/objs/model_path.h   |  29 ++++++
 code/scripting/api/objs/object.cpp     |   5 +-
 code/scripting/api/objs/order.cpp      |   2 +-
 code/scripting/api/objs/ship.cpp       |   4 +-
 code/scripting/api/objs/subsystem.cpp  | 147 +++++++++++++++++++++---------
 code/scripting/api/objs/subsystem.h    |   2 +-
 code/scripting/api/objs/weapon.cpp     |  26 +++++-
 code/scripting/lua.cpp                 |   1 +
 code/scripting/scripting.cpp           |   9 +-
 code/scripting/scripting.h             |  98 ++++++++++----------
 code/source_groups.cmake               |   2 +
 code/weapon/weapon_flags.h             |   7 +-
 code/weapon/weapons.cpp                | 151 +++++++++++++++----------------
 17 files changed, 469 insertions(+), 181 deletions(-)

------------------------------------------------------------------------
commit a069eb6
Author: Goober5000
Commit: Goober5000

    apply fix for model_anim_get_time_type (Mantis 2542)
 code/model/modelanim.cpp | 42 ++++++++++++++++++++++++++++--------------
 1 file changed, 28 insertions(+), 14 deletions(-)

------------------------------------------------------------------------
commit 826a927
Author: Taylor Richards
Commit: Taylor Richards

    clean up logging just a bit
 code/network/multi_portfwd.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

------------------------------------------------------------------------
commit f573706
Author: Taylor Richards
Commit: Taylor Richards

    allow for unicast (gateway) route type
 lib/libpcp/src/net/gateway.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

------------------------------------------------------------------------
commit 9ae62e9
Author: Taylor Richards
Commit: Taylor Richards

    remove some cruft from previous attempts
 code/network/multi.cpp | 2 +-
 code/network/psnet2.h  | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

------------------------------------------------------------------------
commit 7da6276
Author: Taylor Richards
Commit: Taylor Richards

    fix type issue with XP compat code
 code/windows_stub/stubs.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

------------------------------------------------------------------------
commit c286c4c
Author: Taylor Richards
Commit: Taylor Richards

    add support for automatic port forwarding
 code/CMakeLists.txt                       |    2 +
 code/cmdline/cmdline.cpp                  |    8 +
 code/cmdline/cmdline.h                    |    1 +
 code/menuui/credits.cpp                   |    1 +
 code/network/multi.cpp                    |   20 +
 code/network/multi_endgame.cpp            |    4 +
 code/network/multi_portfwd.cpp            |  243 +++++
 code/network/multi_portfwd.h              |   17 +
 code/network/multiui.cpp                  |    6 +-
 code/network/psnet2.h                     |    2 +
 code/source_groups.cmake                  |   10 +-
 code/windows_stub/config.h                |   12 +
 code/windows_stub/stubs.cpp               |   45 +-
 lib/CMakeLists.txt                        |    2 +
 lib/libpcp/CMakeLists.txt                 |   72 ++
 lib/libpcp/Makefile.am                    |   36 +
 lib/libpcp/include/pcp.h                  |  336 +++++++
 lib/libpcp/libpcp-client.pc.in            |   16 +
 lib/libpcp/src/default_config.h           |   88 ++
 lib/libpcp/src/net/findsaddr-udp.c        |  167 ++++
 lib/libpcp/src/net/findsaddr.h            |   35 +
 lib/libpcp/src/net/gateway.c              |  958 ++++++++++++++++++++
 lib/libpcp/src/net/gateway.h              |   33 +
 lib/libpcp/src/net/pcp_socket.c           |  345 ++++++++
 lib/libpcp/src/net/pcp_socket.h           |  122 +++
 lib/libpcp/src/net/sock_ntop.c            |  353 ++++++++
 lib/libpcp/src/net/unp.h                  |   61 ++
 lib/libpcp/src/pcp_api.c                  |  777 ++++++++++++++++
 lib/libpcp/src/pcp_client_db.c            |  444 ++++++++++
 lib/libpcp/src/pcp_client_db.h            |  262 ++++++
 lib/libpcp/src/pcp_event_handler.c        | 1363 +++++++++++++++++++++++++++++
 lib/libpcp/src/pcp_event_handler.h        |   98 +++
 lib/libpcp/src/pcp_logger.c               |  176 ++++
 lib/libpcp/src/pcp_logger.h               |  108 +++
 lib/libpcp/src/pcp_msg.c                  |  714 +++++++++++++++
 lib/libpcp/src/pcp_msg.h                  |   50 ++
 lib/libpcp/src/pcp_msg_structs.h          |  316 +++++++
 lib/libpcp/src/pcp_server_discovery.c     |  235 +++++
 lib/libpcp/src/pcp_server_discovery.h     |   35 +
 lib/libpcp/src/pcp_utils.h                |  250 ++++++
 lib/libpcp/src/windows/pcp_gettimeofday.c |   89 ++
 lib/libpcp/src/windows/pcp_gettimeofday.h |   31 +
 lib/libpcp/src/windows/pcp_win_defines.h  |   94 ++
 lib/libpcp/src/windows/stdint.h           |  249 ++++++
 44 files changed, 8276 insertions(+), 10 deletions(-)

------------------------------------------------------------------------
commit e8a07b6
Author: MitoPL
Commit: GitHub

    Update freespace.cpp
 freespace2/freespace.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

------------------------------------------------------------------------
commit d0bee3a
Author: FSCyborg
Commit: FSCyborg

    Fix Crashes In Briefing Screen
 fred2/briefingeditordlg.cpp | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)