Skip to content

Commit

Permalink
0.1.0-preview.3 - 2019/02/27
Browse files Browse the repository at this point in the history
@2018.1
  • Loading branch information
ErikMoczi committed Mar 8, 2019
1 parent d813fad commit 946b0cb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion package/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ 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).

## [0.1.0-preview.2] - 2019.02.22
## [0.1.0-preview.3] - 2019-02-27

### Small code update in sample.

## [0.1.0-preview.2] - 2019-02-22

### Rebuild meta files.

Expand Down
2 changes: 1 addition & 1 deletion package/Samples~/Editor/SettingsExamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MySettingsExamples : EditorWindow
static MySetting<Vector2> s_Vector2Value = new MySetting<Vector2>("general.vector2Value", new Vector2(2f, 4f));

[UserSetting("General Settings", "Editor Flags")]
static MySetting<StaticEditorFlags> s_EditorFlags = new MySetting<StaticEditorFlags>("general.editorFlags", StaticEditorFlags.LightmapStatic);
static MySetting<StaticEditorFlags> s_EditorFlags = new MySetting<StaticEditorFlags>("general.editorFlags", StaticEditorFlags.BatchingStatic);
#pragma warning restore 414

// [UserSetting] with no arguments simply registers the key with UserSettingsProvider so that it can be included
Expand Down
11 changes: 5 additions & 6 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "com.unity.settings-manager",
"displayName":"Settings Manager",
"version": "0.1.0-preview.2",
"displayName": "Settings Manager",
"version": "0.1.0-preview.3",
"unity": "2018.1",
"description": "A framework for making any serializable field a setting, complete with a pre-built settings interface.",
"dependencies": {
},
"dependencies": {},
"samples": [
{
"displayName":"User Settings Example",
"displayName": "User Settings Example",
"description": "Example code showing use of the Settings Manager attributes.",
"path": "Samples~"
"path": "Samples~"
}
]
}
1 change: 1 addition & 0 deletions versions.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
0.1.0-preview.0
0.1.0-preview.2
0.1.0-preview.3

0 comments on commit 946b0cb

Please sign in to comment.