Skip to content

Commit

Permalink
Merge pull request #39 from shiguredo/feature/cpp-sdk-2024.8
Browse files Browse the repository at this point in the history
Feature/cpp sdk 2024.8
  • Loading branch information
voluntas authored Sep 16, 2024
2 parents b570c7f + 349edce commit ebacf49
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
10 changes: 6 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
- @melpon
- [CHANGE] Ubuntu 20.04 のビルドを削除
- @melpon
- [UPDATE] Sora C++ SDK を `2024.7.0` に上げる
- [UPDATE] Sora C++ SDK を `2024.8.0` に上げる
- それに伴って以下のライブラリのバージョンも上げる
- libwebrtc のバージョンを `m127.6533.1.1` に上げる
- Boost のバージョンを `1.85.0` に上げる
- CMake のバージョンを `3.29.6` に上げる
- libwebrtc のバージョンを `m128.6613.2.0` に上げる
- Boost のバージョンを `1.86.0` に上げる
- CMake のバージョンを `3.30.3` に上げる
- `#include <rtc_base/helpers.h>``#include <rtc_base/crypto_random.h>` に置き換える
- `boost::json::error_code``boost::system::error_code` に置き換える
- @melpon @voluntas
- [UPDATE] Blend2D, AsmJit を最新版に上げる
- @melpon
Expand Down
8 changes: 4 additions & 4 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ZAKURO_VERSION=2024.2.0-canary.1
SORA_CPP_SDK_VERSION=2024.7.0
WEBRTC_BUILD_VERSION=m127.6533.1.1
BOOST_VERSION=1.85.0
SORA_CPP_SDK_VERSION=2024.8.0-canary.3
WEBRTC_BUILD_VERSION=m128.6613.2.0
BOOST_VERSION=1.86.0
CLI11_VERSION=v2.4.2
CMAKE_VERSION=3.29.6
CMAKE_VERSION=3.30.3
BLEND2D_VERSION=c966273935e70ce1bed328993ee40d7cfe8fef5c
ASMJIT_VERSION=062e69ca81defa35eb0ee15f7412f49a0dad3cdb
OPENH264_VERSION=v2.4.1
Expand Down
4 changes: 2 additions & 2 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <boost/preprocessor/stringize.hpp>

// WebRTC
#include <rtc_base/helpers.h>
#include <rtc_base/crypto_random.h>

#include "zakuro.h"
#include "zakuro_version.h"
Expand Down Expand Up @@ -240,7 +240,7 @@ void Util::ParseArgs(const std::vector<std::string>& cargs,

auto is_json = CLI::Validator(
[](std::string input) -> std::string {
boost::json::error_code ec;
boost::system::error_code ec;
boost::json::parse(input, ec);
if (ec) {
return "Value " + input + " is not JSON Value";
Expand Down
1 change: 1 addition & 0 deletions src/virtual_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <modules/audio_device/include/audio_device_factory.h>
#include <modules/audio_processing/include/audio_processing.h>
#include <rtc_base/logging.h>
#include <rtc_base/crypto_random.h>

std::shared_ptr<VirtualClient> VirtualClient::Create(
VirtualClientConfig config) {
Expand Down

0 comments on commit ebacf49

Please sign in to comment.