mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-21 23:58:49 -05:00
Changelog + assembly fixes
This commit is contained in:
parent
70f8130797
commit
f855767c8e
14
CHANGELOG.md
14
CHANGELOG.md
@ -8,14 +8,24 @@
|
||||
|
||||
# [Unreleased]
|
||||
|
||||
# 4.2.0 (June 20, 2020)
|
||||
|
||||
## 🐛 Bug fixes
|
||||
|
||||
- [#145](https://github.com/AdamRamberg/unity-atoms/pull/145) Removed duplicate check before adding an item to the list ([@mnarimani](https://github.com/mnarimani))
|
||||
- [#147](https://github.com/AdamRamberg/unity-atoms/pull/147) Fix code generation bug ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
- [#155](https://github.com/AdamRamberg/unity-atoms/pull/155) Fixing drawer for generated reference of complex struct type ([@bguyl](https://github.com/bguyl)
|
||||
- Fix bug where usage popup sometimes were hidden. ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
- [#160](https://github.com/AdamRamberg/unity-atoms/issues/160) Hook up OnFixedUpdate handler. ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
|
||||
## 📝 Documentation
|
||||
|
||||
- [#152](https://github.com/AdamRamberg/unity-atoms/pull/152) Add the [Serializable] attribute in the doc ([@bguyl](https://github.com/bguyl)
|
||||
|
||||
## 🏠 Internal
|
||||
|
||||
- Upgraded Example project to Unity version 2019.3.10f1. ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
- Upgraded Example project to Unity version 2019.3.15f1. ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
- Add GetParent / GetValue extenstions for SerializedProperty. ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
|
||||
## 💅 Polish
|
||||
|
||||
@ -25,6 +35,8 @@
|
||||
## 🚀 New features
|
||||
|
||||
- [#125](https://github.com/AdamRamberg/unity-atoms/issues/125) Add booleans to decide if Changed and/or ChangedWithHistory Events are triggered on AtomVariable OnEnable ([@iruizmar](https://github.com/iruizmar))
|
||||
- [#157](https://github.com/AdamRamberg/unity-atoms/pull/157) Added forceEvent parameter for SetValue function on AtomVariable ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
- [#159](https://github.com/AdamRamberg/unity-atoms/pull/159) Debug events by displaying stack traces for events. ([@AdamRamberg](https://github.com/AdamRamberg))
|
||||
|
||||
# 4.1.0 (April 3, 2020)
|
||||
|
||||
|
@ -107,3 +107,12 @@ Update Mode: updateDependencies
|
||||
The following packages were updated:
|
||||
com.unity.ide.vscode from version 1.1.3 to 1.1.4
|
||||
com.unity.test-framework from version 1.1.11 to 1.1.13
|
||||
|
||||
=== Sat Jun 20 00:18:47 2020
|
||||
|
||||
Packages were changed.
|
||||
Update Mode: updateDependencies
|
||||
|
||||
The following packages were updated:
|
||||
com.unity.ide.vscode from version 1.1.3 to 1.2.0
|
||||
com.unity.test-framework from version 1.1.13 to 1.1.14
|
||||
|
@ -14,7 +14,7 @@
|
||||
"com.unity.2d.tilemap": "1.0.0",
|
||||
"com.unity.ext.nunit": "1.0.0",
|
||||
"com.unity.ide.rider": "1.1.4",
|
||||
"com.unity.ide.vscode": "1.1.3",
|
||||
"com.unity.ide.vscode": "1.2.0",
|
||||
"com.unity.test-framework": "1.1.13",
|
||||
"com.unity.ugui": "1.0.0",
|
||||
"com.unity.modules.androidjni": "1.0.0",
|
||||
|
@ -1,2 +1,2 @@
|
||||
m_EditorVersion: 2019.3.10f1
|
||||
m_EditorVersionWithRevision: 2019.3.10f1 (5968d7f82152)
|
||||
m_EditorVersion: 2019.3.15f1
|
||||
m_EditorVersionWithRevision: 2019.3.15f1 (59ff3e03856d)
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "MamboJamboStudios.UnityAtomsBaseAtoms.Runtime",
|
||||
"references": [
|
||||
"GUID:87264ae76e36244ae9adf5b5fbf7ca19",
|
||||
"GUID:14165214884ae4a619bfb290f28194a7"
|
||||
"MamboJamboStudios.UnityAtomsCore.Editor",
|
||||
"MamboJamboStudios.UnityAtomsCore.Runtime"
|
||||
],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
|
@ -1,3 +1,4 @@
|
||||
#if UNITY_2019_1_OR_NEWER
|
||||
using System.Reflection;
|
||||
using NUnit.Framework;
|
||||
using UnityAtoms.BaseAtoms;
|
||||
@ -32,3 +33,4 @@ namespace Tests
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
@ -1,7 +1,6 @@
|
||||
{
|
||||
"name": "MamboJamboStudios.UnityAtomsCore.Runtime",
|
||||
"references": [],
|
||||
"optionalUnityReferences": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
@ -9,5 +8,6 @@
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": []
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
@ -2,7 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
#if UNITY_2019_1_OR_NEWER
|
||||
using UnityEngine.UIElements;
|
||||
#endif
|
||||
|
||||
namespace UnityAtoms
|
||||
{
|
||||
|
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "MamboJamboStudios.UnityAtomsMonoHooks.Editor",
|
||||
"references": [
|
||||
"GUID:14165214884ae4a619bfb290f28194a7",
|
||||
"GUID:87264ae76e36244ae9adf5b5fbf7ca19",
|
||||
"GUID:29492541a59d04a81b47a7f225e8a22d",
|
||||
"GUID:598750ec792e4472396f5fbc092caa65",
|
||||
"GUID:39d90d64ded314c27a72b2586cd86439"
|
||||
"MamboJamboStudios.UnityAtomsCore.Runtime",
|
||||
"MamboJamboStudios.UnityAtomsCore.Editor",
|
||||
"MamboJamboStudios.UnityAtomsBaseAtoms.Runtime",
|
||||
"MamboJamboStudios.UnityAtomsBaseAtoms.Editor",
|
||||
"MamboJamboStudios.UnityAtomsMonoHooks.Runtime"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
|
Loading…
Reference in New Issue
Block a user