From 903650f8527012fc7bf21314245d7449bb3df514 Mon Sep 17 00:00:00 2001 From: milenaveleva Date: Sun, 28 Dec 2025 15:47:14 +0100 Subject: [PATCH 1/3] feat: update plugin to 5.6 --- Config/UpdateConfig.ini | 4 ++++ MounteaToolsLibrary.uplugin | 2 +- .../Private/HelpButton/MTLCommands.cpp | 2 +- .../Private/HelpButton/MTLCommands.h | 2 +- .../MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp | 8 ++++---- 5 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 Config/UpdateConfig.ini diff --git a/Config/UpdateConfig.ini b/Config/UpdateConfig.ini new file mode 100644 index 0000000..e7b2387 --- /dev/null +++ b/Config/UpdateConfig.ini @@ -0,0 +1,4 @@ +;METADATA=(Diff=true, UseCommands=true) +[/Script/MounteaToolsLibraryEditor.MTLPopupConfig] +PluginVersionUpdate=1.0 + diff --git a/MounteaToolsLibrary.uplugin b/MounteaToolsLibrary.uplugin index e8296a6..96c20e1 100644 --- a/MounteaToolsLibrary.uplugin +++ b/MounteaToolsLibrary.uplugin @@ -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, diff --git a/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.cpp b/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.cpp index 3cfc7d2..d1a169d 100644 --- a/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.cpp +++ b/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.cpp @@ -3,7 +3,7 @@ #include "MTLCommands.h" -#define LOCTEXT_NAMESPACE "ActorInteractionPluginEditorModule" +#define LOCTEXT_NAMESPACE "MounteaInteractionSystemEditorModule" void FMTLCommands::RegisterCommands() { diff --git a/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.h b/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.h index 538bf76..73c5374 100644 --- a/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.h +++ b/Source/MounteaToolsLibraryEditor/Private/HelpButton/MTLCommands.h @@ -11,7 +11,7 @@ class FMTLCommands : public TCommands public: FMTLCommands() - : TCommands(TEXT("AMTLSupport"), NSLOCTEXT("Contexts", "Support", "ActorInteraction Plugin"), NAME_None, FMTLHelpStyle::GetStyleSetName()) + : TCommands(TEXT("AMTLSupport"), NSLOCTEXT("Contexts", "Support", "MounteaInteraction Plugin"), NAME_None, FMTLHelpStyle::GetStyleSetName()) { } diff --git a/Source/MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp b/Source/MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp index 2269004..1ddcee5 100644 --- a/Source/MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp +++ b/Source/MounteaToolsLibraryEditor/Private/Popup/MTLPopup.cpp @@ -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() @@ -107,15 +107,15 @@ But let's keep it short, here are the cool new features (and bugfixes) of versio Features -* Add new Interactor Component Base Class implementing IActorInteractorInterface +* Add new Interactor Component Base Class implementing IMounteaInteractorInterface Bugfixes * Fix missed descriptions * Add 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)) ] From bbe3c088d69fbd838b4cef4e7b9e642047f16da3 Mon Sep 17 00:00:00 2001 From: milenaveleva <59851546+milenaveleva@users.noreply.github.com> Date: Sun, 28 Dec 2025 15:52:28 +0100 Subject: [PATCH 2/3] Update label.yml comment out labeler workflow --- .github/workflows/label.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index a8a1bd7..a5f4a6e 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -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 }}" From 4c388db0c30cb3e5633044151d33c5394da8a7f7 Mon Sep 17 00:00:00 2001 From: milenaveleva Date: Sun, 28 Dec 2025 16:02:05 +0100 Subject: [PATCH 3/3] fix: update gitignore, remove config --- .gitignore | 6 ++++++ Config/UpdateConfig.ini | 4 ---- 2 files changed, 6 insertions(+), 4 deletions(-) delete mode 100644 Config/UpdateConfig.ini diff --git a/.gitignore b/.gitignore index 6582eaf..ba6f37b 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,9 @@ Plugins/*/Intermediate/* # Cache files for the editor to use DerivedDataCache/* + +# Config files +Config/UpdateConfig.ini + +# Workspace files +*.DS_Store diff --git a/Config/UpdateConfig.ini b/Config/UpdateConfig.ini deleted file mode 100644 index e7b2387..0000000 --- a/Config/UpdateConfig.ini +++ /dev/null @@ -1,4 +0,0 @@ -;METADATA=(Diff=true, UseCommands=true) -[/Script/MounteaToolsLibraryEditor.MTLPopupConfig] -PluginVersionUpdate=1.0 -