1. 01 Mar, 2019 1 commit
  2. 20 Feb, 2019 1 commit
  3. 13 Feb, 2019 2 commits
  4. 10 Feb, 2019 3 commits
  5. 09 Feb, 2019 3 commits
  6. 08 Feb, 2019 1 commit
    • Vinicius Jarina's avatar
      WIP cleanup (#275) · 5e9a190a
      Vinicius Jarina authored
      * WIP cleanup
      
      * Trying fixing iPhoneSimTests.
      
      * More cleanups
      
      * Minified initLua loadCLRpackage
      5e9a190a
  7. 05 Feb, 2019 2 commits
  8. 04 Feb, 2019 3 commits
  9. 03 Feb, 2019 1 commit
    • Vinicius Jarina's avatar
      Added iOS tests. (#270) · b6d3b8a2
      Vinicius Jarina authored
      * Added iOS tests.
      
      * Added `tvOS` tests.
      
      * Added `NUNIT_ENABLE_XML_OUTPUT` flag
      
      * Added Touch.Server to run iOS/tvOS tests on VSTS.
      
      * Update Touch.Sever nuget.
      
      * Fixed iOS test results XML.
      
      * Bump Touch.Server.
      
      * Fixed windows build.
      
      * .
      b6d3b8a2
  10. 30 Jan, 2019 2 commits
  11. 29 Jan, 2019 2 commits
  12. 28 Jan, 2019 4 commits
  13. 04 Jan, 2019 2 commits
  14. 01 Mar, 2018 1 commit
  15. 06 Feb, 2018 1 commit
  16. 13 Dec, 2017 1 commit
  17. 30 Nov, 2017 1 commit
  18. 11 Nov, 2017 1 commit
  19. 10 Oct, 2017 1 commit
  20. 25 Sep, 2017 2 commits
  21. 23 Sep, 2017 3 commits
  22. 05 Sep, 2017 1 commit
  23. 06 Aug, 2017 1 commit
    • psy_commando's avatar
      Fixed issue where variadic static method arguments wouldn't get read from cache properly · b2329fb5
      psy_commando authored
      * The count of cached parameters was done wrong (I assume), so the parameter array was empty when calling a static method more than once with a variadic parameter array for some reasons.
      
      The best way to spot the issues immediately is to try to wrap "String.Format(string, params object[])" in a static class method "Format(string, params object[])". And then call it twice in a row with any valid paramters. The second time, the parameter array will be completely empty even if data was passed to the function inside the lua script.
      b2329fb5