Skip to content

Commit 4b068b9

Browse files
committed
update:read me and document
1 parent debde6f commit 4b068b9

File tree

6 files changed

+34
-13
lines changed

6 files changed

+34
-13
lines changed

.github/workflows/macbuild.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,12 @@ jobs:
8282
- name: test
8383
run: |
8484
cd XEngine_Release
85-
sudo launchctl limit core unlimited
86-
sudo sysctl -w kern.corefile=coredump
87-
set +e
88-
./XEngine_StreamMediaApp -t
89-
ls -al
90-
lldb ./XEngine_StreamMediaApp ./coredump
91-
set -e
85+
ulimit -c unlimited
86+
sudo sysctl -w kern.corefile=/cores/core.%P
87+
./XEngine_StreamMediaApp -t || true
88+
ls -l /cores
89+
LATEST_CORE=$(ls -t /cores/core.* | head -1)
90+
lldb -c $LATEST_CORE -o 'bt all' -o 'exit'
9291
9392
- name: Upload folder as artifact with mac x64
9493
if: matrix.os == 'macos-13'

CHANGELOG

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
XEngine_StreamMedia V2.10.0.1001
2+
3+
增加:windows coredump支持
4+
更新:匹配XEngineV9版本支持
5+
更新:CI支持更多发布类型
6+
更新:依赖库
7+
更新:升级编译器版本
8+
优化:获取报告次数
9+
修改:vs2022的ansi字符集改为unicode字符集
10+
修正:其他语言系统乱码问题
11+
修正:编译选项的问题
12+
13+
added:windows core-dump support
14+
update:match xengine v9.x support
15+
update:workflows more release support
16+
update:depend library
17+
update:compiler version to c++20 and c17
18+
improved:get report count
19+
modify:character-set to unicode from ansi on vs
20+
fixed:Garbled characters on other language system
21+
fixed:problem that build flags
22+
=======================================================
123
XEngine_StreamMedia V2.9.0.1001
224

325
增加:音频编解码器和重采样支持

README.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ Play Stream:
5151

5252
#### XEngine environment
5353
you have to install xengine before complie,You can refer to its Readme document
54-
GITEE:https://gitee.com/xyry/libxengine
55-
GITHUB:https://github.com/libxengine/xengine
54+
GITEE:https://gitee.com/libxengine/libxengine
55+
GITHUB:https://github.com/libxengine/libxengine
5656

5757
#### fast to deployment
58-
git clone https://gitee.com/xyry/libxengine.git or git clone https://github.com/libxengine/xengine.git
58+
git clone https://gitee.com/libxengine/libxengine.git or git clone https://github.com/libxengine/libxengine.git
5959
window Exection XEngine_WINEnv.bat
6060
Linux Exection:sudo ./XEngine_LINEnv.sh -i 3
6161
Macos Exection:./XEngine_LINEnv.sh -i 3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ c c++ streammedia server
5555
#### XEngine环境
5656

5757
在编译之前必须安装XEngine,可以参考其Readme文档
58-
GITEE:https://gitee.com/xyry/libxengine
59-
GITHUB:https://github.com/libxengine/xengine
58+
GITEE:https://gitee.com/libxengine/libxengine
59+
GITHUB:https://github.com/libxengine/libxengine
6060

6161
#### 快速部署
6262

63-
git clone https://gitee.com/xyry/libxengine.git 或者 git clone https://github.com/libxengine/xengine.git
63+
git clone https://gitee.com/libxengine/libxengine.git 或者 git clone https://github.com/libxengine/libxengine.git
6464
window执行XEngine_WINEnv.bat 脚本
6565
Linux执行:sudo ./XEngine_LINEnv.sh -i 3
6666
macos执行:./XEngine_LINEnv.sh -i 3

XEngine_Docment/Docment_en.docx

4.32 KB
Binary file not shown.

XEngine_Docment/Docment_zh.docx

4.37 KB
Binary file not shown.

0 commit comments

Comments
 (0)