Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Update changelog
Update one doc page
  • Loading branch information
Voltstro committed Nov 8, 2022
1 parent 9f9161a commit 6ced6c2
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.1] - 2022-11-08

### Changed
- Updated `package.json`(s)
- Updated CEF to 106.1.1

### Fixed
- Fixed issue with stripped builds
- Fixed some keyboard stuff (on new input system)
- Fixed null reference error related to when engine fails to launch, but UWB has already been destroyed

## [2.0.0] - 2022-10-18

### Added
Expand Down
27 changes: 20 additions & 7 deletions docs/articles/user/Packages.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
# Packages

UWB is separated into four main different types of packages.
UWB is designed to be modular and extended, and as such is split into multiple packages. Each UWB package can be categorized as one of the package types below.

|Package Type |Required? |Description |
|-------------- |---------- |---------------------------------------------------------------------------------------------------- |
|Core ||Core UWB package, provides the heart of UWB |
|Engines ||Provides an Engine |
|Engines Natives|✔ (System)|Provides the native binaries used by an Engine. What ones you install depend on your platform targets|
|Helper ||Provides additional helper/extensions to UWB |
|Package Type |Required? |Description |
|------------- |---------- |---------------------------------------------------------------------------------------------------- |
|Core ||Core UWB package, provides the heart of UWB |
|Engine ||Provides an Engine |
|Engine Native |✔ (System)|Provides the native binaries used by an Engine. What ones you install depend on your platform targets|
|Helper ||Provides additional helper/extensions to UWB |

Most developers will probably only need the 'Core' package, and a single Engine with the Native Windows binaries, like so:

![Packages](~/assets/images/articles/user/packages/StandardPackages.webp)

If you plan on targeting Linux (or are developing on Linux), install the Engine's Linux binaries.

## Package List

Once you have the registry setup, you should be able to see the packages in the package manager. If not try refreshing, or add the packages you need by their ID.

|Package |Package Type |Package ID |
|----------------------------------------------- |------------- |-------------------------------------------------- |
|Unity Web Browser |Core |`dev.voltstro.unitywebbrowser` |
|Unity Web Browser CEF Engine |Engine |`dev.voltstro.unitywebbrowser.engine.cef` |
|Unity Web Browser CEF Engine (Linux x64) |Engine Native |`dev.voltstro.unitywebbrowser.engine.cef.linux.x64`|
|Unity Web Browser CEF Engine (Windows x64) |Engine Native |`dev.voltstro.unitywebbrowser.engine.cef.win.x64` |
|Unity Web Browser Pipes Communication |Helper |`dev.voltstro.unitywebbrowser.communication.pipes` |
|Unity Web Browser Unix Support |Helper |`dev.voltstro.unitywebbrowser.unix-support` |
4 changes: 2 additions & 2 deletions src/Packages/UnityWebBrowser/Runtime/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
[assembly: AssemblyVersion("2.0.1")]
[assembly: AssemblyFileVersion("2.0.1")]

[assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Prj")]
[assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Editor")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ApplicationIcon>chromium-logo.ico</ApplicationIcon>
<Description>External process to handel rendering with CEF</Description>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<Version>2.0.0-106.1.1</Version>
<Version>2.0.1-106.1.1</Version>
<DefineConstants>BROWSER_PROCESS</DefineConstants>
</PropertyGroup>

Expand Down

0 comments on commit 6ced6c2

Please sign in to comment.