Skip to content

Commit fbafa6a

Browse files
authored
Merge pull request #5 from UniToolsTeam/feature-win-editor-hotfix
Win users hotfix
2 parents ea0819d + 14d0688 commit fbafa6a

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Editor/CustomEditors/Distribute/ExportIpaEditor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ protected override void OnEnable()
2121
public override void OnInspectorGUI()
2222
{
2323
base.OnInspectorGUI();
24+
2425
EditorGUILayout.PropertyField(m_method);
2526
EditorGUILayout.PropertyField(m_archivePath);
2627
EditorGUILayout.PropertyField(m_outputPath);

Editor/CustomEditors/Distribute/UploadToAppStoreEditor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ protected override void OnEnable()
1818
public override void OnInspectorGUI()
1919
{
2020
base.OnInspectorGUI();
21+
2122
EditorGUILayout.PropertyField(m_archivePath);
2223
EditorGUILayout.PropertyField(m_outputPath);
2324
serializedObject.ApplyModifiedProperties();

Editor/CustomEditors/IosPostBuildStepEditor.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected virtual void OnEnable()
1919

2020
public override void OnInspectorGUI()
2121
{
22-
#if UNITY_IOS
22+
2323
EditorGUILayout.HelpBox("Make sure that certificate added to the Keychain", MessageType.Info);
2424
bool load = false;
2525

@@ -51,9 +51,6 @@ public override void OnInspectorGUI()
5151
}
5252

5353
serializedObject.ApplyModifiedProperties();
54-
#else
55-
throw new Exception($"{nameof(IosPostBuildStepEditor)}: unsupported platform for {m_teamId}, {m_provisioningProfileName}, {m_provisioningProfileUuid}");
56-
#endif
5754
}
5855
}
5956
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"displayName": "UniTools.Build.iOS",
33
"name": "com.unitools.build.ios",
4-
"version": "0.0.1-preview",
4+
"version": "0.0.3-preview",
55
"unity": "2019.1",
66
"description": "Part of the Customizable Build Pipeline tool for the iOS build target",
77
"keywords": [

0 commit comments

Comments
 (0)