Skip to content

Commit db5df83

Browse files
author
Stewart Miles
committed
Version 1.2.138
* Unity Package Manager Resolver: Added the Unity Package Manager Resolver component that allows developers to easily boostrap Unity Package Manager (UPM) registry addition using unitypackage plugins. * Version Handler: Added a window that allows plugins to managed by the Version Handler to be uninstalled. * Version Handler: Added support for displaying installed plugins. * Version Handler: Added support for moving files in plugins to their install locations (if the plugin has been configured to support this). * iOS Resolver: Added the ability to configure the Xcode target a Cocoapod is added to. * Fixed upgrade from version 1.2.137 and below after the plugin rename to EDM4U broke the upgrade process. * Android Resolver: Worked around PlayerSettings.Android.targetSdkVersion returning empty names for some values in 2019.x. * Version Handler: Fixed the display of the obsolete files clean up window. * Version Handler: Fixed managed file check when assets are modified in the project after plugin import. Change-Id: I70f11373ac9a611ea5636975ddccfa6e27b77031
1 parent 8578d3f commit db5df83

File tree

53 files changed

+219
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+219
-79
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions

build.gradle

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,7 @@ project.ext {
199199
// Solution which references all projects used by the plugin.
200200
pluginSolutionFile = new File(pluginSourceDir, "ExternalDependencyManager.sln")
201201
// Version of the plugin (update this with CHANGELOG.md on each release).
202-
pluginVersion = "1.2.138.0"
203-
// Semantic version of the plugin.
204-
pluginVersionSemVer = pluginVersion.tokenize(".")[0..2].join(".")
202+
pluginVersion = "1.2.138"
205203
// Base filename of the released plugin.
206204
currentPluginBasename = "external-dependency-manager"
207205
// Versioned release plugin file.
@@ -1315,7 +1313,7 @@ String readVersionSummaryFromChangelog() {
13151313
*/
13161314
String createCommitMessage() {
13171315
return sprintf("Version %s\n\n%s",
1318-
project.ext.pluginVersionSemVer,
1316+
project.ext.pluginVersion,
13191317
readVersionSummaryFromChangelog())
13201318
}
13211319

@@ -1341,13 +1339,13 @@ task gitTagRelease(type: Exec) {
13411339
description ("Run git to tag a release. This should be performed " +
13421340
"*after* a release commit has been be created.")
13431341
commandLine "git", "tag", "-a",
1344-
sprintf("v%s", pluginVersionSemVer), "-m",
1342+
sprintf("v%s", pluginVersion), "-m",
13451343
sprintf("%s\n\nDownload [here](%s)",
13461344
createCommitMessage(),
13471345
sprintf("https://github.com/googlesamples/" +
13481346
"unity-jar-resolver/raw/v%s/" +
13491347
"external-dependency-manager-%s.unitypackage",
1350-
project.ext.pluginVersionSemVer,
1348+
project.ext.pluginVersion,
13511349
project.ext.pluginVersion))
13521350
}
13531351

exploded/Assets/ExternalDependencyManager/Editor.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exploded/Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.137.0.dll.mdb.meta

Lines changed: 0 additions & 11 deletions
This file was deleted.

exploded/Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.138.dll.mdb.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exploded/Assets/ExternalDependencyManager/Editor/Google.JarResolver_v1.2.137.0.dll.meta renamed to exploded/Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.138.dll.meta

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)