Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
24 changes: 12 additions & 12 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
# file with configuration. For more information, see:
# https://github.com/actions/labeler

name: Labeler
on: [pull_request]
# name: Labeler
# on: [pull_request]

jobs:
label:
# jobs:
# label:

runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
# runs-on: ubuntu-latest
# permissions:
# contents: read
# pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
# steps:
# - uses: actions/labeler@v4
# with:
# repo-token: "${{ secrets.GITHUB_TOKEN }}"
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,9 @@ Plugins/*/Intermediate/*

# Cache files for the editor to use
DerivedDataCache/*

# Config files
Config/UpdateConfig.ini

# Workspace files
*.DS_Store
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