File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and 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
Original file line number Diff line number Diff line change 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" ) ]
Original file line number Diff line number Diff 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 ( )
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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 ],
You can’t perform that action at this time.
0 commit comments