From 87f711cb7f1646333d4ccdbb6526bf8bfe1eddf3 Mon Sep 17 00:00:00 2001 From: nutti Date: Tue, 12 Dec 2023 19:56:04 +0900 Subject: [PATCH] Release Version 1.1 --- .../Source/BlueprintToRSTDoc/BlueprintToRSTDoc.Build.cs | 9 ++++++++- .../Source/BlueprintToRSTDoc/Private/BPLibrary.cpp | 9 +++++++++ .../BlueprintToRSTDoc/Private/BlueprintToRSTDoc.cpp | 9 ++++++++- .../Source/BlueprintToRSTDoc/Private/Commands.cpp | 9 +++++++++ .../Source/BlueprintToRSTDoc/Private/Style.cpp | 9 +++++++++ .../Source/BlueprintToRSTDoc/Public/BPLibrary.h | 9 +++++++++ .../Source/BlueprintToRSTDoc/Public/BlueprintToRSTDoc.h | 9 ++++++++- .../Source/BlueprintToRSTDoc/Public/Commands.h | 9 +++++++++ .../Source/BlueprintToRSTDoc/Public/Common.h | 9 +++++++++ .../Source/BlueprintToRSTDoc/Public/Settings.h | 9 +++++++++ .../Source/BlueprintToRSTDoc/Public/Style.h | 9 +++++++++ samples/SampleProject/Source/SampleProject.Target.cs | 2 +- .../Source/SampleProject/SampleProject.Build.cs | 2 +- .../SampleProject/Source/SampleProject/SampleProject.cpp | 2 +- .../SampleProject/Source/SampleProject/SampleProject.h | 2 +- .../SampleProject/Source/SampleProjectEditor.Target.cs | 2 +- .../FunctionalTest/Source/FunctionalTest.Target.cs | 2 +- .../Source/FunctionalTest/FunctionalTest.Build.cs | 2 +- .../Source/FunctionalTest/FunctionalTest.cpp | 2 +- .../Source/FunctionalTest/FunctionalTest.h | 2 +- .../FunctionalTest/FunctionalTestAutomationTest.cpp | 2 +- .../FunctionalTest/Source/FunctionalTestEditor.Target.cs | 2 +- 22 files changed, 107 insertions(+), 14 deletions(-) diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/BlueprintToRSTDoc.Build.cs b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/BlueprintToRSTDoc.Build.cs index 46f656a..c885fcb 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/BlueprintToRSTDoc.Build.cs +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/BlueprintToRSTDoc.Build.cs @@ -1,4 +1,11 @@ -// Some copyright should be here... +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ using UnrealBuildTool; diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BPLibrary.cpp b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BPLibrary.cpp index 281aa18..a4bcc3f 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BPLibrary.cpp +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BPLibrary.cpp @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #include "BPLibrary.h" #include "AssetRegistry/AssetRegistryModule.h" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BlueprintToRSTDoc.cpp b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BlueprintToRSTDoc.cpp index 91cdfc4..8ae4392 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BlueprintToRSTDoc.cpp +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/BlueprintToRSTDoc.cpp @@ -1,4 +1,11 @@ -// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ #include "BlueprintToRSTDoc.h" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Commands.cpp b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Commands.cpp index 67b0a5e..e1023a4 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Commands.cpp +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Commands.cpp @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #include "Commands.h" #define LOCTEXT_NAMESPACE "BlueprintToRSTDoc" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Style.cpp b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Style.cpp index 84e4966..bc92f01 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Style.cpp +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Style.cpp @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #include "Style.h" #include "Interfaces/IPluginManager.h" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BPLibrary.h b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BPLibrary.h index 7b5b8be..1b433a5 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BPLibrary.h +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BPLibrary.h @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #pragma once #include "Kismet/BlueprintFunctionLibrary.h" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BlueprintToRSTDoc.h b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BlueprintToRSTDoc.h index 54d849f..3d43e4d 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BlueprintToRSTDoc.h +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BlueprintToRSTDoc.h @@ -1,4 +1,11 @@ -// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ #pragma once diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Commands.h b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Commands.h index 5f220ea..b80cedb 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Commands.h +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Commands.h @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #pragma once #include "Framework/Commands/Commands.h" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Common.h b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Common.h index 989a494..3ae3035 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Common.h +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Common.h @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #pragma once #define ERROR_MESSAGE_BOX(Message) \ diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Settings.h b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Settings.h index 0913718..06ef979 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Settings.h +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Settings.h @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #pragma once #include "UObject/ObjectMacros.h" diff --git a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Style.h b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Style.h index 0e990e8..c4af43f 100644 --- a/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Style.h +++ b/BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Style.h @@ -1,3 +1,12 @@ +/*! + * BlueprintToRSTDoc + * + * Copyright (c) 2020-2023 nutti + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + #pragma once #include "Styling/SlateStyle.h" diff --git a/samples/SampleProject/Source/SampleProject.Target.cs b/samples/SampleProject/Source/SampleProject.Target.cs index f43d703..d4496c5 100644 --- a/samples/SampleProject/Source/SampleProject.Target.cs +++ b/samples/SampleProject/Source/SampleProject.Target.cs @@ -1,7 +1,7 @@ /*! * SampleProject * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/samples/SampleProject/Source/SampleProject/SampleProject.Build.cs b/samples/SampleProject/Source/SampleProject/SampleProject.Build.cs index 8706522..71f10d9 100644 --- a/samples/SampleProject/Source/SampleProject/SampleProject.Build.cs +++ b/samples/SampleProject/Source/SampleProject/SampleProject.Build.cs @@ -1,7 +1,7 @@ /*! * SampleProject * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/samples/SampleProject/Source/SampleProject/SampleProject.cpp b/samples/SampleProject/Source/SampleProject/SampleProject.cpp index 4804008..924358a 100644 --- a/samples/SampleProject/Source/SampleProject/SampleProject.cpp +++ b/samples/SampleProject/Source/SampleProject/SampleProject.cpp @@ -1,7 +1,7 @@ /*! * SampleProject * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/samples/SampleProject/Source/SampleProject/SampleProject.h b/samples/SampleProject/Source/SampleProject/SampleProject.h index 1966188..f6fd9e5 100644 --- a/samples/SampleProject/Source/SampleProject/SampleProject.h +++ b/samples/SampleProject/Source/SampleProject/SampleProject.h @@ -1,7 +1,7 @@ /*! * SampleProject * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/samples/SampleProject/Source/SampleProjectEditor.Target.cs b/samples/SampleProject/Source/SampleProjectEditor.Target.cs index 65343d9..31a6dfe 100644 --- a/samples/SampleProject/Source/SampleProjectEditor.Target.cs +++ b/samples/SampleProject/Source/SampleProjectEditor.Target.cs @@ -1,7 +1,7 @@ /*! * SampleProject * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/tests/functional_test/FunctionalTest/Source/FunctionalTest.Target.cs b/tests/functional_test/FunctionalTest/Source/FunctionalTest.Target.cs index de12945..d65b610 100644 --- a/tests/functional_test/FunctionalTest/Source/FunctionalTest.Target.cs +++ b/tests/functional_test/FunctionalTest/Source/FunctionalTest.Target.cs @@ -1,7 +1,7 @@ /*! * FunctionalTest * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.Build.cs b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.Build.cs index db90016..984ac1f 100644 --- a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.Build.cs +++ b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.Build.cs @@ -1,7 +1,7 @@ /*! * FunctionalTest * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.cpp b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.cpp index 8fccf9c..e754a54 100644 --- a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.cpp +++ b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.cpp @@ -1,7 +1,7 @@ /*! * FunctionalTest * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.h b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.h index a894edc..49dc1bc 100644 --- a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.h +++ b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTest.h @@ -1,7 +1,7 @@ /*! * FunctionalTest * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTestAutomationTest.cpp b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTestAutomationTest.cpp index 3e20bd0..0ff27f8 100644 --- a/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTestAutomationTest.cpp +++ b/tests/functional_test/FunctionalTest/Source/FunctionalTest/FunctionalTestAutomationTest.cpp @@ -1,7 +1,7 @@ /*! * FunctionalTest * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT diff --git a/tests/functional_test/FunctionalTest/Source/FunctionalTestEditor.Target.cs b/tests/functional_test/FunctionalTest/Source/FunctionalTestEditor.Target.cs index c4c9253..e5c2631 100644 --- a/tests/functional_test/FunctionalTest/Source/FunctionalTestEditor.Target.cs +++ b/tests/functional_test/FunctionalTest/Source/FunctionalTestEditor.Target.cs @@ -1,7 +1,7 @@ /*! * FunctionalTest * - * Copyright (c) 2019-2023 nutti + * Copyright (c) 2020-2023 nutti * * This software is released under the MIT License. * https://opensource.org/licenses/MIT