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
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
19
19
20
20
21
21
22
+
## [4.1.0] - 2024-06-16
23
+
24
+
### Added
25
+
-`SceneReferenceUnityEventAdapter` class: A utility `MonoBehaviour` that allows using statically provided `SceneReference`s as parameters to a `UnityEvent`.
26
+
- Utility Ignores: A set of settings that allow ignoring certain scenes from having the inline utilities.
27
+
28
+
29
+
22
30
## [4.0.0] - 2024-01-23
23
31
There are fundamental changes to the editor-time behaviour in this release. Please examine carefully before upgrading.
/// If the <see cref="ColoringIgnoreMode"/> is set to <see cref="UtilityIgnoreMode.Patterns"/>, the scenes with paths matching the patterns in this setting will not be colored.<p/>
294
+
/// Make sure to call <see cref="ApplyColoringIgnoresPatterns"/> after modifying this setting via code.
295
+
/// </summary>
296
+
/// <remarks>
297
+
/// The patterns are evaluated together, just like <c>.gitignore</c> files. Each line corresponds to one pattern. The following library is used for matching patterns: <see href="https://github.com/goelhardik/ignore"/><p/>
/// If the <see cref="ToolboxIgnoreMode"/> is set to <see cref="UtilityIgnoreMode.Patterns"/>, the scenes with paths matching the patterns in this setting will not have toolboxes.
306
+
/// Make sure to call <see cref="ApplyToolboxIgnoresPatterns"/> after modifying this setting via code.
conststringpatternsSharedTooltip="The patterns are evaluated together, just like .gitignore files. Each line corresponds to one pattern.\n\nThe following library is used for matching patterns: https://github.com/goelhardik/ignore";
modeTooltip:"The mode of operation for preventing certain scenes from having the inline coloring utility.\n\n• Disabled: Nothing will be ignored.\n\n• List: The scenes with GUIDs in the list will not be colored.\n\n• Patterns: The scenes with paths matching the patterns will not be colored.",
365
+
listTooltip:"The scenes in this list will not be colored.",
366
+
patternsTooltip:$"The scenes with paths matching the patterns in this setting will not be colored.\n\n{patternsSharedTooltip}"
modeTooltip:"The mode of operation for preventing certain scenes from having the inline toolbox utility.\n\n• Disabled: Nothing will be ignored.\n\n• List: The scenes with GUIDs in the list will not have toolboxes.\n\n• Patterns: The scenes with paths matching the patterns will not have toolboxes.",
380
+
listTooltip:"The scenes in this list will not have toolboxes.",
381
+
patternsTooltip:$"The scenes with paths matching the patterns in this setting will not have toolboxes.\n\n{patternsSharedTooltip}"
0 commit comments