Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulchen-Panther committed Feb 21, 2023
1 parent ef14b72 commit d1bacb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -30,11 +30,12 @@ See [Release Page](https://github.com/hyperion-project/hyperion-obs-plugin/relea
## Build (Windows/macOS/Linux)
1. In-tree build:
- First follow the build instructions for OBS-Studio: [https://obsproject.com/wiki/Install-Instructions][obs_build]
- Install Flatbuffers: [https://google.github.io/flatbuffers/flatbuffers_guide_building.html][flatbuffers]
- Check out this repository to plugins/hyperion-obs
- Append `add_subdirectory(hyperion-obs)` to plugins/CMakeLists.txt
- Rebuild OBS Studio

- Optional: Install [Flatbuffers][flatbuffers] as system library and use it with the CMake switch `-DUSE_SYSTEM_FLATBUFFERS_LIBS=ON`

2. Stand-alone build (Linux only):
- Verify that you have package with development files for OBS
- Check out this repository and run `cmake -S . -B build -DBUILD_OUT_OF_TREE=On && cmake --build build`
Expand Down
2 changes: 1 addition & 1 deletion external/flatbuffers
Submodule flatbuffers updated 98 files
+0 −1 BUILD.bazel
+0 −778 CMake/CMakeLists_legacy.cmake.in
+2 −16 CMake/PackageDebian.cmake
+1 −1 CMake/PackageRedhat.cmake
+16 −36 CMakeLists.txt
+0 −0 LICENSE
+0 −1 android/app/src/main/cpp/flatbuffers/CMakeLists.txt
+5 −4 benchmarks/CMakeLists.txt
+1 −1 include/flatbuffers/base.h
+8 −1 include/flatbuffers/code_generator.h
+5 −35 include/flatbuffers/flatc.h
+62 −26 include/flatbuffers/idl.h
+11 −8 include/flatbuffers/stl_emulation.h
+0 −12 package.json
+1 −1 readme.md
+6 −6 samples/sample_binary.py
+2 −0 src/BUILD.bazel
+88 −75 src/annotated_binary_text_gen.cpp
+3 −0 src/annotated_binary_text_gen.h
+6 −7 src/bfbs_gen.h
+47 −6 src/bfbs_gen_lua.cpp
+2 −2 src/bfbs_gen_lua.h
+51 −6 src/bfbs_gen_nim.cpp
+2 −2 src/bfbs_gen_nim.h
+55 −37 src/binary_annotator.cpp
+13 −6 src/binary_annotator.h
+93 −123 src/flatc.cpp
+69 −158 src/flatc_main.cpp
+9 −0 src/idl_gen_binary.cpp
+27 −20 src/idl_gen_cpp.cpp
+9 −0 src/idl_gen_csharp.cpp
+9 −0 src/idl_gen_dart.cpp
+225 −10 src/idl_gen_fbs.cpp
+9 −0 src/idl_gen_go.cpp
+9 −0 src/idl_gen_java.cpp
+8 −0 src/idl_gen_json_schema.cpp
+8 −0 src/idl_gen_kotlin.cpp
+9 −0 src/idl_gen_lobster.cpp
+9 −0 src/idl_gen_lua.cpp
+9 −0 src/idl_gen_php.cpp
+8 −0 src/idl_gen_python.cpp
+8 −0 src/idl_gen_rust.cpp
+10 −1 src/idl_gen_swift.cpp
+59 −0 src/idl_gen_text.cpp
+7 −21 src/idl_gen_text.h
+7 −0 src/idl_gen_ts.cpp
+60 −32 src/idl_parser.cpp
+15 −6 tests/BUILD.bazel
+200 −200 tests/annotated_binary/annotated_binary.afb
+3 −3 tests/annotated_binary/tests/invalid_root_offset.afb
+4 −4 tests/annotated_binary/tests/invalid_root_table_too_short.afb
+5 −5 tests/annotated_binary/tests/invalid_root_table_vtable_offset.afb
+198 −198 tests/annotated_binary/tests/invalid_string_length.afb
+66 −66 tests/annotated_binary/tests/invalid_string_length_cut_short.afb
+60 −60 tests/annotated_binary/tests/invalid_struct_array_field_cut_short.afb
+57 −57 tests/annotated_binary/tests/invalid_struct_field_cut_short.afb
+65 −65 tests/annotated_binary/tests/invalid_table_field_offset.afb
+56 −56 tests/annotated_binary/tests/invalid_table_field_size.afb
+197 −197 tests/annotated_binary/tests/invalid_union_type_value.afb
+94 −94 tests/annotated_binary/tests/invalid_vector_length_cut_short.afb
+123 −123 tests/annotated_binary/tests/invalid_vector_scalars_cut_short.afb
+103 −103 tests/annotated_binary/tests/invalid_vector_strings_cut_short.afb
+95 −95 tests/annotated_binary/tests/invalid_vector_structs_cut_short.afb
+136 −136 tests/annotated_binary/tests/invalid_vector_tables_cut_short.afb
+198 −198 tests/annotated_binary/tests/invalid_vector_union_type_value.afb
+136 −136 tests/annotated_binary/tests/invalid_vector_unions_cut_short.afb
+189 −189 tests/annotated_binary/tests/invalid_vtable_field_offset.afb
+201 −201 tests/annotated_binary/tests/invalid_vtable_ref_table_size.afb
+200 −200 tests/annotated_binary/tests/invalid_vtable_ref_table_size_short.afb
+5 −5 tests/annotated_binary/tests/invalid_vtable_size.afb
+5 −5 tests/annotated_binary/tests/invalid_vtable_size_short.afb
+1 −1 tests/fuzz_test.cpp
+4,281 −4,287 tests/monster_test.afb
+26 −26 tests/monsterdata_test.afb
+243 −124 tests/proto_test.cpp
+17 −3 tests/proto_test.h
+13 −6 tests/prototest/GenerateProtoGoldens.sh
+9 −0 tests/prototest/non-positive-id.proto
+0 −0 tests/prototest/test.golden.fbs
+3 −2 tests/prototest/test.proto
+87 −0 tests/prototest/test_id.golden.fbs
+0 −0 tests/prototest/test_include.golden.fbs
+85 −0 tests/prototest/test_include_id.golden.fbs
+0 −0 tests/prototest/test_suffix.golden.fbs
+87 −0 tests/prototest/test_suffix_id.golden.fbs
+0 −0 tests/prototest/test_union.golden.fbs
+89 −0 tests/prototest/test_union_id.golden.fbs
+0 −0 tests/prototest/test_union_include.golden.fbs
+87 −0 tests/prototest/test_union_include_id.golden.fbs
+0 −0 tests/prototest/test_union_suffix.golden.fbs
+89 −0 tests/prototest/test_union_suffix_id.golden.fbs
+10 −0 tests/prototest/twice-id.proto
+10 −0 tests/prototest/use-reserved-id.proto
+0 −2 tests/test.cpp
+3 −1 tests/ts/TypeScriptTest.py
+2 −2 tsconfig.json
+2 −2 tsconfig.mjs.json
+1 −1 yarn.lock

0 comments on commit d1bacb3

Please sign in to comment.