Author Topic: Nightly: 14 October 2016 - Revision bd5fb38  (Read 886 times)

0 Members and 1 Guest are viewing this topic.

Offline SirKnightly

  • George or Keira?
  • 211
Nightly: 14 October 2016 - Revision bd5fb38
Here is the nightly for 14 October 2016 - Revision bd5fb38


Group: Linux
nightly_20161014_bd5fb38-builds-Linux.tar.gz
SHA1: 286dccbe8762df2cc807b472435a3b215138a8fb


Group: MacOSX
nightly_20161014_bd5fb38-builds-MacOSX.tar.gz
SHA1: 8122fc89e8278cf99ae1bca1f0ef46c57afc392d


Group: Win32
nightly_20161014_bd5fb38-builds-Win32.zip
SHA1: fbafeb367c7afa8729e44450d8773051308a3054


Group: Win64
nightly_20161014_bd5fb38-builds-Win64.zip
SHA1: 78f0b72e0dd8f4fe746d0c6bd5829b44fb4c0caa


Code: [Select]
------------------------------------------------------------------------
commit b4f37f4
Author: asarium <Fri Oct 7 15:46:07 2016 +0200>
Commit: asarium <Thu Oct 13 12:22:47 2016 +0200>

    Make semicolon manditory after definition and declaration
 code/scripting/ade_api.h      | 8 ++++----
 code/scripting/api/bitops.cpp | 2 +-
 code/scripting/api/bitops.h   | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

------------------------------------------------------------------------
commit ecd7f61
Author: asarium <Thu Oct 6 19:22:17 2016 +0200>
Commit: asarium <Thu Oct 13 12:22:47 2016 +0200>

    Sort the scripting documentation entries
 code/scripting/ade.cpp |  5 +++--
 code/scripting/lua.cpp | 56 +++++++++++++++++++++++++++++++++++++++++++++++---
 2 files changed, 56 insertions(+), 5 deletions(-)

------------------------------------------------------------------------
commit 1148305
Author: asarium <Tue Oct 4 21:47:49 2016 +0200>
Commit: asarium <Thu Oct 13 12:22:47 2016 +0200>

    Add unit tests
 code/scripting/ade.cpp                             |  2 -
 code/scripting/api/bit.cpp                         | 91 ----------------------
 code/scripting/api/bit.h                           | 17 ----
 code/scripting/api/bitops.cpp                      | 88 +++++++++++++++++++++
 code/scripting/api/bitops.h                        | 17 ++++
 code/scripting/lua.cpp                             |  2 +-
 code/source_groups.cmake                           |  4 +-
 test/src/scripting/ScriptingTestFixture.cpp        | 54 +++++++++++++
 test/src/scripting/ScriptingTestFixture.h          | 27 +++++++
 test/src/scripting/api/bitops.cpp                  | 33 ++++++++
 test/src/source_groups.cmake                       |  9 +++
 .../scripting/bitops/AND/data/scripts/test.lua     |  3 +
 .../scripting/bitops/OR/data/scripts/test.lua      |  4 +
 .../scripting/bitops/XOR/data/scripts/test.lua     |  4 +
 .../scripting/bitops/addBit/data/scripts/test.lua  |  4 +
 .../bitops/checkBit/data/scripts/test.lua          |  3 +
 .../bitops/toggleBit/data/scripts/test.lua         |  3 +
 17 files changed, 252 insertions(+), 113 deletions(-)

------------------------------------------------------------------------
commit 4382b57
Author: asarium <Tue Oct 4 15:51:25 2016 +0200>
Commit: asarium <Thu Oct 13 12:22:47 2016 +0200>

    Move BitOps scripting library into own file
 code/globalincs/toolchain/clang.h   |  2 +
 code/globalincs/toolchain/doxygen.h |  7 +++
 code/globalincs/toolchain/gcc.h     |  2 +
 code/globalincs/toolchain/mingw.h   |  2 +
 code/globalincs/toolchain/msvc.h    |  2 +
 code/scripting/ade.cpp              | 12 +++--
 code/scripting/ade.h                | 18 ++++----
 code/scripting/ade_api.h            | 55 ++++++++++++++++++----
 code/scripting/api/bit.cpp          | 91 +++++++++++++++++++++++++++++++++++++
 code/scripting/api/bit.h            | 17 +++++++
 code/scripting/api/vecmath.cpp      |  1 -
 code/scripting/lua.cpp              | 86 ++---------------------------------
 code/source_groups.cmake            |  2 +
 13 files changed, 190 insertions(+), 107 deletions(-)

------------------------------------------------------------------------
commit 20e36e8
Author: asarium <Thu Oct 13 11:21:43 2016 +0200>
Commit: asarium <Thu Oct 13 12:11:29 2016 +0200>

    Add option for showing video debug informations.
 code/cmdline/cmdline.cpp |  7 +++++++
 code/cmdline/cmdline.h   |  1 +
 code/cutscene/Decoder.h  |  4 ++++
 code/cutscene/player.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 57 insertions(+)

------------------------------------------------------------------------
commit b3a342c
Author: asarium <Thu Oct 13 10:38:47 2016 +0200>
Commit: asarium <Thu Oct 13 10:38:47 2016 +0200>

    Change video rendering so that text can be rendered
 code/cutscene/player.cpp                      | 12 ++---------
 code/cutscene/player/OpenGLVideoPresenter.cpp | 29 ++++++++++++++++++---------
 code/cutscene/player/OpenGLVideoPresenter.h   | 13 +++++++-----
 3 files changed, 30 insertions(+), 24 deletions(-)

------------------------------------------------------------------------
commit df40777
Author: asarium <Tue Oct 4 12:52:26 2016 +0200>
Commit: asarium <Tue Oct 4 15:09:52 2016 +0200>

    Move vecmath scripting functions into own file
 code/globalincs/scp_defines.h  |   3 +
 code/scripting/ade.cpp         |   1 +
 code/scripting/ade.h           |  90 ++++++-
 code/scripting/ade_api.cpp     |   2 +
 code/scripting/ade_api.h       | 137 ++++++++++
 code/scripting/ade_args.h      |  17 ++
 code/scripting/api/vecmath.cpp | 562 +++++++++++++++++++++++++++++++++++++++++
 code/scripting/api/vecmath.h   |  53 ++++
 code/scripting/lua.cpp         | 511 +------------------------------------
 code/source_groups.cmake       |   9 +
 10 files changed, 872 insertions(+), 513 deletions(-)