2 Commits

Author SHA1 Message Date
mrhid6 f8a322d5c1 Bump version to 1.0.3.
Mod Build / Setup (push) Successful in 3s
Mod Build / PullMods (RefinedRDApi) (push) Successful in 2s
Mod Build / UpdateUPlugins (RefinedRDApi) (push) Successful in 1s
Mod Build / CompileEditor (push) Successful in 4m33s
Mod Build / BuildMods (RefinedRDApi) (push) Successful in 10m51s
Mod Build / SMRDeploy (push) Successful in 33s
2024-11-30 18:49:19 +00:00
mrhid6 75daf25f1c feat: Changed forms to array 2024-11-30 12:59:17 +00:00
4 changed files with 9 additions and 6 deletions
+3
View File
@@ -1,3 +1,6 @@
## 1.0.3 (November 30, 2024)
- feat: Changed forms to array
## 1.0.2 (November 29, 2024) ## 1.0.2 (November 29, 2024)
- feat: Item filters - feat: Item filters
- feat: Additional DS Options - feat: Additional DS Options
+2 -2
View File
@@ -1,8 +1,8 @@
{ {
"FileVersion": 3, "FileVersion": 3,
"Version": 1, "Version": 1,
"VersionName": "1.0.2", "VersionName": "1.0.3",
"SemVersion": "1.0.2", "SemVersion": "1.0.3",
"FriendlyName": "Refined R&D Api", "FriendlyName": "Refined R&D Api",
"Description": "This Lib can be used to create Mod Compatability with Refined R&D Mods", "Description": "This Lib can be used to create Mod Compatability with Refined R&D Mods",
"Category": "Modding", "Category": "Modding",
@@ -42,11 +42,11 @@ public:
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly) UPROPERTY(EditDefaultsOnly, BlueprintReadOnly)
ERRDADSInventorySlotAccessInteraction mInteraction = ERRDADSInventorySlotAccessInteraction::Ignore; ERRDADSInventorySlotAccessInteraction mInteraction = ERRDADSInventorySlotAccessInteraction::Ignore;
/* Select the item resource form that will be displayed in the digital storage UI /* Select the item resource forms that will be displayed in the digital storage UI
This will only display items of this form when players search for an item. This will only display items of these forms when players search for an item.
*/ */
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly) UPROPERTY(EditDefaultsOnly, BlueprintReadOnly)
EResourceForm mSlotItemForm = EResourceForm::RF_SOLID; TArray<EResourceForm> mSlotItemForms;
UPROPERTY(BlueprintReadOnly, meta=(NoAutoJson = true)) UPROPERTY(BlueprintReadOnly, meta=(NoAutoJson = true))
bool mOverrideItemFilter = false; bool mOverrideItemFilter = false;
+1 -1
View File
@@ -1 +1 @@
1.0.2 1.0.3