Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/NuGetForUnity/Editor/Ui/DependencyTreeViewer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class DependencyTreeViewer : EditorWindow
/// <summary>
/// Opens the NuGet Package Manager Window.
/// </summary>
[MenuItem("NuGet/Show Dependency Tree", false, 5)]
[MenuItem("Window/Package Management/NuGet/Show Dependency Tree", false, 5)]
protected static void DisplayDependencyTree()
{
GetWindow<DependencyTreeViewer>();
Expand Down
4 changes: 2 additions & 2 deletions src/NuGetForUnity/Editor/Ui/NuGetForUnityUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal static class NuGetForUnityUpdater
/// <summary>
/// Opens release notes for the current version.
/// </summary>
[MenuItem("NuGet/Version " + NugetPreferences.NuGetForUnityVersion + " \uD83D\uDD17", false, 10)]
[MenuItem("Window/Package Management/NuGet/Version " + NugetPreferences.NuGetForUnityVersion + " \uD83D\uDD17", false, 10)]
public static void DisplayVersion()
{
Application.OpenURL($"{GitHubReleasesPageUrl}/tag/v{NugetPreferences.NuGetForUnityVersion}");
Expand All @@ -39,7 +39,7 @@ public static void DisplayVersion()
/// <summary>
/// Checks/launches the Releases page to update NuGetForUnity with a new version.
/// </summary>
[MenuItem("NuGet/Check for Updates...", false, 11)]
[MenuItem("Window/Package Management/NuGet/Check for Updates...", false, 11)]
public static void CheckForUpdates()
{
var request = UnityWebRequest.Get(GitHubReleasesApiUrl);
Expand Down
6 changes: 3 additions & 3 deletions src/NuGetForUnity/Editor/Ui/NugetWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public void OnAfterDeserialize()
/// <summary>
/// Opens the NuGet Package Manager Window.
/// </summary>
[MenuItem("NuGet/Manage NuGet Packages", false, 0)]
[MenuItem("Window/Package Management/NuGet/Manage NuGet Packages", false, 0)]
protected static void DisplayNugetWindow()
{
GetWindow<NugetWindow>();
Expand All @@ -299,7 +299,7 @@ protected static void DisplayNugetWindow()
/// <summary>
/// Restores all packages defined in packages.config.
/// </summary>
[MenuItem("NuGet/Restore Packages", false, 1)]
[MenuItem("Window/Package Management/NuGet/Restore Packages", false, 1)]
protected static void RestorePackages()
{
PackageRestorer.Restore(false);
Expand All @@ -312,7 +312,7 @@ protected static void RestorePackages()
/// <summary>
/// Opens the preferences window.
/// </summary>
[MenuItem("NuGet/Preferences", false, 9)]
[MenuItem("Window/Package Management/NuGet/Preferences", false, 9)]
protected static void DisplayPreferences()
{
SettingsService.OpenProjectSettings(NugetPreferences.MenuItemLocation);
Expand Down
6 changes: 5 additions & 1 deletion src/NuGetForUnity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"nuget",
"unity"
],
"author": {
"name": "GlitchEnzo",
"url": "https://glitchenzo.github.io/"
},
"license": "MIT",
"licensesUrl": "https://github.com/GlitchEnzo/NuGetForUnity/blob/master/LICENSE",
"changelogUrl": "https://github.com/GlitchEnzo/NuGetForUnity/releases",
"documentationUrl": "https://github.com/GlitchEnzo/NuGetForUnity"
}
}
Loading