From 62be06f151d1bbe9845f6b2d4c481221e59321e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20R=C3=A4nnare?= Date: Fri, 16 Oct 2020 11:37:16 +0200 Subject: [PATCH] Added @todo to MakeRelease option Removed modio editor button, as it doesn't do anything --- Source/modioEditor/Private/modioEditor.cpp | 2 ++ Source/modioEditor/Private/modioEditorCommands.cpp | 4 ++-- build/MakeRelease/Options.cs | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/modioEditor/Private/modioEditor.cpp b/Source/modioEditor/Private/modioEditor.cpp index ee7a9d6..63b625e 100644 --- a/Source/modioEditor/Private/modioEditor.cpp +++ b/Source/modioEditor/Private/modioEditor.cpp @@ -30,6 +30,8 @@ void FmodioEditorModule::StartupModule() FLevelEditorModule& LevelEditorModule = FModuleManager::LoadModuleChecked("LevelEditor"); + // Remove the dropdown for now, as it's not used and just comfuses people + if(0) { TSharedPtr ToolbarExtender = MakeShareable(new FExtender); ToolbarExtender->AddToolBarExtension("Content", EExtensionHook::After, PluginCommands, FToolBarExtensionDelegate::CreateRaw(this, &FmodioEditorModule::AddToolbarExtension)); diff --git a/Source/modioEditor/Private/modioEditorCommands.cpp b/Source/modioEditor/Private/modioEditorCommands.cpp index 561c6af..7dbd35b 100644 --- a/Source/modioEditor/Private/modioEditorCommands.cpp +++ b/Source/modioEditor/Private/modioEditorCommands.cpp @@ -7,11 +7,11 @@ void FmodioEditorCommands::RegisterCommands() { - UI_COMMAND(Login, "Login", "Login to modio (not implemented)", EUserInterfaceActionType::Button, FInputGesture()); + /*UI_COMMAND(Login, "Login", "Login to modio (not implemented)", EUserInterfaceActionType::Button, FInputGesture()); UI_COMMAND(Logout, "Logout", "Logout from modio (not implemented)", EUserInterfaceActionType::Button, FInputGesture() ); UI_COMMAND(UploadMod, "Upload Mod", "Upload mod to modio (not implemented)", EUserInterfaceActionType::Button, FInputGesture() ); UI_COMMAND(NewModWizard, "New mod wizard", "r u a wizzard? (not implemented)", EUserInterfaceActionType::Button, FInputGesture() ); - UI_COMMAND(Settings, "Settings", "Configure modio environment (not implemented)", EUserInterfaceActionType::Button, FInputGesture() ); + UI_COMMAND(Settings, "Settings", "Configure modio environment (not implemented)", EUserInterfaceActionType::Button, FInputGesture() );*/ } #undef LOCTEXT_NAMESPACE diff --git a/build/MakeRelease/Options.cs b/build/MakeRelease/Options.cs index c30676f..98404ca 100644 --- a/build/MakeRelease/Options.cs +++ b/build/MakeRelease/Options.cs @@ -8,6 +8,7 @@ namespace MakeRelease /** Handles the arguments passed into main */ public class Options { + // @todo: Add a new option switch that logs the output to a file too, so that we can look at the logs afterwards [Option('v', "version", Required = true, HelpText = "The version of the UE4 plugin we want to submit")] public string UE4PluginVersion { get; set; } }