1.9.1: Fixed issue, where multiple canvases with the same name would only appear once in the scene picker list

This commit is contained in:
Anders Ejlersen 2023-09-10 12:00:09 +02:00
parent be0dfe529a
commit bc63fbe5c3
3 changed files with 18 additions and 2 deletions

View file

@ -1,6 +1,22 @@
# Change Log
All notable changes to this project will be documented in this file.
## [1.9.1] - 2023-09-10
### Fixed
- Fixed issue, where multiple canvases with the same name would only appear once in the list
## [1.9.0] - 2023-08-31
### Added
- Added toolbar button to open preferences and project settings
- Added option to add groups of scenes to open using scene picker
### Fixed
- Fixed issue, where scene picker would display deleted or unsaved scenes and selectable or no label entries
## [1.8.5] - 2023-03-28
### Added

View file

@ -48,7 +48,7 @@ namespace Module.NavigationTool.Editor.Toolbar
continue;
list.Add(root);
listNames.Add(root.name);
listNames.Add($"{i}: {root.name}");
listIds.Add(root.GetInstanceID());
}

View file

@ -1,6 +1,6 @@
{
"name": "com.module.navigationtool",
"version": "1.9.0",
"version": "1.9.1",
"displayName": "Module.NavigationTool",
"description": "Support for navigation tools, like favorites, history and toolbars",
"unity": "2019.2",