Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
## [1.0.2] - 2020-02-26

### Bug Fixes

- Fixed obsolete API use in Unity 2019.3.

### Changes

- Update Yamato configuration.
  • Loading branch information
Unity Technologies committed Feb 26, 2020
1 parent eda2bea commit 19a290a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.2] - 2020-02-26

### Bug Fixes

- Fixed obsolete API use in Unity 2019.3.

### Changes

- Update Yamato configuration.

## [1.0.1] - 2019-11-25

### Changes
Expand Down
3 changes: 1 addition & 2 deletions Editor/UserSettingsProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ public UserSettingsProvider(Settings settings, Assembly[] assemblies)
}

#if SETTINGS_PROVIDER_ENABLED

/// <summary>
/// Invoked by the SettingsProvider when activated in the Editor.
/// </summary>
Expand Down Expand Up @@ -410,7 +409,7 @@ void DoContextMenu()

#if UNITY_2019_1_OR_NEWER
menu.AddSeparator("Developer/");
#if UNITY_2020_1_OR_NEWER
#if UNITY_2019_3_OR_NEWER
menu.AddItem(new GUIContent("Developer/Recompile Scripts"), false, EditorUtility.RequestScriptReload);
#else
menu.AddItem(new GUIContent("Developer/Recompile Scripts"), false, UnityEditorInternal.InternalEditorUtility.RequestScriptReload);
Expand Down
2 changes: 1 addition & 1 deletion Tests/.test.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"createSeparatePackage": false
"createSeparatePackage": true
}
3 changes: 3 additions & 0 deletions Tests/Editor/Unity.Settings.Editor.Tests.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"references": [
"Unity.Settings.Editor"
],
"defineConstraints": [
"UNITY_INCLUDE_TESTS"
],
"optionalUnityReferences": [
"TestAssemblies"
],
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"name": "com.unity.settings-manager",
"displayName": "Settings Manager",
"version": "1.0.1",
"version": "1.0.2",
"unity": "2018.3",
"description": "A framework for making any serializable field a setting, complete with a pre-built settings interface.",
"dependencies": {},
"samples": [
{
"displayName": "User Settings Example",
"description": "Example code showing use of the Settings Manager attributes.",
"path": "Samples~"
}
],
"hideInEditor": true,
"repository": {
"footprint": "d4e654a69bb413c96bf81bf09a46685cd55b03b1",
"type": "git",
"url": "git@github.com:Unity-Technologies/com.unity.settings-manager.git",
"revision": "4e1ab5cb77b40205e6bf01d377846a851232c4e3"
"url": "https://github.com/Unity-Technologies/com.unity.settings-manager.git",
"revision": "e8eedc87ca7850bac0f7b2257db4edb8c300a0f3"
}
}

0 comments on commit 19a290a

Please sign in to comment.