mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-21 23:58:49 -05:00
v4.4..7
This commit is contained in:
parent
2d2ae9b12f
commit
d3da0409e9
@ -6,6 +6,13 @@
|
||||
💅 = Polish
|
||||
🚀 = New features
|
||||
|
||||
# 4.4.7 (August 4, 2023)
|
||||
|
||||
## 🐛 Bug fixes
|
||||
- [#422](https://github.com/unity-atoms/unity-atoms/pull/422) make FSM compatible with disabled domain reload ([@soraphis](https://github.com/soraphis))
|
||||
- [#420](https://github.com/unity-atoms/unity-atoms/pull/420) AtomValueList disabled domain reload compatibility ([@soraphis](https://github.com/soraphis))
|
||||
- [#421](https://github.com/unity-atoms/unity-atoms/pull/421) Handling dead references when resetting objects ([@soraphis](https://github.com/soraphis) and [@AdamRamberg](https://github.com/AdamRamberg))
|
||||
|
||||
# 4.4.6 (July 22, 2023)
|
||||
|
||||
## 🐛 Bug fixes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-base-atoms",
|
||||
"displayName": "Unity Atoms Base Atoms",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Base set of Atoms based on Unity Atoms Core.",
|
||||
"keywords": [
|
||||
@ -22,6 +22,6 @@
|
||||
"dependencies": {
|
||||
"com.unity.modules.physics": "1.0.0",
|
||||
"com.unity.modules.physics2d": "1.0.0",
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-core",
|
||||
"displayName": "Unity Atoms Core",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Tiny modular pieces utilizing the power of Scriptable Objects",
|
||||
"keywords": [
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-fsm",
|
||||
"displayName": "Unity Atoms FSM",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Simple FSM using Unity Atoms.",
|
||||
"keywords": [
|
||||
@ -20,7 +20,7 @@
|
||||
"/Documentation.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-input-system",
|
||||
"displayName": "Unity Atoms Input System",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Unity Atoms with Unity's Input System.",
|
||||
"keywords": [
|
||||
@ -18,8 +18,8 @@
|
||||
"/Editor.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7",
|
||||
"com.unity.inputsystem": "1.0.1"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-mobile",
|
||||
"displayName": "Unity Atoms Mobile",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Unity Atoms for your mobile project.",
|
||||
"keywords": [
|
||||
@ -20,7 +20,7 @@
|
||||
"/Documentation.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-mono-hooks",
|
||||
"displayName": "Unity Atoms Mono Hooks",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Hook into Unity's lifecycle methods with Atom Events.",
|
||||
"keywords": [
|
||||
@ -21,7 +21,7 @@
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity.ugui": "1.0.0",
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-scene-mgmt",
|
||||
"displayName": "Unity Atoms Scene Mgmt",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "Unity Atoms to manage your scenes.",
|
||||
"keywords": [
|
||||
@ -20,7 +20,7 @@
|
||||
"/Documentation.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-tags",
|
||||
"displayName": "Unity Atoms Tags",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "A replacement to Unity´s tags based on Unity Atoms.",
|
||||
"keywords": [
|
||||
@ -18,7 +18,7 @@
|
||||
"/Documentation.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms-ui",
|
||||
"displayName": "Unity Atoms UI",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"unity": "2018.3",
|
||||
"description": "UI system using Unity Atoms.",
|
||||
"keywords": [
|
||||
@ -18,7 +18,7 @@
|
||||
"/Documentation.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6"
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7"
|
||||
}
|
||||
}
|
||||
|
18
README.md
18
README.md
@ -57,15 +57,15 @@ Add the following to your `manifest.json` (which is located under your project l
|
||||
],
|
||||
"dependencies": {
|
||||
...
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-fsm": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-mobile": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-mono-hooks": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-tags": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-scene-mgmt": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-ui": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-input-system": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-fsm": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-mobile": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-mono-hooks": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-tags": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-scene-mgmt": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-ui": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-input-system": "4.4.7",
|
||||
...
|
||||
}
|
||||
}
|
||||
|
@ -35,15 +35,15 @@ Add the following to your `manifest.json`:
|
||||
],
|
||||
"dependencies": {
|
||||
...
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-fsm": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-mobile": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-mono-hooks": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-tags": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-scene-mgmt": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-ui": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-input-system": "4.4.6",
|
||||
"com.unity-atoms.unity-atoms-core": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-base-atoms": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-fsm": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-mobile": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-mono-hooks": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-tags": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-scene-mgmt": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-ui": "4.4.7",
|
||||
"com.unity-atoms.unity-atoms-input-system": "4.4.7",
|
||||
...
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "com.unity-atoms.unity-atoms",
|
||||
"displayName": "Unity Atoms",
|
||||
"version": "4.4.6",
|
||||
"version": "4.4.7",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user