Skip to content

Commit 31f9ded

Browse files
authored
upgrade package version 2.2.1-preview (#355)
(cherry picked from commit 0babb9cba1e34101fc357a365a6ddc607cb4843c)
1 parent afda2fe commit 31f9ded

File tree

15 files changed

+63
-33
lines changed

15 files changed

+63
-33
lines changed

RenderStreamingSampleSrc~/RS_HDRPSampleSrc_1.x/Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"com.unity.test-framework": "1.1.18",
1010
"com.unity.textmeshpro": "2.0.1",
1111
"com.unity.ugui": "1.0.0",
12-
"com.unity.webrtc": "2.2.0-preview",
12+
"com.unity.webrtc": "2.2.1-preview",
1313
"com.unity.modules.ai": "1.0.0",
1414
"com.unity.modules.androidjni": "1.0.0",
1515
"com.unity.modules.animation": "1.0.0",

RenderStreamingSampleSrc~/RS_HDRPSampleSrc_1.x/Packages/packages-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"url": "https://packages.unity.com"
128128
},
129129
"com.unity.webrtc": {
130-
"version": "2.2.0-preview",
130+
"version": "2.2.1-preview",
131131
"depth": 0,
132132
"source": "registry",
133133
"dependencies": {

RenderStreamingSampleSrc~/RS_LegacyRPSampleSrc/Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"com.unity.textmeshpro": "2.0.1",
1515
"com.unity.timeline": "1.2.10",
1616
"com.unity.ugui": "1.0.0",
17-
"com.unity.webrtc": "2.2.0-preview",
17+
"com.unity.webrtc": "2.2.1-preview",
1818
"com.unity.modules.ai": "1.0.0",
1919
"com.unity.modules.androidjni": "1.0.0",
2020
"com.unity.modules.animation": "1.0.0",

RenderStreamingSampleSrc~/RS_LegacyRPSampleSrc/Packages/packages-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
}
128128
},
129129
"com.unity.webrtc": {
130-
"version": "2.2.0-preview",
130+
"version": "2.2.1-preview",
131131
"depth": 0,
132132
"source": "registry",
133133
"dependencies": {

RenderStreamingSampleSrc~/RS_URPSampleSrc/Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"com.unity.textmeshpro": "2.0.1",
1616
"com.unity.timeline": "1.2.10",
1717
"com.unity.ugui": "1.0.0",
18-
"com.unity.webrtc": "2.2.0-preview",
18+
"com.unity.webrtc": "2.2.1-preview",
1919
"com.unity.modules.ai": "1.0.0",
2020
"com.unity.modules.androidjni": "1.0.0",
2121
"com.unity.modules.animation": "1.0.0",

RenderStreamingSampleSrc~/RS_URPSampleSrc/Packages/packages-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
}
156156
},
157157
"com.unity.webrtc": {
158-
"version": "2.2.0-preview",
158+
"version": "2.2.1-preview",
159159
"depth": 0,
160160
"source": "registry",
161161
"dependencies": {

com.unity.renderstreaming/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to com.unity.renderstreaming package will be documented in t
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [2.2.1] - 2020-11-19
8+
9+
### Added
10+
11+
- Added `ReceiveVideo` scene in the sample project
12+
- Added documentation which explains how to customize webapp
13+
14+
### Changed
15+
16+
- Upgrading WebRTC to `2.2.1-preview`
17+
18+
### Fixed
19+
20+
- Fixed `NullPointerException` occurred when `UIController` instance is not attached `SimpleCameraController` component
21+
- Fixed behavior of the editor menu
22+
723
## [2.2.0] - 2020-11-09
824

925
### Changed

com.unity.renderstreaming/Editor/WebAppDownloader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Unity.RenderStreaming.Editor
77
public static class WebAppDownloader
88
{
99
const string URLRoot = "https://github.com/Unity-Technologies/UnityRenderStreaming";
10-
const string LatestKnownVersion = "2.2.0-preview";
10+
const string LatestKnownVersion = "2.2.1-preview";
1111

1212
// TODO::fix release process of webserver runtime.
1313
const string FileNameWebAppForMac = "webserver_mac";

com.unity.renderstreaming/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.unity.renderstreaming",
33
"displayName": "Unity Render Streaming",
4-
"version": "2.2.0-preview",
4+
"version": "2.2.1-preview",
55
"unity": "2019.4",
66
"description": "This is a package for using Unity Render Streaming technology. It contains two samples to use the technology.",
77
"dependencies": {
8-
"com.unity.webrtc": "2.2.0-preview",
8+
"com.unity.webrtc": "2.2.1-preview",
99
"com.unity.inputsystem": "1.0.0"
1010
},
1111
"samples": [ {

com.unity.template.renderstreaming-hd/Packages/com.unity.template.renderstreaming-hd/CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ All notable changes to the render streaming template package will be documented
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [2.2.0] - 2020-11-09
7+
## [2.2.1] - 2020-11-19
8+
9+
### Added
10+
11+
- Added `ReceiveVideo` scene in the sample project
12+
- Added documentation which explains how to customize webapp
13+
14+
### Changed
15+
16+
- Upgrading WebRTC to `2.2.1-preview`
17+
18+
### Fixed
19+
20+
- Fixed `NullPointerException` occurred when `UIController` instance is not attached `SimpleCameraController` component
21+
- Fixed behavior of the editor menu
822

923
### Changed
1024

0 commit comments

Comments
 (0)