Skip to content

Commit ec92d70

Browse files
authored
upgrade 3.0.1-preview (#439)
1 parent fc99f34 commit ec92d70

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

com.unity.renderstreaming/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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+
## [3.0.1] - 2021-03-04
8+
9+
### Fixed
10+
11+
- Fixed a script error when importing the package sample
12+
13+
### Changed
14+
15+
- `Camerastreamer` uses a `TargetTexture` on the `Camera` component if the `RenderTexture` is attached on the `Camera`.
16+
717
## [3.0.0] - 2021-03-02
818

919
Version 3.0.0 has a big change in the package design. This mainly addresses moving scripts from the sample folder to Package Manager.

com.unity.renderstreaming/Documentation~/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Check Package Manager window, Click `+` button and select `Add package from git
4040
Input the string below to the input field.
4141

4242
```
43-
[email protected].0-preview.1
43+
4444
```
4545

4646
The list of version string is [here](https://github.com/Unity-Technologies/com.unity.renderstreaming/tags). In most cases, the latest version is recommended to use.

com.unity.renderstreaming/Editor/WebAppDownloader.cs

+1-1
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 = "3.0.0-preview.1";
10+
const string LatestKnownVersion = "3.0.1-preview";
1111

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

com.unity.renderstreaming/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.renderstreaming",
33
"displayName": "Unity Render Streaming",
4-
"version": "3.0.0-preview.1",
4+
"version": "3.0.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": {

0 commit comments

Comments
 (0)