From 5be5ff2e104d539531f49ad008c71762dc3f1534 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Apr 2025 13:48:40 +0000 Subject: [PATCH 1/3] Bump Microsoft.Web.WebView2 from 1.0.2903.40 to 1.0.3179.45 Bumps Microsoft.Web.WebView2 from 1.0.2903.40 to 1.0.3179.45. --- updated-dependencies: - dependency-name: Microsoft.Web.WebView2 dependency-version: 1.0.3179.45 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- RHLauncher.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RHLauncher.csproj b/RHLauncher.csproj index 26d1d52..e332971 100644 --- a/RHLauncher.csproj +++ b/RHLauncher.csproj @@ -36,7 +36,7 @@ - + From 1692923e1839e49c076575ffc497b95e78230066 Mon Sep 17 00:00:00 2001 From: Junior Date: Tue, 29 Apr 2025 17:14:19 -0300 Subject: [PATCH 2/3] Changes for RustyHearts-API 1.3.0 --- RHLauncher.Forms/ChangePwdForm.cs | 145 ++++++++++-------- RHLauncher.Forms/ConfigForm.Designer.cs | 40 ++++- RHLauncher.Forms/ConfigForm.cs | 155 +++++++++++++++++--- RHLauncher.Forms/ConfigForm.resx | 12 +- RHLauncher.Forms/LauncherForm.cs | 27 ++-- RHLauncher.Forms/LoginForm.cs | 113 +++++++------- RHLauncher.Forms/RegisterForm.cs | 104 ++++++++----- RHLauncher.Helper/Configuration.cs | 29 ++-- RHLauncher.Helper/HttpResponse.cs | 36 +++++ RHLauncher.Helper/IniFile.cs | 4 +- RHLauncher.csproj | 4 +- RHLauncher.i8n/LocalizedStrings.Designer.cs | 31 +++- RHLauncher.i8n/LocalizedStrings.ko.resx | 13 +- RHLauncher.i8n/LocalizedStrings.resx | 13 +- 14 files changed, 500 insertions(+), 226 deletions(-) create mode 100644 RHLauncher.Helper/HttpResponse.cs diff --git a/RHLauncher.Forms/ChangePwdForm.cs b/RHLauncher.Forms/ChangePwdForm.cs index 901afe3..173ec41 100644 --- a/RHLauncher.Forms/ChangePwdForm.cs +++ b/RHLauncher.Forms/ChangePwdForm.cs @@ -1,4 +1,5 @@ -using RHLauncher.RHLauncher.Helper; +using Newtonsoft.Json; +using RHLauncher.RHLauncher.Helper; using RHLauncher.RHLauncher.i8n; using System.Text.RegularExpressions; @@ -8,10 +9,10 @@ namespace RHLauncher { private RegistryHandler registryHandler = new(); - public string SendPasswordCodeUrl = Configuration.Default.SendPasswordCodeUrl; - public string VerifyCodeUrl = Configuration.Default.VerifyCodeUrl; - public string ChangePasswordUrl = Configuration.Default.ChangePasswordUrl; - public string Lang = Configuration.Default.Lang; + private readonly string SendPasswordCodeUrl = Configuration.Default.SendPasswordCodeUrl; + private readonly string VerifyCodeUrl = Configuration.Default.VerifyCodeUrl; + private readonly string ChangePasswordUrl = Configuration.Default.ChangePasswordUrl; + private readonly string Lang = Configuration.Default.Lang; private List