diff --git a/LICENSE b/LICENSE
index 4966d1f..ee6ef85 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2021 Bjarke Berg
+Copyright (c) 2021 Nik Rimington
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index a296d35..61e2a35 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,24 @@ To [install from NuGet](https://www.nuget.org/packages/HotChilli.Umbraco.PageNot
PM> Install-Package HotChilli.Umbraco.PageNotFound
+## How to use
+
+*Improved documentation will come in time*
+
+Once the package has been installed there are two approaches to configuration. Out of the box, it will be loaded via an Umbraco Composer, but if you wish to have more control over when it loads, there is an extension method for `IUmbracoBuilder` called `UsePageNotFoundManager`.
+
+Once installed and running, Page Not Found Manager extends the "Do Something Else" context menu with a new entry for picking a 404 page off of a content node.
+
+This allows for multiple different 404 pages to be configured for different parts of the website.
+
+## Future Plans
+
+There is currently a plan to investigate and see if this same 404 page can be served for missing media items. In IIS, this would fall back to the default 404 page from IIS but I'm yet to understand this pipeline and if this is possible - I'm open to PR's and suggestions on improvements as well.
+
+## Special Thanks
+
+This package is a port of [PageNotFoundManager](https://github.com/TimGeyssens/UmbracoPageNotFoundManager) by [Tim Geyssens](https://twitter.com/timgeyssens) and was created with his permission. The code based used as a point of reference was taken prior to the Licesencing Model change.
+
## Credits
The logo uses [404](https://thenounproject.com/term/404/3283006 ) from the [Noun Project](https://thenounproject.com) by [Ilham Fitrotul Hayat](https://thenounproject.com/fhilham), licensed under [CC BY 3.0 US](https://creativecommons.org/licenses/by/3.0/us/).
diff --git a/src/HC.PageNotFoundManager.Core/Backoffice/MenuRenderingNotificationHandler.cs b/src/HC.PageNotFoundManager.Core/Backoffice/MenuRenderingNotificationHandler.cs
index 735eabb..5ed0b6c 100644
--- a/src/HC.PageNotFoundManager.Core/Backoffice/MenuRenderingNotificationHandler.cs
+++ b/src/HC.PageNotFoundManager.Core/Backoffice/MenuRenderingNotificationHandler.cs
@@ -37,7 +37,7 @@ public void Handle(MenuRenderingNotification notification)
var menuItem = new MenuItem(Constants.MenuAlias, Constants.MenuLabel)
{
- Icon = Umbraco.Cms.Core.Constants.Icons.Content,
+ Icon = "alert red",
SeparatorBefore = true
};
diff --git a/src/HC.PageNotFoundManager.Core/HC.PageNotFoundManager.Core.csproj b/src/HC.PageNotFoundManager.Core/HC.PageNotFoundManager.Core.csproj
index cf497ed..345ef9c 100644
--- a/src/HC.PageNotFoundManager.Core/HC.PageNotFoundManager.Core.csproj
+++ b/src/HC.PageNotFoundManager.Core/HC.PageNotFoundManager.Core.csproj
@@ -3,6 +3,7 @@
1.0.01.0.0
+ beta-0041.0.0net5.0Nik Rimington
@@ -22,11 +23,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/src/HC.PageNotFoundManager/App_Plugins/HC.PageNotFound/Backoffice/Dialogs/dialog.html b/src/HC.PageNotFoundManager/App_Plugins/HC.PageNotFound/Backoffice/Dialogs/dialog.html
index 8dab037..fef4f63 100644
--- a/src/HC.PageNotFoundManager/App_Plugins/HC.PageNotFound/Backoffice/Dialogs/dialog.html
+++ b/src/HC.PageNotFoundManager/App_Plugins/HC.PageNotFound/Backoffice/Dialogs/dialog.html
@@ -20,7 +20,7 @@
{{target.name}} is set as the 404 page for
{{currentNode.name}} and it's child pages
-
+