From d9bfddbac9197150f0aa39b400bdc9f8c9c9769e Mon Sep 17 00:00:00 2001 From: Christophe Peugnet Date: Thu, 28 Mar 2024 18:32:38 +0100 Subject: [PATCH] v1.6.0 issue #12 --- BlazorCaptcha/BlazorCaptcha.csproj | 20 ++++++++++--------- README.md | 13 +++++++----- .../Blazor-Wasm-Captcha-Test.csproj | 6 ++++++ .../Pages/Index.razor | 16 +++++++-------- 4 files changed, 33 insertions(+), 22 deletions(-) diff --git a/BlazorCaptcha/BlazorCaptcha.csproj b/BlazorCaptcha/BlazorCaptcha.csproj index 316cc88..74d6e0c 100644 --- a/BlazorCaptcha/BlazorCaptcha.csproj +++ b/BlazorCaptcha/BlazorCaptcha.csproj @@ -12,9 +12,9 @@ Update nuget packages icon.png true - 1.5.0 - 1.5.0.0 - 1.5.0.0 + 1.6.0 + 1.6.0.0 + 1.6.0.0 LICENSE.txt GPL-3.0 embedded @@ -46,17 +46,19 @@ - - - + + + + - - - + + + + diff --git a/README.md b/README.md index bfe3bc6..ddbf03c 100644 --- a/README.md +++ b/README.md @@ -54,16 +54,19 @@ For client-side and server-side Blazor - add script section to _Host.cshtml (hea ## Release Notes -
Version 1.5.0 +
Version 1.6.0 ->- -Add DotNet 8.0 framework target +>- issue #12 +
+ +
Version 1.5.0 + +>- Add DotNet 8.0 framework target
Version 1.4.2 ->- -Update nuget packages +>- Update nuget packages
Version 1.4.1 diff --git a/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Blazor-Wasm-Captcha-Test.csproj b/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Blazor-Wasm-Captcha-Test.csproj index ca72a05..f3ef80d 100644 --- a/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Blazor-Wasm-Captcha-Test.csproj +++ b/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Blazor-Wasm-Captcha-Test.csproj @@ -9,10 +9,16 @@ + + + + + + diff --git a/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Pages/Index.razor b/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Pages/Index.razor index a4ccfb5..b708dae 100644 --- a/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Pages/Index.razor +++ b/Samples/BlazorWebAssembly/Blazor-Wasm-Captcha-Test/Pages/Index.razor @@ -5,17 +5,17 @@

Hello, world!

- - +@* *@ +

@Captcha

@code{ private string Captcha { get; set; } = ""; - private int CaptchaLetters = 5; + // private int CaptchaLetters = 5; - protected override Task OnInitializedAsync() - { - Captcha = BlazorCaptcha.Tools.GetCaptchaWord(CaptchaLetters); - return base.OnInitializedAsync(); - } + // protected override Task OnInitializedAsync() + // { + // Captcha = BlazorCaptcha.Tools.GetCaptchaWord(CaptchaLetters); + // return base.OnInitializedAsync(); + // } } \ No newline at end of file