Skip to content

Commit

Permalink
fix: meta files
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomikoski committed Feb 28, 2024
1 parent 3990fbe commit f673c04
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

## [2.2.2]
### Fixes
Expand Down Expand Up @@ -507,6 +513,7 @@ public bool IsValidConsumable(Consumable consumable)
### Added
- First initial working version

[2.2.3]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.2.3
[2.2.2]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.2.2
[2.1.0]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.1.0
[2.0.9]: https://github.com/badawe/ScriptableObjectCollection/releases/tag/v2.0.9
Expand Down
1 change: 1 addition & 0 deletions Scripts/Editor/CustomEditors/CollectionCustomEditor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using JetBrains.Annotations;
using UnityEditor;
using UnityEditor.Callbacks;
using UnityEditor.Compilation;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.brunomikoski.scriptableobjectcollection",
"displayName": "Scriptable Object Collection",
"version": "2.2.2",
"version": "2.2.3",
"unity": "2021.2",
"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!",
"keywords": [
Expand Down

0 comments on commit f673c04

Please sign in to comment.