Skip to content

Commit

Permalink
Release Version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Dec 13, 2023
1 parent 24a6a04 commit a688b91
Show file tree
Hide file tree
Showing 25 changed files with 121 additions and 17 deletions.
2 changes: 1 addition & 1 deletion BlueprintToRSTDoc/BlueprintToRSTDoc.uplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"VersionName": "1.1",
"FriendlyName": "Blueprint to reStructuredText Document",
"Description": "Generate reStructuredText (RST) Format Documents from Blueprints",
"EngineVersion": "5.3.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 9 additions & 0 deletions BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Private/Style.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 9 additions & 0 deletions BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/BPLibrary.h
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
9 changes: 9 additions & 0 deletions BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Commands.h
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 9 additions & 0 deletions BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Common.h
Original file line number Diff line number Diff line change
@@ -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) \
Expand Down
9 changes: 9 additions & 0 deletions BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Settings.h
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 9 additions & 0 deletions BlueprintToRSTDoc/Source/BlueprintToRSTDoc/Public/Style.h
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@

# Change Log

## [Unreleased](https://github.com/nutti/UE4-BlueprintToRSTDoc/compare/v1.0...main)
## [Unreleased](https://github.com/nutti/UE4-BlueprintToRSTDoc/compare/v1.1...main)

<!-- markdownlint-disable-next-line MD013 -->
## [Version 1.1](https://github.com/nutti/UE4-BlueprintToRSTDoc/compare/v1.0...v1.1) - 2023.12.13

### Updated Features

* Support on Unreal Engine 5.3

### Contributor

* [**@kant**](https://github.com/kant)

<!-- markdownlint-disable-next-line MD013 -->
## [Version 1.0](https://github.com/nutti/UE4-BlueprintToRSTDoc/compare/2f03fa3ea3ae692582b6cd976aee2ec35c1c8719...v1.0) - 2020.10.4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ from Blueprints.

## Features

* Genereate reStructuredText (RST) documents from Blueprints.
* Generate reStructuredText (RST) documents from Blueprints.

## Supported Environment

Expand Down
2 changes: 1 addition & 1 deletion samples/SampleProject/Source/SampleProject.Target.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion samples/SampleProject/Source/SampleProject/SampleProject.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion samples/SampleProject/Source/SampleProjectEditor.Target.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a688b91

Please sign in to comment.