Skip to content

Commit 0dd6246

Browse files
committed
Release v4.0-b3, 4.0 beta3, v4.0.229, 144393 lines.
1 parent 7796083 commit 0dd6246

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ A big THANK YOU goes to:
130130

131131
## Releases
132132

133+
* 2022-01-13, Release [v4.0-b3](https://github.com/ossrs/srs/releases/tag/v4.0-b3), v4.0-b3, 4.0 beta3, v4.0.229, 144393 lines.
133134
* 2022-01-03, Release [v4.0-b2](https://github.com/ossrs/srs/releases/tag/v4.0-b2), v4.0-b2, 4.0 beta2, v4.0.215, 144278 lines.
134135
* 2021-12-19, Release [v4.0-b1](https://github.com/ossrs/srs/releases/tag/v4.0-b1), v4.0-b1, 4.0 beta1, v4.0.206, 144126 lines.
135136
* 2021-12-01, Release [v4.0-b0](https://github.com/ossrs/srs/releases/tag/v4.0-b0), v4.0-b0, 4.0 beta0, v4.0.201, 144022 lines.

trunk/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM ossrs/srs:dev AS build
33
# Install depends tools.
44
RUN yum install -y gcc make gcc-c++ patch unzip perl git
55

6+
ARG SRS_AUTO_PACKAGER
7+
68
# Build and install SRS.
79
COPY . /srs
810
WORKDIR /srs/trunk

trunk/Dockerfile.pkg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ FROM ossrs/srs:dev
22

33
# version=4.0.145
44
ARG version
5+
ARG SRS_AUTO_PACKAGER
56

67
# Install depends tools.
78
RUN yum install -y zip

trunk/src/main/srs_main_server.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ srs_error_t do_main(int argc, char** argv)
127127
srs_trace2(TAG_MAIN, "%s, %s", RTMP_SIG_SRS_SERVER, RTMP_SIG_SRS_LICENSE);
128128
srs_trace("authors: %s", RTMP_SIG_SRS_AUTHORS);
129129
srs_trace("contributors: %s", SRS_CONSTRIBUTORS);
130-
srs_trace("cwd=%s, work_dir=%s, build: %s, configure: %s, uname: %s, osx: %d",
131-
_srs_config->cwd().c_str(), cwd.c_str(), SRS_BUILD_DATE, SRS_USER_CONFIGURE, SRS_UNAME, SRS_OSX_BOOL);
130+
srs_trace("cwd=%s, work_dir=%s, build: %s, configure: %s, uname: %s, osx: %d, pkg: %s",
131+
_srs_config->cwd().c_str(), cwd.c_str(), SRS_BUILD_DATE, SRS_USER_CONFIGURE, SRS_UNAME, SRS_OSX_BOOL, SRS_PACKAGER);
132132
srs_trace("configure detail: " SRS_CONFIGURE);
133133
#ifdef SRS_EMBEDED_TOOL_CHAIN
134134
srs_trace("crossbuild tool chain: " SRS_EMBEDED_TOOL_CHAIN);

0 commit comments

Comments
 (0)