From a31c3d3c49e142b9c6b64ba03e92a937531e3dcb Mon Sep 17 00:00:00 2001 From: Hertzole Date: Wed, 17 Jan 2024 18:40:47 +0100 Subject: [PATCH] docs: update readme, changelog, and package urls --- CHANGELOG.md | 7 ++++++- Packages/se.hertzole.scriptable-values/package.json | 5 ++++- README.md | 8 ++++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09f5d87..512427f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ -## [1.3.0] - Unreleased +## [1.3.0] - 2024-01-17 ### Added - Added `SetValueWithoutNotify` to `ValueReference` to allow you to set the value without invoking the change event +- Added `EnsureCapacity` to `ScriptableList` ### Fixed @@ -11,6 +12,10 @@ - Fixed the package not having an author - Fixed allocation when using `foreach` on scriptable lists and dictionaries +### Removed + +- Removed obsolete `ResetValues` from `RuntimeScriptableObject` + ## [1.2.0] - 2023-05-20 ### Added diff --git a/Packages/se.hertzole.scriptable-values/package.json b/Packages/se.hertzole.scriptable-values/package.json index b0a2009..dbdf94c 100644 --- a/Packages/se.hertzole.scriptable-values/package.json +++ b/Packages/se.hertzole.scriptable-values/package.json @@ -2,9 +2,12 @@ "name": "se.hertzole.scriptable-values", "version": "1.3.0", "displayName": "Scriptable Values", - "description": "Set up games using Scriptable Objects.", + "description": "Scriptable Values allow you to use scriptable objects for reactive values, events, and collections instead of normal C# events and singletons.\n\nYou also don't need to care about values being saved between sessions as they are cleared before you enter play mode, but this is also customizable!", "unity": "2021.3", "unityRelease": "0f1", + "changelogUrl": "https://github.com/Hertzole/scriptable-values/blob/master/CHANGELOG.md", + "documentationUrl": "https://github.com/Hertzole/scriptable-values/blob/master/README.md", + "licensesUrl": "https://github.com/Hertzole/scriptable-values/blob/master/LICENSE.md", "keywords": [ "scriptableobject", "scriptable", diff --git a/README.md b/README.md index 950ae70..87a1aff 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ You also don't need to care about values being saved between sessions as they ar - Value reference type for easily picking between a constant value and a scriptable object reference - Automatically collect stack traces to see where your values are set from - Value and event listeners for easily hooking up events in the editor for when value changes/events are invoked +- Supports addressables for scriptable values and events ## 📦 Installation @@ -62,6 +63,9 @@ Otherwise, follow these instructions: 3. Paste in `https://github.com/Hertzole/scriptable-values.git#package` You can also use `https://github.com/Hertzole/scriptable-values.git#dev-package` if you want the latest (but unstable!) changes. + +Also check out my other package [Unity Toolbox](https://github.com/Hertzole/unity-toolbox#subscribe-methods-generator) that can generate subscribe methods for scriptable values and events! + ## 🛠 Usage ### Scriptable Values @@ -346,6 +350,6 @@ public class PauseManager : MonoBehaviour } ``` -## ♥ Support +## 📃 License -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/I2I4IHAK) +[MIT](https://github.com/Hertzole/scriptable-values/blob/master/LICENSE.md) \ No newline at end of file