From 25dc6b9b08813478d7b0be1925bf9b0d293c94da Mon Sep 17 00:00:00 2001 From: salwan albahadly Date: Wed, 9 Jun 2021 12:45:31 +1200 Subject: [PATCH 1/4] when set Runtime as WebAssembly, IDM app recognize oqtane.zip and download this file and this make an issue and oqtane not work correctly and for this I set diffrent extention that IDM cant recognize it --- Oqtane.Server/Controllers/InstallationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Server/Controllers/InstallationController.cs b/Oqtane.Server/Controllers/InstallationController.cs index 143150df..efcff0c2 100644 --- a/Oqtane.Server/Controllers/InstallationController.cs +++ b/Oqtane.Server/Controllers/InstallationController.cs @@ -82,7 +82,7 @@ namespace Oqtane.Controllers { if (_config.GetSection("Runtime").Value == "WebAssembly") { - return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.zip"); + return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.oqbz"); } else { From f5f374d2ae609c126f06a4aeda612cc21157cfbf Mon Sep 17 00:00:00 2001 From: salwan albahadly Date: Fri, 11 Jun 2021 01:06:20 +1200 Subject: [PATCH 2/4] #1460 fix issue: WebAssembly with IDM app --- Oqtane.Server/Controllers/InstallationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Server/Controllers/InstallationController.cs b/Oqtane.Server/Controllers/InstallationController.cs index efcff0c2..a4647def 100644 --- a/Oqtane.Server/Controllers/InstallationController.cs +++ b/Oqtane.Server/Controllers/InstallationController.cs @@ -82,7 +82,7 @@ namespace Oqtane.Controllers { if (_config.GetSection("Runtime").Value == "WebAssembly") { - return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.oqbz"); + return File(GetAssemblies(), System.Net.Mime.MediaTypeNames.Application.Octet, "oqtane.dll"); } else { From 52d9c14d7818dfe1260d41a01fcb032fbb474f2c Mon Sep 17 00:00:00 2001 From: Shaun Walker Date: Thu, 10 Jun 2021 13:06:05 -0400 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec5b03b2..c36daac5 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ V.3.0.0 ( Q4 2021 ) - [ ] Migration to .NET 6 V.2.2.0 ( Q3 2021 ) -- [ ] Authentication flexibility ( ie. Azure B2C, Social logins, etc... ) +- [ ] Authentication extensibility ( ie. Azure B2C, Social logins, etc... ) - [ ] Configurable password complexity for local authentication V.2.1.0 ( Jun 4, 2021 ) From f2b3d6bc5f695d19df68c159ed1e3bfe5ce8cd8a Mon Sep 17 00:00:00 2001 From: Leigh Date: Tue, 15 Jun 2021 07:09:22 +0200 Subject: [PATCH 4/4] SharedResources to reside at the project root. Namespace was changed from Oqtane to Oqtane.Client --- Oqtane.Client/Oqtane.Client.csproj | 4 ++++ Oqtane.Client/Resources/SharedResources.cs | 7 ------- Oqtane.Client/SharedResources.cs | 13 +++++++++++++ 3 files changed, 17 insertions(+), 7 deletions(-) delete mode 100644 Oqtane.Client/Resources/SharedResources.cs create mode 100644 Oqtane.Client/SharedResources.cs diff --git a/Oqtane.Client/Oqtane.Client.csproj b/Oqtane.Client/Oqtane.Client.csproj index 24e2efb7..f589591a 100644 --- a/Oqtane.Client/Oqtane.Client.csproj +++ b/Oqtane.Client/Oqtane.Client.csproj @@ -33,4 +33,8 @@ + + + + diff --git a/Oqtane.Client/Resources/SharedResources.cs b/Oqtane.Client/Resources/SharedResources.cs deleted file mode 100644 index 2c1d6f25..00000000 --- a/Oqtane.Client/Resources/SharedResources.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Oqtane -{ - public class SharedResources - { - - } -} diff --git a/Oqtane.Client/SharedResources.cs b/Oqtane.Client/SharedResources.cs new file mode 100644 index 00000000..83390e8a --- /dev/null +++ b/Oqtane.Client/SharedResources.cs @@ -0,0 +1,13 @@ +namespace Oqtane.Client +{ + /// + /// Dummy class used to collect shared resource strings for this application + /// + /// + /// This class is mostly used with IStringLocalizer and IHtmlLocalizer interfaces. + /// The class must reside at the project root. + /// + public class SharedResources + { + } +}