-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sora C++ SDK を 2024.8.0-canary.33 に上げる #44
Open
zztkm
wants to merge
4
commits into
develop
Choose a base branch
from
feature/update-cpp-sdk-canary
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+20
−19
Open
Changes from 3 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,16 +21,22 @@ | |
- @torikizi | ||
- [CHANGE] FakeNetwork 系の機能を削除 | ||
- @melpon | ||
- [CHANGE] CMakeLists の依存から libva と libdrm を削除する | ||
- @zztkm | ||
- [CHANGE] CI の Ubuntu で libba と libdrm をインストールしないようにする | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. これも CHANGE では無さそう There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 4d59593 で UPDATE に修正しました。 |
||
- [UPDATE] Sora C++ SDK を `2024.8.0` に上げる | ||
- それに伴って以下のライブラリのバージョンも上げる | ||
- libwebrtc のバージョンを `m128.6613.2.0` に上げる | ||
- Boost のバージョンを `1.86.0` に上げる | ||
- CMake のバージョンを `3.30.3` に上げる | ||
- libwebrtc のバージョンを `m132.6834.4.0` に上げる | ||
- Boost のバージョンを `1.87.0` に上げる | ||
- CMake のバージョンを `3.30.5` に上げる | ||
- OpenH264 のバージョンを `2.5.0` に上げる | ||
- `#include <rtc_base/helpers.h>` を `#include <rtc_base/crypto_random.h>` に置き換える | ||
- `boost::json::error_code` を `boost::system::error_code` に置き換える | ||
- @melpon @voluntas | ||
- `absl::nullopt` を `std::nullopt` に置き換える | ||
- ZakuroConfig の `sora_data_channel_signaling` と `sora_ignore_disconnect_websocket` の型を `std::optional<bool>` に置き換える | ||
- @melpon @voluntas @zztkm | ||
- [UPDATE] Blend2D, AsmJit を最新版に上げる | ||
- @melpon, torikizi | ||
- @melpon, @torikizi | ||
- [ADD] Ubuntu 24.04 のビルドを追加 | ||
- @melpon | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
ZAKURO_VERSION=2024.2.0-canary.2 | ||
SORA_CPP_SDK_VERSION=2024.8.0-canary.3 | ||
WEBRTC_BUILD_VERSION=m128.6613.2.0 | ||
BOOST_VERSION=1.86.0 | ||
SORA_CPP_SDK_VERSION=2024.8.0-canary.33 | ||
WEBRTC_BUILD_VERSION=m132.6834.4.0 | ||
BOOST_VERSION=1.87.0 | ||
CLI11_VERSION=v2.4.2 | ||
CMAKE_VERSION=3.30.3 | ||
CMAKE_VERSION=3.30.5 | ||
BLEND2D_VERSION=ca5403c1d02b2bc9d2de581e4cb13e5e80f33860 | ||
ASMJIT_VERSION=2e93826348d6cd1325a8b1f7629e193c58332da9 | ||
OPENH264_VERSION=v2.4.1 | ||
OPENH264_VERSION=v2.5.0 | ||
YAML_CPP_VERSION=0.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
libva と libdrm を削除しても既存のシステムは壊れないと思うので、CHANGE では無さそう
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
4d59593 で UPDATE に修正しました。