-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
79 additions
and
97 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Binaries | ||
Intermediate |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"FileVersion": 3, | ||
"Version": 1, | ||
"VersionName": "1.0.0", | ||
"FriendlyName": "Fetch", | ||
"Description": "The Fetch API inspired HTTP client for Unreal Engine. Supports both Blueprints & C++.", | ||
"Category": "Network", | ||
"CreatedBy": "Arunoda Susiripala", | ||
"CreatedByURL": "https://gamedev4k.com", | ||
"DocsURL": "https://github.com/GameDev4K/unreal-fetch", | ||
"MarketplaceURL": "", | ||
"SupportURL": "https://github.com/GameDev4K/unreal-fetch", | ||
"CanContainContent": true, | ||
"IsBetaVersion": false, | ||
"IsExperimentalVersion": false, | ||
"Installed": false, | ||
"Modules": [ | ||
{ | ||
"Name": "Fetch", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
} | ||
], | ||
"EngineVersion": "4.26.0", | ||
"MarketplaceURL": "" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...etch/Source/UnrealFetch/Private/Fetch.cpp → ...s/Fetch/Source/Fetch/Private/FetchAPI.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...urce/UnrealFetch/Private/FetchRequest.cpp → ...tch/Source/Fetch/Private/FetchRequest.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rce/UnrealFetch/Private/FetchResponse.cpp → ...ch/Source/Fetch/Private/FetchResponse.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
ExampleApps/ExampleApp_4_26/Plugins/Fetch/Source/Fetch/Private/IFetch.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Copyright (c) 2020 Arunoda Susiripala. All Rights Reserved. | ||
|
||
|
||
#include "IFetch.h" | ||
|
2 changes: 1 addition & 1 deletion
2
...Source/UnrealFetch/Private/SimpleJson.cpp → ...Fetch/Source/Fetch/Private/SimpleJson.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../UnrealFetch/Private/SimpleJsonObject.cpp → ...Source/Fetch/Private/SimpleJsonObject.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/UnrealFetch/Private/SimpleJsonValue.cpp → .../Source/Fetch/Private/SimpleJsonValue.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
ExampleApps/ExampleApp_4_26/Plugins/Fetch/Source/Fetch/Private/Types.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Copyright (c) 2020 Arunoda Susiripala. All Rights Reserved. | ||
|
||
|
||
#include "Types.h" | ||
|
4 changes: 2 additions & 2 deletions
4
...h/Source/UnrealFetch/Public/UnrealFetch.h → ...Plugins/Fetch/Source/Fetch/Public/Fetch.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...alFetch/Source/UnrealFetch/Public/Fetch.h → ...gins/Fetch/Source/Fetch/Public/FetchAPI.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-12.4 KB
ExampleApps/ExampleApp_4_26/Plugins/UnrealFetch/Resources/Icon128.png
Binary file not shown.
5 changes: 0 additions & 5 deletions
5
ExampleApps/ExampleApp_4_26/Plugins/UnrealFetch/Source/UnrealFetch/Private/IFetch.cpp
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
ExampleApps/ExampleApp_4_26/Plugins/UnrealFetch/Source/UnrealFetch/Private/Types.cpp
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...eApps/ExampleApp_4_26/Plugins/UnrealFetch/Source/UnrealFetch/Private/UnrealFetchValue.cpp
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
ExampleApps/ExampleApp_4_26/Plugins/UnrealFetch/Source/UnrealFetch/Public/UnrealFetchValue.h
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
ExampleApps/ExampleApp_4_26/Plugins/UnrealFetch/UnrealFetch.uplugin
This file was deleted.
Oops, something went wrong.
Binary file not shown.