Skip to content

Commit 903650f

Browse files
committed
feat: update plugin to 5.6
1 parent 3b29a88 commit 903650f

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

Config/UpdateConfig.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
;METADATA=(Diff=true, UseCommands=true)
2+
[/Script/MounteaToolsLibraryEditor.MTLPopupConfig]
3+
PluginVersionUpdate=1.0
4+

MounteaToolsLibrary.uplugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"DocsURL": "https://sites.google.com/view/dominikpavlicek/home/documentation",
1111
"MarketplaceURL": "",
1212
"SupportURL": "https://bit.ly/DominikPavlicek_SupportServer",
13-
"EngineVersion": "4.26.0",
13+
"EngineVersion": "5.6.0",
1414
"CanContainContent": true,
1515
"IsBetaVersion": true,
1616
"IsExperimentalVersion": false,

Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "MTLCommands.h"
55

6-
#define LOCTEXT_NAMESPACE "ActorInteractionPluginEditorModule"
6+
#define LOCTEXT_NAMESPACE "MounteaInteractionSystemEditorModule"
77

88
void FMTLCommands::RegisterCommands()
99
{

Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class FMTLCommands : public TCommands<FMTLCommands>
1111
public:
1212

1313
FMTLCommands()
14-
: TCommands<FMTLCommands>(TEXT("AMTLSupport"), NSLOCTEXT("Contexts", "Support", "ActorInteraction Plugin"), NAME_None, FMTLHelpStyle::GetStyleSetName())
14+
: TCommands<FMTLCommands>(TEXT("AMTLSupport"), NSLOCTEXT("Contexts", "Support", "MounteaInteraction Plugin"), NAME_None, FMTLHelpStyle::GetStyleSetName())
1515
{
1616
}
1717

Source/MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void MTLPopup::OpenMTLPopup()
8888
[
8989
SNew(SBorder)
9090
.Padding(10)
91-
.BorderImage(FEditorStyle::GetBrush("ToolPanel.DarkGroupBorder"))
91+
.BorderImage(FAppStyle::GetBrush("ToolPanel.DarkGroupBorder"))
9292
[
9393
SNew(SScrollBox)
9494
+ SScrollBox::Slot()
@@ -107,15 +107,15 @@ But let's keep it short, here are the cool new features (and bugfixes) of versio
107107
108108
<RichTextBlock.Bold>Features</>
109109
110-
* Add new Interactor Component Base Class implementing <RichTextBlock.Italic>IActorInteractorInterface</>
110+
* Add new Interactor Component Base Class implementing <RichTextBlock.Italic>IMounteaInteractorInterface</>
111111
112112
<RichTextBlock.Bold>Bugfixes</>
113113
114114
* Fix missed descriptions
115115
* Add <RichTextBlock.Bold>DEPRECATED</> to old Component Classes
116116
)"))
117-
.TextStyle(FEditorStyle::Get(), "NormalText")
118-
.DecoratorStyleSet(&FEditorStyle::Get())
117+
.TextStyle(FAppStyle::Get(), "NormalText")
118+
.DecoratorStyleSet(&FAppStyle::Get())
119119
.AutoWrapText(true)
120120
+ SRichTextBlock::HyperlinkDecorator(TEXT("browser"), FSlateHyperlinkRun::FOnClick::CreateStatic(&OnBrowserLinkClicked))
121121
]

0 commit comments

Comments
 (0)