Skip to content

Commit

Permalink
prepare for Marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeioris committed Jan 25, 2019
1 parent 1a99208 commit ca0ba64
Show file tree
Hide file tree
Showing 27 changed files with 26 additions and 22 deletions.
3 changes: 3 additions & 0 deletions Config/FilterPlugin.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[FilterPlugin]
/Docs/...
/Tutorials/...
1 change: 1 addition & 0 deletions LuaMachine.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/48a58a495c3f4d788fc9195bceff2ec8",
"SupportURL": "https://github.com/rdeioris/LuaMachine",
"CanContainContent": true,
"EngineVersion": "4.21.0",
"IsBetaVersion": true,
"Installed": false,
"Modules": [
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Private/LuaBlueprintFunctionLibrary.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaBlueprintFunctionLibrary.h"
#include "LuaComponent.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Private/LuaCode.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaCode.h"
#include "LuaMachine.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Private/LuaComponent.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaComponent.h"
#include "LuaMachine.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Private/LuaMachine.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaMachine.h"
#if WITH_EDITOR
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Private/LuaState.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaState.h"
#include "LuaComponent.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Private/LuaValue.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaValue.h"
#include "LuaState.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Public/LuaBlueprintFunctionLibrary.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Public/LuaCode.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Public/LuaComponent.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachine/Public/LuaMachine.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions Source/LuaMachine/Public/LuaState.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

#include "CoreMinimal.h"
#include "Engine/Blueprint.h"
#include "lua/lua.hpp"
#include "ThirdParty/lua/lua.hpp"
#include "LuaValue.h"
#include "LuaCode.h"
#include "Runtime/Core/Public/Containers/Queue.h"
Expand Down
4 changes: 2 additions & 2 deletions Source/LuaMachine/Public/LuaValue.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "lua/lua.hpp"
#include "ThirdParty/lua/lua.hpp"
#include "LuaValue.generated.h"

// required for Mac
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Private/LuaCodeCustomization.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaCodeCustomization.h"
#include "LuaMachineEditor.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Private/LuaCodeFactory.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaCodeFactory.h"
#include "LuaCode.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Private/LuaMachineEditor.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaMachineEditor.h"
#include "Editor/UnrealEd/Public/Editor.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Private/LuaValueCustomization.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#include "LuaValueCustomization.h"
#include "LuaMachine/Public/LuaValue.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Public/LuaCodeCustomization.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Public/LuaCodeFactory.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Public/LuaMachineEditor.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion Source/LuaMachineEditor/Public/LuaValueCustomization.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018 - Roberto De Ioris
// Copyright 2019 - Roberto De Ioris

#pragma once

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ca0ba64

Please sign in to comment.