You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## [2.2.1] - 2024-10-06
8
+
9
+
### Added
10
+
11
+
- Added Incognito mode
12
+
13
+
### Changed
14
+
15
+
- Updated CEF to 129.0.11
16
+
- CachePath can only be set before HasInitialized
17
+
- LogPath can only be set before HasInitialized
18
+
- Change some path building to use `Path.Combine` instead
19
+
20
+
### Deprecated
21
+
22
+
- Cache control is no longer used. A cache path will always be used now. To use a incognito/private mode, where no profile-specific data is persisted to disk, set incognito mode to true.
23
+
24
+
### Fixed
25
+
26
+
- Do not pass proxy settings if ProxyServer is false
Copy file name to clipboardExpand all lines: docs/articles/dev/dev-guide.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,3 @@ To setup UWB's git repo, see the [setup section](setup.md).
14
14
## Developing
15
15
16
16
When developing for UWB, it is highly recommended to develop using the `src/UnityWebBrowser.UnityProject` project provided in the repo. Other means of development will **NOT** be supported! Even if you are creating an external separate package for UWB, it is still recommended to develop using the provided project in the repo! We recommend this approach as the Unity project has all dependencies ready to go, all the tools, and proper projects setup for the code (both Engine and Core).
Copy file name to clipboardExpand all lines: docs/articles/user/setup.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ To know what packages you need, checkout the [packages section](packages.md).
53
53
54
54
Most developers will probably only need the 'Core' package, and a single engine with it's native Windows binaries. A basic installation might look like this.
Copy file name to clipboardExpand all lines: src/Packages/UnityWebBrowser/Runtime/Core/WebBrowserClient.cs
+31-26Lines changed: 31 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -103,8 +103,17 @@ public Resolution Resolution
103
103
/// Enable or disable the cache
104
104
/// </summary>
105
105
[Tooltip("Enable or disable the cache")]
106
+
[Obsolete("Cache control is no longer used. A cache path will always be used now. To use a incognito/private mode, where no profile-specific data is persisted to disk, set incognitoMode to true.")]
107
+
[HideInInspector]
106
108
publicboolcache=true;
107
109
110
+
/// <summary>
111
+
/// Enable or disable incognito/private mode.
112
+
/// When true, no profile-specific data is persisted to disk, but cache is sill used to persist installation-specific data.
113
+
/// </summary>
114
+
[Tooltip("Enable or disable incognito/private mode. When true, no profile-specific data is persisted to disk, but cache is still used to persist installation-specific data.")]
115
+
publicboolincognitoMode;
116
+
108
117
/// <summary>
109
118
/// Enable or disable WebRTC
110
119
/// </summary>
@@ -200,16 +209,15 @@ public Resolution Resolution
0 commit comments