Skip to content

Commit cca549e

Browse files
committed
Merge branch 'master' into 'release'
Release 2.2.4 See merge request voltstro-studios/uwb/unitywebbrowser!7
2 parents fe8bbac + a9d9762 commit cca549e

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

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

7+
## [2.2.4] - 2024-10-26
8+
9+
### Fixed
10+
11+
- Fix Windows job handle names being the same (#358)
12+
713
## [2.2.3] - 2024-10-20
814

915
### Added

src/Packages/UnityWebBrowser/Runtime/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
37-
[assembly: AssemblyVersion("2.2.3")]
38-
[assembly: AssemblyFileVersion("2.2.3")]
37+
[assembly: AssemblyVersion("2.2.4")]
38+
[assembly: AssemblyFileVersion("2.2.4")]
3939

4040
[assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Prj")]
4141
[assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Editor")]

src/Packages/UnityWebBrowser/Runtime/Core/Engines/Process/WindowProcess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public WindowProcess()
2121
{
2222
//Job handle code from SO
2323
//https://stackoverflow.com/questions/3342941/kill-child-process-when-parent-process-is-killed
24-
string jobName = "UWBChildProcesses" + System.Diagnostics.Process.GetCurrentProcess().Id;
24+
string jobName = "UWBChildProcesses" + Guid.NewGuid().ToString("N");
2525
jobHandle = CreateJobObject(IntPtr.Zero, jobName);
2626

2727
JOBOBJECT_BASIC_LIMIT_INFORMATION info = new()

src/Packages/UnityWebBrowser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dev.voltstro.unitywebbrowser",
33
"displayName": "Unity Web Browser",
44
"description": "Unity Web Browser (UWB) is a Unity package that allows displaying and interacting with the web from within Unity.",
5-
"version": "2.2.3",
5+
"version": "2.2.4",
66
"unity": "2021.3",
77
"author": {
88
"name": "Voltstro",

src/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "2.2.3",
3+
"version": "2.2.4",
44
"publicReleaseRefSpec": [
55
"^refs/heads/release$"
66
],

0 commit comments

Comments
 (0)