From 3b4e1bfe5041a3f83caf69718aa04e58e34b44c0 Mon Sep 17 00:00:00 2001
From: TCR-Nick <141139646+TCR-Nick@users.noreply.github.com>
Date: Sun, 7 Jul 2024 09:34:29 +0100
Subject: [PATCH] updated inkpot plugin
---
InkpotDemo/Plugins/Inkpot/Inkpot.uplugin | 2 +-
InkpotDemo/Plugins/Inkpot/README.md | 11 ++++++++++-
2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/InkpotDemo/Plugins/Inkpot/Inkpot.uplugin b/InkpotDemo/Plugins/Inkpot/Inkpot.uplugin
index bc45319..cb2815f 100644
--- a/InkpotDemo/Plugins/Inkpot/Inkpot.uplugin
+++ b/InkpotDemo/Plugins/Inkpot/Inkpot.uplugin
@@ -1,7 +1,7 @@
{
"FileVersion": 1,
"Version": 1,
- "VersionName": "1.02.21",
+ "VersionName": "1.03.21",
"FriendlyName": "Inkpot",
"Description": "A container for Ink in Unreal.",
"Category": "Scripting",
diff --git a/InkpotDemo/Plugins/Inkpot/README.md b/InkpotDemo/Plugins/Inkpot/README.md
index 2753820..158b487 100644
--- a/InkpotDemo/Plugins/Inkpot/README.md
+++ b/InkpotDemo/Plugins/Inkpot/README.md
@@ -1,13 +1,22 @@
# Inkpot
**Inkpot** - An container for **Ink** within the Unreal Engine developed by [The Chinese Room](https://www.thechineseroom.co.uk/).
This is a plugin for Unreal Engine 5.3 or later.
-This is version **1.02.21** of the plugin.
+This is version **1.03.21** of the plugin.
Inkpot is a wrapper for the wonderful narrative scripting language **Ink** developed by [Inkle Studios](https://www.inklestudios.com/ink/).
For general support and chat with other users, check out Inkle's discord
https://discord.gg/kshu8aYY
+### Changes in 1.03.21
+Added new abstract factory creation for stories, youclass UInkpotStory can now be subclassed on a per project basis.
+Switched settings back to regular UDeveloperSettings as backed by CVAR version did not seem to work.
+Fixed for 5.4 compilation error, template instantiation context error in InkPlusPlusTest.cpp(738).
+Fixed compiler warnings in 5.4.
+Fixed assertion when attempting to access no existent variable in story.
+Fixed typo in headers that would fail on certain compilers ( #include "Coreminimal.h" should have been #include "CoreMinimal.h" )
+FIxed Deprecation warning for GetAssetRegistryTags.
+Updated serialize function to match parent in UInkpotStoryAsset.
### Changes in 1.02.21
Fixed assertion when accessing variables that do not exist in the ink script.