1. 25 Aug, 2017 2 commits
  2. 24 Aug, 2017 3 commits
  3. 17 Aug, 2017 1 commit
  4. 14 Aug, 2017 11 commits
  5. 11 Aug, 2017 4 commits
    • Wouter van Oortmerssen's avatar
      d5f5d382
    • Wouter van Oortmerssen's avatar
      Added missing generated code. · ffddbdc7
      Wouter van Oortmerssen authored
      Change-Id: I7201d6891f56094178656a76bf0f87cf36d12554
      ffddbdc7
    • Kamil Rojewski's avatar
      Vector of unions for TS/JS and PHP (#4404) · 46bb05d9
      Kamil Rojewski authored
      * Eclipse ignore
      
      * TypeScript support
      
      * Prefixing enums
      
      * Test results
      
      * Merged JS and TS generators
      
      * Fixed AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Changed TS flag to options struct
      
      * Storing options by value
      
      * Removed unneeded const
      
      * Re-export support for unions
      
      * Uint support
      
      * Casting bools to numbers for mutation
      
      * TS shell tests
      
      * Reverted generates js test file to original version
      
      * Backing up js tests and properly generating test data
      
      * Not importing flatbuffers for TS test generation
      
      * Not overwriting generated js for tests
      
      * AppVeyor test fixes
      
      * Generating the most strict TS code possible
      
      * Not returning null when creating vectors
      
      * Not returning null from struct contructors
      
      * Vector of unions for ts/js
      
      * Sanity check for languages
      
      * Indentation fix + output test files
      
      * Vectors of unions for php
      
      * Fixes to union vector handling + tests
      46bb05d9
    • Kamil Rojewski's avatar
      Copying required field to union type vector (#4407) · 7cc72e4b
      Kamil Rojewski authored
      * Eclipse ignore
      
      * TypeScript support
      
      * Prefixing enums
      
      * Test results
      
      * Merged JS and TS generators
      
      * Fixed AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Changed TS flag to options struct
      
      * Storing options by value
      
      * Removed unneeded const
      
      * Re-export support for unions
      
      * Uint support
      
      * Casting bools to numbers for mutation
      
      * TS shell tests
      
      * Reverted generates js test file to original version
      
      * Backing up js tests and properly generating test data
      
      * Not importing flatbuffers for TS test generation
      
      * Not overwriting generated js for tests
      
      * AppVeyor test fixes
      
      * Generating the most strict TS code possible
      
      * Not returning null when creating vectors
      
      * Not returning null from struct contructors
      
      * Copying required field to union type vector
      
      * Removed unneccessary bool
      7cc72e4b
  6. 10 Aug, 2017 4 commits
  7. 07 Aug, 2017 4 commits
  8. 04 Aug, 2017 1 commit
    • rouzier's avatar
      [c++] Add support for boolean types in flexbuffers (#4386) · a2b1bfc1
      rouzier authored
      * Add support for boolean types in flexbuffers
      
      * Simplify casting number <=> boolean
      
      * Added comments for tests
      
      * Add proper support for Booleans
      
      * Bad rebase
      
      * No special case for strings
      
      * Removed unused test
      
      * Simplify logic
      a2b1bfc1
  9. 02 Aug, 2017 1 commit
  10. 01 Aug, 2017 1 commit
    • Kevin Rose's avatar
      [Python] (scalar) vector reading speedup via numpy (#4390) · 3282a84e
      Kevin Rose authored
      * Add numpy accessor to python flatbuffers scalar vectors
      
      * Update python tests to test numpy vector accessor
      
      * Update appveyor CI to run Python tests, save generated code as artifact
      
      * Update example generated python code
      
      * Add numpy info to python usage docs
      
      * Update test schema and python tests w/ multi-byte vector
      
      * did not mean to push profiling code
      
      * adding float64 numpy tests
      3282a84e
  11. 28 Jul, 2017 1 commit
    • Christian Helmich's avatar
      Added support for nested flatbuffers serializing to json (#4391) · 89a68942
      Christian Helmich authored
      * added bool for nested_flatbuffer
      setting bool flag nested_flatbuffer according to attributes
      setting nested type
      
      * added JSON serialization for nested flatbuffers
      
      * simplified lookup of nested_flatbuffer StructDef
      
      * added nested_flatbuffer parsing workound relying on flexbuffers
      
      * moved nested flatbuffer parsing into its own function for clarity
      removed flexbuffers workound to simplify and speed up nested_flatbuffer parsing
      added support for 'legacy' nested_flatbuffers, ubyte arrays
      
      * inlined functions for nested parser init/clean since only used once
      
      * whitespace formatting
      
      * changed type of FieldDef.nested_flatbuffer from bool to StructDef*
      removed subsequent type lookups
      
      * removed copies of unrequired data when initializing nested parser
      
      * applied changes requested by reviewer
      
      * removed superfluous lookup of nested_flatbuffer field attributes
      
      * renamed camelCased variables to snake_case
      89a68942
  12. 27 Jul, 2017 1 commit
  13. 24 Jul, 2017 3 commits
  14. 20 Jul, 2017 2 commits
    • Stewart Miles's avatar
      Merge pull request #4383 from stewartmiles/master · d6f14b70
      Stewart Miles authored
      C++98 (stlport) support for core FlatBuffers and FlexBuffers.
      d6f14b70
    • Stewart Miles's avatar
      C++98 (stlport) support for core FlatBuffers and FlexBuffers. · a8923222
      Stewart Miles authored
      * Added internal - limited - implementation of flatbuffers::unique_ptr
        for STLs that don't ship with std::unique_ptr.  In C++11 and beyond
        this is just an alias for std::unique_ptr.
      * Aliased used type traits structs is_scalar is_floating_point is_unsigned
        into flatbuffers namespace so they can be replaced in C++98 implementations.
        Right now these point at stlport's TR1 implementations.
      * Wrapped vector::data() in vector_data().
      * Wrapped vector::emplace_back() in vector_emplace_back().
      * Wrapper string::back() in string_back().
      * Added variants of FlatBufferBuilder::CreateVector() and
        FlatBufferBuilder::CreateVectorOfStructs() that allow the use of plain
        function pointers.
        Generated code has also been modified to use plain functions to build objects
        rather than std::function() so all generated code will work in C++98
        applications.
      * Added flexbuffers::Builder::Vector(), flexbuffers::Builder::TypedVector()
        and flexbuffers::Builder::Map() methods that allow the use of plain function
        pointers.
      * Changed Parser to internally use plain function pointers when parsing table
        and vector delimiters.
      * Added specializations of NumToString() for 64-bit types that aren't supported
        by stringstream in stlport.
      * Overloaded numeric_limits for 64-bit types not supported by stlport.
      * Replaced build_apk.sh (which was broken by deprecation of the
        "android" tool in the Android SDK) with build.gradle and the
        appropriate gradle wrapper to build an APK.
      * Switched Android build to build against all STL variants.
      * Updated travis configuration to build Android test and sample.
      
      Tested:
      * Verified all tests continue to work on Linux, OSX and Android.
      * Verified Travis build is green.
      
      Change-Id: I9e634363793f85b9f141d21454b10686020a2065
      a8923222
  15. 19 Jul, 2017 1 commit
    • schoetbi's avatar
      idl_parser.cpp ignores $schema in input json (#4382) · 2e2063cb
      schoetbi authored
      * idl_parser.cpp ignores $schema in input json
      #4381
      
      * idl_parser.cpp: Fixed ci error signed unsigned comparison
      
      * idl_parser.cpp: replaced case insensitive search for $schema with case sensitive search
      
      * idl_parser.cpp: Expecting a string constant after $schema
      #4382
      2e2063cb