Skip to content

Commit

Permalink
Merge branch 'master' into 'release'
Browse files Browse the repository at this point in the history
Release 2.2.4

See merge request voltstro-studios/uwb/unitywebbrowser!7
  • Loading branch information
Voltstro committed Oct 26, 2024
2 parents fe8bbac + a9d9762 commit cca549e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.2.4] - 2024-10-26

### Fixed

- Fix Windows job handle names being the same (#358)

## [2.2.3] - 2024-10-20

### Added
Expand Down
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.2.3")]
[assembly: AssemblyFileVersion("2.2.3")]
[assembly: AssemblyVersion("2.2.4")]
[assembly: AssemblyFileVersion("2.2.4")]

[assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Prj")]
[assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Editor")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public WindowProcess()
{
//Job handle code from SO
//https://stackoverflow.com/questions/3342941/kill-child-process-when-parent-process-is-killed
string jobName = "UWBChildProcesses" + System.Diagnostics.Process.GetCurrentProcess().Id;
string jobName = "UWBChildProcesses" + Guid.NewGuid().ToString("N");
jobHandle = CreateJobObject(IntPtr.Zero, jobName);

JOBOBJECT_BASIC_LIMIT_INFORMATION info = new()
Expand Down
2 changes: 1 addition & 1 deletion src/Packages/UnityWebBrowser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dev.voltstro.unitywebbrowser",
"displayName": "Unity Web Browser",
"description": "Unity Web Browser (UWB) is a Unity package that allows displaying and interacting with the web from within Unity.",
"version": "2.2.3",
"version": "2.2.4",
"unity": "2021.3",
"author": {
"name": "Voltstro",
Expand Down
2 changes: 1 addition & 1 deletion src/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.2.3",
"version": "2.2.4",
"publicReleaseRefSpec": [
"^refs/heads/release$"
],
Expand Down

0 comments on commit cca549e

Please sign in to comment.