Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions Config/UpdateConfig.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
;METADATA=(Diff=true, UseCommands=true)
[/Script/MounteaToolsLibraryEditor.MTLPopupConfig]
PluginVersionUpdate=1.0

2 changes: 1 addition & 1 deletion MounteaToolsLibrary.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"DocsURL": "https://sites.google.com/view/dominikpavlicek/home/documentation",
"MarketplaceURL": "",
"SupportURL": "https://bit.ly/DominikPavlicek_SupportServer",
"EngineVersion": "4.26.0",
"EngineVersion": "5.6.0",
"CanContainContent": true,
"IsBetaVersion": true,
"IsExperimentalVersion": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "MTLCommands.h"

#define LOCTEXT_NAMESPACE "ActorInteractionPluginEditorModule"
#define LOCTEXT_NAMESPACE "MounteaInteractionSystemEditorModule"

void FMTLCommands::RegisterCommands()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class FMTLCommands : public TCommands<FMTLCommands>
public:

FMTLCommands()
: TCommands<FMTLCommands>(TEXT("AMTLSupport"), NSLOCTEXT("Contexts", "Support", "ActorInteraction Plugin"), NAME_None, FMTLHelpStyle::GetStyleSetName())
: TCommands<FMTLCommands>(TEXT("AMTLSupport"), NSLOCTEXT("Contexts", "Support", "MounteaInteraction Plugin"), NAME_None, FMTLHelpStyle::GetStyleSetName())
{
}

Expand Down
8 changes: 4 additions & 4 deletions Source/MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void MTLPopup::OpenMTLPopup()
[
SNew(SBorder)
.Padding(10)
.BorderImage(FEditorStyle::GetBrush("ToolPanel.DarkGroupBorder"))
.BorderImage(FAppStyle::GetBrush("ToolPanel.DarkGroupBorder"))
[
SNew(SScrollBox)
+ SScrollBox::Slot()
Expand All @@ -107,15 +107,15 @@ But let's keep it short, here are the cool new features (and bugfixes) of versio

<RichTextBlock.Bold>Features</>

* Add new Interactor Component Base Class implementing <RichTextBlock.Italic>IActorInteractorInterface</>
* Add new Interactor Component Base Class implementing <RichTextBlock.Italic>IMounteaInteractorInterface</>

<RichTextBlock.Bold>Bugfixes</>

* Fix missed descriptions
* Add <RichTextBlock.Bold>DEPRECATED</> to old Component Classes
)"))
.TextStyle(FEditorStyle::Get(), "NormalText")
.DecoratorStyleSet(&FEditorStyle::Get())
.TextStyle(FAppStyle::Get(), "NormalText")
.DecoratorStyleSet(&FAppStyle::Get())
.AutoWrapText(true)
+ SRichTextBlock::HyperlinkDecorator(TEXT("browser"), FSlateHyperlinkRun::FOnClick::CreateStatic(&OnBrowserLinkClicked))
]
Expand Down
Loading