Skip to content

Commit

Permalink
Update version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexxIT committed Jul 11, 2023
1 parent 1e0952b commit b5d40ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion internal/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"gopkg.in/yaml.v3"
)

var Version = "1.5.0"
var Version = "1.6.0"
var UserAgent = "go2rtc/" + Version

var ConfigPath string
Expand Down
12 changes: 6 additions & 6 deletions www/video-rtc.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/**
* Video player for go2rtc streaming application.
* VideoRTC v1.6.0 - Video player for go2rtc streaming application.
*
* All modern web technologies are supported in almost any browser except Apple Safari.
*
* Support:
* - ECMAScript 2017 (ES8) = ES6 + async
* - RTCPeerConnection for Safari iOS 11.0+
* - IntersectionObserver for Safari iOS 12.2+
*
* Doesn't support:
* - MediaSource for Safari iOS all
* - Customized built-in elements (extends HTMLVideoElement) because all Safari
* - Public class fields because old Safari (before 14.0)
* - Autoplay for Safari
* - MediaSource for Safari iOS
* - Customized built-in elements (extends HTMLVideoElement) because Safari
* - Autoplay for WebRTC in Safari
*/
export class VideoRTC extends HTMLElement {
constructor() {
Expand All @@ -27,7 +27,7 @@ export class VideoRTC extends HTMLElement {
'hvc1.1.6.L153.B0', // H.265 main 5.1 (Chromecast Ultra)
'mp4a.40.2', // AAC LC
'mp4a.40.5', // AAC HE
'null', // for detecting liars (old iOS 12)
'null', // for detecting liars (Safari iOS 12)
'flac', // FLAC (PCM compatible)
'opus', // OPUS Chrome, Firefox
];
Expand Down

0 comments on commit b5d40ca

Please sign in to comment.