Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace com.IvanMurzak.Unity.ImageLoader.Installer
public static partial class Installer
{
public const string PackageId = "extensions.unity.imageloader";
public const string Version = "7.0.2";
public const string Version = "7.0.3";

static Installer()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private static void RemoveLoading(string url)
else
{
if (ImageLoader.settings.debugLevel.IsActive(DebugLevel.Warning))
Debug.LogWarning($"[ImageLoader] Future[id={future.Id}] Wasn't able to remove loading registration, not found in loading tasks\n{url}");

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets still print the future id if it is known, if not lets replace it with "null"

Future[id={future?.Id}]

Debug.LogWarning($"[ImageLoader] Wasn't able to remove loading registration, not found in loading tasks\n{url}");
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Unity-Package/Assets/root/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/IvanMurzak"
},
"license": "MIT",
"version": "7.0.2",
"version": "7.0.3",
"unity": "2019.4",
"description": "Asynchronous image loading from remote or local destination. It has two layers of configurable Memory and Disk cache systems.",
"keywords": [
Expand Down
Loading