Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Finish v1.1-r16
Browse files Browse the repository at this point in the history
  • Loading branch information
ufna committed Sep 2, 2016
2 parents ad9ae47 + 4ba88c8 commit c75059f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Key features:

Check the [Wiki](https://hiazma.atlassian.net/wiki/display/VAR) for plugin usage examples and installation notes.

Current version: **1.1 R 14** (UE 4.11-4.12)
Current version: **1.1 R 16** (UE 4.11-4.13)

![SCREENSHOT](SCREENSHOT.jpg)

Expand Down
6 changes: 6 additions & 0 deletions Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#include "VaRestEditorPluginPrivatePCH.h"
#include "VaRest_BreakJson.h"

#include "Runtime/Launch/Resources/Version.h"

#define LOCTEXT_NAMESPACE "VaRest_BreakJson"

class FKCHandler_BreakJson : public FNodeHandlingFunctor
Expand Down Expand Up @@ -55,7 +57,11 @@ class FKCHandler_BreakJson : public FNodeHandlingFunctor

FBPTerminal* FieldNameTerm = Context.CreateLocalTerminal(ETerminalSpecification::TS_Literal);
FieldNameTerm->Type.PinCategory = CompilerContext.GetSchema()->PC_String;
#if ENGINE_MINOR_VERSION >= 13
FieldNameTerm->SourcePin = Pin;
#else
FieldNameTerm->Source = Pin;
#endif
FieldNameTerm->Name = FieldName;
FieldNameTerm->TextLiteral = FText::FromString(FieldName);

Expand Down
4 changes: 2 additions & 2 deletions VaRestPlugin.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"FileVersion" : 3,

"FriendlyName" : "VaRest",
"Version" : 15,
"VersionName" : "1.1-r15",
"Version" : 16,
"VersionName" : "1.1-r16",
"CreatedBy" : "Vladimir Alyamkin",
"CreatedByURL" : "http://alyamkin.com",
"EngineVersion" : "4.11.0",
Expand Down

0 comments on commit c75059f

Please sign in to comment.