Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ioppermann committed Nov 14, 2022
2 parents 8a45e4c + 7fcc5bb commit 6638b42
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Restreamer-UI

## v1.5.0 > v1.5.1

- Fix FFmpeg version check for RTSP sources (datarhei/restreamer#455)
- Fix requires Core >= v16.11.0 and FFmpeg >= 5.1.0

## v1.4.0 > v1.5.0

- Add changelog viewer
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "restreamer-ui",
"version": "1.5.0",
"bundle": "restreamer-v2.4.0",
"version": "1.5.1",
"bundle": "restreamer-v2.4.1",
"private": false,
"license": "Apache-2.0",
"dependencies": {
Expand Down Expand Up @@ -89,4 +89,4 @@
"react-error-overlay": "^6.0.11"
},
"resolutions": {}
}
}
4 changes: 2 additions & 2 deletions src/version.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pkg from '../package.json';

const Core = '^16.10.1';
const FFmpeg = '^4.1.0 || ^5.0.0';
const Core = '^16.11.0';
const FFmpeg = '^5.1.0';
const UI = pkg.bundle ? pkg.bundle : pkg.name + ' v' + pkg.version;
const Version = pkg.version;

Expand Down
3 changes: 2 additions & 1 deletion src/views/Edit/Sources/Network.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,14 @@ const initSkills = (initialSkills) => {

const skills = {
ffmpeg: {},
formats: {},
protocols: {},
...initialSkills,
};

skills.ffmpeg = {
version: '0.0.0',
...skills.version,
...skills.ffmpeg,
};

skills.formats = {
Expand Down

0 comments on commit 6638b42

Please sign in to comment.