Skip to content

Commit f673c04

Browse files
committed
fix: meta files
1 parent 3990fbe commit f673c04

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.MD

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.2.3]
10+
### Fixes
11+
- `[SOCItemEditorOptions]` now has the option to limit the displayed items to the collection selected in a given field using the ConstrainToCollectionField parameter.
12+
- `[SOCItemEditorOptions]` now has the option to fire a callback when a value is selected using the OnSelectCallbackMethod parameter.
13+
- Replaced the implementation of the `[DidReloadScripts]` by the `AssetPostprocessor` to deal with importing errors on newer unity version
14+
- Fixed issue where trying to add new custom items to a collection was not showing the create custom type properly
915

1016
## [2.2.2]
1117
### Fixes
@@ -507,6 +513,7 @@ public bool IsValidConsumable(Consumable consumable)
507513
### Added
508514
- First initial working version
509515

516+
[2.2.3]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.2.3
510517
[2.2.2]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.2.2
511518
[2.1.0]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.1.0
512519
[2.0.9]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.0.9

Scripts/Editor/CustomEditors/CollectionCustomEditor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
using System.IO;
4+
using JetBrains.Annotations;
45
using UnityEditor;
56
using UnityEditor.Callbacks;
67
using UnityEditor.Compilation;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.brunomikoski.scriptableobjectcollection",
33
"displayName": "Scriptable Object Collection",
4-
"version": "2.2.2",
4+
"version": "2.2.3",
55
"unity": "2021.2",
66
"description": "A library to help improve the usability of Unity3D Scriptable Objects by grouping them into a collection and exposing them by code or nice inspectors!",
77
"keywords": [

0 commit comments

Comments
 (0)