Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions com.unity.renderstreaming/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to com.unity.renderstreaming package will be documented in t
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [3.0.1] - 2021-03-04

### Fixed

- Fixed a script error when importing the package sample

### Changed

- `Camerastreamer` uses a `TargetTexture` on the `Camera` component if the `RenderTexture` is attached on the `Camera`.

## [3.0.0] - 2021-03-02

Version 3.0.0 has a big change in the package design. This mainly addresses moving scripts from the sample folder to Package Manager.
Expand Down
2 changes: 1 addition & 1 deletion com.unity.renderstreaming/Documentation~/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Check Package Manager window, Click `+` button and select `Add package from git
Input the string below to the input field.

```
com.unity.renderstreaming@3.0.0-preview.1
com.unity.renderstreaming@3.0.1-preview
```

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.
Expand Down
2 changes: 1 addition & 1 deletion com.unity.renderstreaming/Editor/WebAppDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Unity.RenderStreaming.Editor
public static class WebAppDownloader
{
const string URLRoot = "https://github.com/Unity-Technologies/UnityRenderStreaming";
const string LatestKnownVersion = "3.0.0-preview.1";
const string LatestKnownVersion = "3.0.1-preview";

// TODO::fix release process of webserver runtime.
const string FileNameWebAppForMac = "webserver_mac";
Expand Down
2 changes: 1 addition & 1 deletion com.unity.renderstreaming/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.unity.renderstreaming",
"displayName": "Unity Render Streaming",
"version": "3.0.0-preview.1",
"version": "3.0.1-preview",
"unity": "2019.4",
"description": "This is a package for using Unity Render Streaming technology. It contains two samples to use the technology.",
"dependencies": {
Expand Down