From 2b078ad66760282a611dab3edaef5cc2acb3e474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Tue, 25 Apr 2023 21:18:29 +0200 Subject: [PATCH 01/11] Upgrading to OC 1.6 --- .../Lombiq.ContentEditors.Tests.UI.csproj | 2 +- .../Lombiq.ContentEditors.csproj | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj index 129594f3..64bb9bc2 100644 --- a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj +++ b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj @@ -21,7 +21,7 @@ - + diff --git a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj index 4049bcb9..a3b413fa 100644 --- a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj +++ b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj @@ -30,13 +30,13 @@ - - - - - - - + + + + + + + @@ -50,8 +50,8 @@ - - + + From 053dcf4404b9a7cdbaf10010ecd755d58efff0f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Tue, 25 Apr 2023 21:20:06 +0200 Subject: [PATCH 02/11] OC 1.6 upgrade --- .../Lombiq.ContentEditors.Samples.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj index c306a368..e6f822be 100644 --- a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj +++ b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj @@ -35,8 +35,8 @@ - - + + @@ -48,7 +48,7 @@ - + From 8ebd38ce5705f9e22481330bae171a6147a262e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Fri, 28 Apr 2023 13:33:34 +0200 Subject: [PATCH 03/11] Using AddIndexProvider. --- Lombiq.ContentEditors/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lombiq.ContentEditors/Startup.cs b/Lombiq.ContentEditors/Startup.cs index 01d9b56d..e910b679 100644 --- a/Lombiq.ContentEditors/Startup.cs +++ b/Lombiq.ContentEditors/Startup.cs @@ -7,10 +7,10 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; using OrchardCore.ContentManagement; +using OrchardCore.Data; using OrchardCore.Data.Migration; using OrchardCore.Modules; using OrchardCore.ResourceManagement; -using YesSql.Indexes; namespace Lombiq.ContentEditors; @@ -24,7 +24,7 @@ public override void ConfigureServices(IServiceCollection services) services.AddScoped(typeof(IContentItemAsyncEditorProviderServices<>), typeof(ContentItemAsyncEditorProviderServices<>)); services.AddContentPart(); services.AddScoped(); - services.AddSingleton(); + services.AddIndexProvider(); services.AddScoped, DefaultContentItemAsyncEditorProvider>(); } } From 614dbc4c9ed7a8b8e431f4e3944f199b3fa96560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Sat, 20 May 2023 12:58:42 +0200 Subject: [PATCH 04/11] Upgrading Lombiq.ChartJs.Tests.UI package. --- .../Lombiq.ContentEditors.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj index 64bb9bc2..77598db9 100644 --- a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj +++ b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From dd02969a46c40c30972d75b27500b528e98a71b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Mon, 22 May 2023 17:25:50 +0200 Subject: [PATCH 05/11] Updating to latest Lombiq alpha releases. --- .../Lombiq.ContentEditors.Samples.csproj | 2 +- Lombiq.ContentEditors/Lombiq.ContentEditors.csproj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj index b7732336..fb21fa73 100644 --- a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj +++ b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj @@ -48,7 +48,7 @@ - + diff --git a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj index c445402e..fb35e3bb 100644 --- a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj +++ b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj @@ -50,8 +50,8 @@ - - + + From 0787991fdca6df413c5468ad2de3a5d012e3129b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Mon, 22 May 2023 18:02:12 +0200 Subject: [PATCH 06/11] Removing mistakenly included "v" from versions. --- .../Lombiq.ContentEditors.Samples.csproj | 2 +- Lombiq.ContentEditors/Lombiq.ContentEditors.csproj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj index fb21fa73..c5f4288e 100644 --- a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj +++ b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj @@ -48,7 +48,7 @@ - + diff --git a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj index fb35e3bb..be3812d8 100644 --- a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj +++ b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj @@ -50,8 +50,8 @@ - - + + From e67923fd52e24c4a0d88c67ba2e5dce0abb4bc37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20M=C3=A1rkus?= Date: Mon, 22 May 2023 19:05:59 +0200 Subject: [PATCH 07/11] Updating to latest Lombiq.Tests.UI alpha release. --- .../Lombiq.ContentEditors.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj index 77598db9..22b97843 100644 --- a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj +++ b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From 2ea3e3dac75777c8bef1d82c75b9606b49238c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zsef=20Horv=C3=A1th?= Date: Fri, 9 Jun 2023 18:28:38 +0200 Subject: [PATCH 08/11] Upgrading Lombiq.HelpfulLibraries.* package reference version Upgrading Lombiq.Tests.UI.* package reference version --- .../Lombiq.ContentEditors.Tests.UI.csproj | 2 +- Lombiq.ContentEditors/Lombiq.ContentEditors.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj index 22b97843..e7b3b343 100644 --- a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj +++ b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj @@ -21,7 +21,7 @@ - + diff --git a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj index be3812d8..8719d14e 100644 --- a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj +++ b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj @@ -50,7 +50,7 @@ - + From f20cd1bcc679ad0a0adefedc01d6b03edcbfe36b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 11 Jun 2023 20:17:45 +0200 Subject: [PATCH 09/11] Updating Lombiq.NodeJs.Extensions NuGet to latest alpha --- .../Lombiq.ContentEditors.Samples.csproj | 2 +- Lombiq.ContentEditors/Lombiq.ContentEditors.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj index c5f4288e..7e7014d5 100644 --- a/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj +++ b/Lombiq.ContentEditors.Samples/Lombiq.ContentEditors.Samples.csproj @@ -48,7 +48,7 @@ - + diff --git a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj index 8719d14e..98051ae8 100644 --- a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj +++ b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj @@ -51,7 +51,7 @@ - + From fb24036e3eab90d67a2af9145368941d4415cdf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Fri, 16 Jun 2023 13:46:44 +0200 Subject: [PATCH 10/11] Updating Lombiq.HelpfulLibraries NuGet reference to latest alpha --- Lombiq.ContentEditors/Lombiq.ContentEditors.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj index 98051ae8..e19466eb 100644 --- a/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj +++ b/Lombiq.ContentEditors/Lombiq.ContentEditors.csproj @@ -50,7 +50,7 @@ - + From fbc760a518e126cb793268e115d5980005564e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Sun, 18 Jun 2023 22:35:05 +0200 Subject: [PATCH 11/11] Updating Lombiq NuGet references --- .../Lombiq.ContentEditors.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj index e7b3b343..f5028fbb 100644 --- a/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj +++ b/Lombiq.ContentEditors.Tests.UI/Lombiq.ContentEditors.Tests.UI.csproj @@ -21,7 +21,7 @@ - +