Skip to content

Commit 3598286

Browse files
committed
Release branch update and readme update
1 parent c3456b9 commit 3598286

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CMake/Dependencies/libkvsCommonLws-CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include(ExternalProject)
66

77
ExternalProject_Add(libkvsCommonLws-download
88
GIT_REPOSITORY https://github.com/awslabs/amazon-kinesis-video-streams-producer-c.git
9-
GIT_TAG ab3b6331594dfbd0a59686dfb8dc4938bc86da1a
9+
GIT_TAG 7d1b76f53680c1e23afb6f35f0cca97ccdb35e3f
1010
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/build
1111
CMAKE_ARGS
1212
-DCMAKE_INSTALL_PREFIX=${OPEN_SRC_INSTALL_PREFIX}

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(CheckIncludeFiles)
55
include(CheckFunctionExists)
66

77
# The version MUST be updated before every release
8-
project(KinesisVideoWebRTCClient VERSION 1.7.3 LANGUAGES C)
8+
project(KinesisVideoWebRTCClient VERSION 1.8.0 LANGUAGES C)
99

1010
# User Flags
1111
option(ADD_MUCLIBC "Add -muclibc c flag" OFF)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55

66
<h4 align="center">Pure C WebRTC Client for Amazon Kinesis Video Streams </h4>
77

8-
<p align="center">
9-
<a href="https://codecov.io/gh/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c"> <img src="https://codecov.io/gh/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c/branch/master/graph/badge.svg" alt="Coverage Status"> </a>
10-
</p>
11-
128
<p align="center">
139
<a href="#key-features">Key Features</a> •
1410
<a href="#build">Build</a> •
@@ -20,6 +16,9 @@
2016
<a href="#license">License</a>
2117
</p>
2218

19+
## New feature announcements
20+
Please refer to the release notes in [Releases](https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c/releases) page
21+
2322
## Key Features
2423
* Audio/Video Support
2524
- VP8
@@ -80,7 +79,7 @@ These would be applicable if the SDK is being linked with system dependencies in
8079

8180
#### Cross-Compilation
8281

83-
If you wish to cross-compile `CC` and `CXX` are respected when building the library and all its dependencies. You will also need to set `BUILD_OPENSSL_PLATFORM`, `BUILD_LIBSRTP_HOST_PLATFORM` and `BUILD_LIBSRTP_DESTINATION_PLATFORM`. See our [.travis.yml](.travis.yml) for an example of this. Every commit is cross compiled to ensure that it continues to work.
82+
If you wish to cross-compile `CC` and `CXX` are respected when building the library and all its dependencies. You will also need to set `BUILD_OPENSSL_PLATFORM`, `BUILD_LIBSRTP_HOST_PLATFORM` and `BUILD_LIBSRTP_DESTINATION_PLATFORM`. See our codecov.io for an example of this. Every commit is cross compiled to ensure that it continues to work.
8483

8584
#### Static Builds
8685

@@ -172,6 +171,7 @@ Set up the desired log level. The log levels and corresponding values currently
172171
5. `LOG_LEVEL_ERROR` ---- 5
173172
6. `LOG_LEVEL_FATAL` ---- 6
174173
7. `LOG_LEVEL_SILENT` ---- 7
174+
8. `LOG_LEVEL_PROFILE` ---- 8
175175

176176
To set a log level, run the following command:
177177
```
@@ -185,7 +185,7 @@ export AWS_KVS_LOG_LEVEL = 2 switches on DEBUG level logs while runnning the sam
185185

186186
Note: The default log level is `LOG_LEVEL_WARN`.
187187

188-
Starting v1.7.x (**TO_BE_UPDATED**), by default, the SDK creates a log file that would have execution timing details of certain steps in connection establishment. It would be stored in the `build` directory as `kvsFileLogFilter.x`. In case you do not want to use defaults, you can modify certain parameters such as log file directory, log file size and file rotation index in the `createFileLoggerWithLevelFiltering` function in the samples.
188+
Starting v1.8.0, by default, the SDK creates a log file that would have execution timing details of certain steps in connection establishment. It would be stored in the `build` directory as `kvsFileLogFilter.x`. In case you do not want to use defaults, you can modify certain parameters such as log file directory, log file size and file rotation index in the `createFileLoggerWithLevelFiltering` function in the samples.
189189
In addition to these logs, if you would like to have other level logs in a file as well, run:
190190

191191
```

0 commit comments

Comments
 (0)