Skip to content

Commit c935f9c

Browse files
committed
Release v5.15.15
1 parent 9faff9b commit c935f9c

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

DEVELOPER.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1211,9 +1211,10 @@ The following are the update records for the Oryx server.
12111211
* Dubbing: Support scrolling card in fullscreen. v5.15.9
12121212
* Support external redis host and using 127.0.0.1 as default. v5.15.10
12131213
* Support setup global OpenAI settings. [v5.15.11](https://github.com/ossrs/oryx/releases/tag/v5.15.11)
1214-
* Add youtube-dl binary. v5.15.12
1214+
* Add youtube-dl binary for dubbing etc. v5.15.12
12151215
* VLive: Fix bug when source codec is not supported. v5.15.13
12161216
* Forward: Fix high CPU bug. v5.15.14
1217+
* Support Go PPROF for CPU profiling. [v5.15.15](https://github.com/ossrs/oryx/releases/tag/v5.15.15)
12171218
* v5.14:
12181219
* Merge features and bugfix from releases. v5.14.1
12191220
* Dubbing: Support VoD dubbing for multiple languages. [v5.14.2](https://github.com/ossrs/oryx/releases/tag/v5.14.2)
@@ -1242,7 +1243,9 @@ The following are the update records for the Oryx server.
12421243
* Update model to gpt-3.5-turbo, gpt-4-turbo, gpt-4o. v5.14.20
12431244
* Transcript: Upgrade the hls.js to 1.4 for WebVTT. v5.14.21
12441245
* Disable version query and check. [v5.14.22](https://github.com/ossrs/oryx/releases/tag/v5.14.22)
1245-
* Forward: Fix high CPU bug. [v5.14.23](https://github.com/ossrs/oryx/releases/tag/v5.14.23)
1246+
* Support Go PPROF for CPU profiling. v5.14.23
1247+
* Forward: Fix high CPU bug. v5.14.24
1248+
* VLive: Refine wait timeout. [v5.14.25](https://github.com/ossrs/oryx/releases/tag/v5.14.25)
12461249
* v5.13:
12471250
* Fix bug for vlive and transcript. v5.13.1
12481251
* Support AWS Lightsail install script. v5.13.2

platform/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"flag"
99
"fmt"
1010
"net/http"
11+
_ "net/http/pprof"
1112
"os"
1213
"os/signal"
1314
"path"
@@ -16,7 +17,6 @@ import (
1617
"strings"
1718
"syscall"
1819
"time"
19-
_ "net/http/pprof"
2020

2121
"github.com/ossrs/go-oryx-lib/errors"
2222
"github.com/ossrs/go-oryx-lib/logger"

platform/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
package main
77

88
// The version for platform.
9-
const version = "v5.15.11"
9+
const version = "v5.15.15"

scripts/setup-aapanel/info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title": "Oryx",
33
"name": "oryx",
44
"ps": "Oryx(SRS Stack) is an all-in-one, out-of-the-box, and open-source video solution for creating online video services, including live streaming and WebRTC, on the cloud or through self-hosting. Built with SRS, FFmpeg, and WebRTC, it supports various protocols and offers features like authentication, multi-platform streaming, recording, transcoding, virtual live events, AI transcription, AI assistant, Video Dubbing, automatic HTTPS, and HTTP Open API.",
5-
"versions": "5.15.11",
5+
"versions": "5.15.15",
66
"checks": "/www/server/panel/plugin/oryx",
77
"author": "Winlin",
88
"home": "https://github.com/ossrs/oryx"

scripts/setup-bt/info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title": "Oryx",
33
"name": "oryx",
44
"ps": "Oryx(SRS Stack)让你一键拥有自己的视频云解决方案,可以在云上或私有化部署,支持丰富的音视频协议,提供鉴权、私人直播间、多平台转播、录制、转码、虚拟直播、AI字幕、直播间AI助手、视频翻译、自动HTTPS、开放API等丰富功能,基于SRS、FFmpeg和WebRTC构建。",
5-
"versions": "5.15.11",
5+
"versions": "5.15.15",
66
"checks": "/www/server/panel/plugin/oryx",
77
"author": "Winlin",
88
"home": "https://github.com/ossrs/oryx"

scripts/setup-droplet/srs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"do_token": "{{env `DIGITALOCEAN_TOKEN`}}",
44
"image_name": "srs-5-snapshot-{{timestamp}}",
55
"application_name": "SRS",
6-
"application_version": "5.15.11"
6+
"application_version": "5.15.15"
77
},
88
"sensitive-variables": ["do_token"],
99
"builders": [

0 commit comments

Comments
 (0)