Skip to content

Commit 63e4d08

Browse files
authored
Merge pull request #113 from patchkit-net/dev/v3.11.x
Release v3.11.0
2 parents 256d61c + 8091a33 commit 63e4d08

File tree

141 files changed

+1744
-3821
lines changed

Some content is hidden

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

141 files changed

+1744
-3821
lines changed

Assets/Editor/AssetStoreBatchMode/AssetStoreBatchMode.cs

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

Assets/Editor/AssetStoreBatchMode/ReflectionHelpers.cs

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

Assets/Editor/AssetStoreBatchMode/lib.meta

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

Assets/Editor/AssetStoreBatchMode/lib/NDesk.Options/AUTHORS

Lines changed: 0 additions & 1 deletion
This file was deleted.

Assets/Editor/AssetStoreBatchMode/lib/NDesk.Options/AUTHORS.meta

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

Assets/Editor/AssetStoreBatchMode/lib/NDesk.Options/COPYING

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

Assets/Editor/AssetStoreBatchMode/lib/NDesk.Options/COPYING.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.
Binary file not shown.

Assets/Editor/InternalMenuItems.cs

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,10 @@ namespace PatchKit.Unity.Editor
66

77
public class InternalMenuItems
88
{
9-
[MenuItem("Tools/PatchKit Patcher Internal/Upload Asset Store Package", false, 1)]
10-
public static void UploadAssetStorePackage()
11-
{
12-
if (string.IsNullOrEmpty(InternalSettings.Email) || string.IsNullOrEmpty(InternalSettings.Password))
13-
{
14-
Debug.LogError("Please set email and password in internal settings");
15-
return;
16-
}
17-
18-
AssetStoreBatchMode.UploadAssetStorePackage(
19-
InternalSettings.Email, InternalSettings.Password,
20-
"PatchKit Patcher",
21-
new [] {"PatchKit Patcher", "Plugins/PatchKit", "Plugins/UniRx", "StreamingAssets"});
22-
}
23-
249
[MenuItem("Tools/PatchKit Patcher Internal/Settings", false, 100)]
2510
public static void Settings()
2611
{
27-
InternalSettings.Show();
12+
InternalSettings.ShowSettings();
2813
}
2914
}
3015

Assets/Editor/InternalSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static string Password
2020
set { EditorPrefs.SetString(PasswordKey, value); }
2121
}
2222

23-
public static void Show()
23+
public static void ShowSettings()
2424
{
2525
EditorWindow window = GetWindow<InternalSettings>();
2626
window.Show();

0 commit comments

Comments
 (0)