Skip to content

Commit c940ba7

Browse files
authored
Merge pull request #1 from Mountea-Framework/5.6_dev
feat: update plugin to 5.6
2 parents 3b29a88 + 4c388db commit c940ba7

File tree

6 files changed

+25
-19
lines changed

6 files changed

+25
-19
lines changed

.github/workflows/label.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
# file with configuration. For more information, see:
66
# https://github.com/actions/labeler
77

8-
name: Labeler
9-
on: [pull_request]
8+
# name: Labeler
9+
# on: [pull_request]
1010

11-
jobs:
12-
label:
11+
# jobs:
12+
# label:
1313

14-
runs-on: ubuntu-latest
15-
permissions:
16-
contents: read
17-
pull-requests: write
14+
# runs-on: ubuntu-latest
15+
# permissions:
16+
# contents: read
17+
# pull-requests: write
1818

19-
steps:
20-
- uses: actions/labeler@v4
21-
with:
22-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
19+
# steps:
20+
# - uses: actions/labeler@v4
21+
# with:
22+
# repo-token: "${{ secrets.GITHUB_TOKEN }}"

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,9 @@ Plugins/*/Intermediate/*
7272

7373
# Cache files for the editor to use
7474
DerivedDataCache/*
75+
76+
# Config files
77+
Config/UpdateConfig.ini
78+
79+
# Workspace files
80+
*.DS_Store

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)