From e29b816b3bd1904f2eeb8ac269e6b23964fa0a4f Mon Sep 17 00:00:00 2001 From: Bill Ramsour Date: Fri, 8 Dec 2017 13:21:28 -0600 Subject: [PATCH] adding asmdef --- .npmignore | 6 ++++++ CHANGELOG.md | 5 ++++- Editor/com.unity.assetbundlebrowser.Editor.asmdef | 10 ++++++++++ Editor/com.unity.assetbundlebrowser.Editor.asmdef.meta | 8 ++++++++ package.json | 2 +- 5 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 .npmignore create mode 100644 Editor/com.unity.assetbundlebrowser.Editor.asmdef create mode 100644 Editor/com.unity.assetbundlebrowser.Editor.asmdef.meta diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..6ea176f --- /dev/null +++ b/.npmignore @@ -0,0 +1,6 @@ +Documentation/ApiDocs/** +.npmrc +.npmignore +.gitignore +QAReport.md +QAReport.md.meta \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index db2fd7b..e760f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ 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.1.4] - 2017-11-09 +## [1.2.0] - 2017-12-08 +- Added asmdef to keep browser in its own assembly +- minor null check fixes +## [1.1.4] - 2017-11-09 - Initial submission for package distribution diff --git a/Editor/com.unity.assetbundlebrowser.Editor.asmdef b/Editor/com.unity.assetbundlebrowser.Editor.asmdef new file mode 100644 index 0000000..ef58257 --- /dev/null +++ b/Editor/com.unity.assetbundlebrowser.Editor.asmdef @@ -0,0 +1,10 @@ +{ + "name": "com.unity.resourcemanager.Editor", + "references": [ + "com.unity.resourcemanager.Runtime" + ], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [] +} diff --git a/Editor/com.unity.assetbundlebrowser.Editor.asmdef.meta b/Editor/com.unity.assetbundlebrowser.Editor.asmdef.meta new file mode 100644 index 0000000..095abac --- /dev/null +++ b/Editor/com.unity.assetbundlebrowser.Editor.asmdef.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ac9b6d07046c0442a95ef301bd5cd22 +timeCreated: 1512760713 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/package.json b/package.json index 2f8e1c7..4eb8378 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.unity.assetbundlebrowser", - "version": "1.1.4", + "version": "1.2.0", "unity": "2018.1", "description": "Editor tool used to manually manage Asset Bundle configuration.", "keywords": ["asset", "bundle", "bundles", "assetbundles"],